From 7bd8543b71e462302cc849b081093f0390929ecf Mon Sep 17 00:00:00 2001 From: Emmanuel Briot Date: Fri, 9 Dec 2022 14:38:08 +0100 Subject: [PATCH] Fix error for access parameters and untyped constants --- grammar.js | 57 +- queries/highlights.scm | 87 +- queries/locals.scm | 24 +- src/grammar.json | 235 +- src/node-types.json | 271 +- src/parser.c | 58025 +++++++++++++++++----------------- test/corpus/arrays.txt | 8 +- test/corpus/protected.txt | 14 +- test/corpus/renames.txt | 7 +- test/corpus/statements.txt | 23 +- test/corpus/subprograms.txt | 101 +- test/corpus/tasking.txt | 21 +- 12 files changed, 29498 insertions(+), 29375 deletions(-) diff --git a/grammar.js b/grammar.js index a19c151..00a7dce 100644 --- a/grammar.js +++ b/grammar.js @@ -570,7 +570,7 @@ module.exports = grammar({ seq( optional(reservedWord('protected')), reservedWord('procedure'), - optional($._non_empty_parameter_profile), + optional($.formal_part), ), seq( optional(reservedWord('protected')), @@ -852,28 +852,19 @@ module.exports = grammar({ $.enumeration_type_definition, $._integer_type_definition, $._real_type_definition, - $._array_type_definition, + $.array_type_definition, $.record_type_definition, $._access_type_definition, $.derived_type_definition, $.interface_type_definition, ), - _array_type_definition: $ => choice( - $.unconstrained_array_definition, - $.constrained_array_definition, - ), - unconstrained_array_definition: $ => seq( + array_type_definition: $ => seq( // merges constrained and unconstrained reservedWord('array'), '(', - $._index_subtype_definition_list, - ')', - reservedWord('of'), - $.component_definition, - ), - constrained_array_definition: $ => seq( - reservedWord('array'), - '(', - $._discrete_subtype_definition_list, + choice( + $._discrete_subtype_definition_list, + $._index_subtype_definition_list, + ), ')', reservedWord('of'), $.component_definition, @@ -1302,7 +1293,7 @@ module.exports = grammar({ $._discrete_subtype_definition, ')', )), - optional($._non_empty_parameter_profile), + optional($.formal_part), optional($.aspect_specification), ';', ), @@ -1366,7 +1357,7 @@ module.exports = grammar({ )), formal_part: $ => seq( '(', - $.parameter_specification_list, + $._parameter_specification_list, ')', ), function_specification: $ => seq( @@ -1546,7 +1537,7 @@ module.exports = grammar({ reservedWord('digits'), '<>', ), - formal_array_type_definition: $ => $._array_type_definition, + formal_array_type_definition: $ => $.array_type_definition, formal_access_type_definition: $ => $._access_type_definition, formal_interface_type_definition: $ => $.interface_type_definition, formal_subprogram_declaration: $ => choice( @@ -1668,7 +1659,7 @@ module.exports = grammar({ $.expression, ';', ), - non_empty_mode: $ => choice( + non_empty_mode: $ => choice( // ARM 6.1 reservedWord('in'), seq( reservedWord('in'), @@ -1690,7 +1681,7 @@ module.exports = grammar({ ), number_declaration: $ => seq( $._defining_identifier_list, - ';', + ':', reservedWord('constant'), $._assign_value, ';', @@ -1704,7 +1695,7 @@ module.exports = grammar({ choice( $._subtype_indication, $.access_definition, - $._array_type_definition, + $.array_type_definition, ), optional($._assign_value), optional($.aspect_specification), @@ -1777,14 +1768,12 @@ module.exports = grammar({ repeat1($._task_item), )), reservedWord('end'), - optional($.identifier), + field('endname', optional($.identifier)), ), overriding_indicator: $ => seq( optional(reservedWord('not')), reservedWord('overriding'), ), - _non_empty_parameter_profile: $ => // ??? inline - $.formal_part, _parameter_and_result_profile: $ => seq( optional($.formal_part), $.result_profile, @@ -1792,13 +1781,19 @@ module.exports = grammar({ parameter_specification: $ => seq( // ARM 6.1 $._defining_identifier_list, ':', - optional(reservedWord('aliased')), - optional($.non_empty_mode), - optional($.null_exclusion), - field('subtype_mark', $._name), + choice( + seq( + optional(reservedWord('aliased')), + optional($.non_empty_mode), + optional($.null_exclusion), + field('subtype_mark', $._name), + ), + $.access_definition, + ), optional($._assign_value), + optional($.aspect_specification), ), - parameter_specification_list: $ => list_of( + _parameter_specification_list: $ => list_of( ';', $.parameter_specification, ), @@ -1842,7 +1837,7 @@ module.exports = grammar({ procedure_specification: $ => seq( reservedWord('procedure'), field('name', $._name), - optional($._non_empty_parameter_profile), + optional($.formal_part), ), record_representation_clause: $ => prec.left(seq( // ARM 13.5.1 reservedWord('for'), diff --git a/queries/highlights.scm b/queries/highlights.scm index 073e28a..10479dd 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -102,56 +102,61 @@ (numeric_literal) @number ;; Highlight the name of subprograms -(procedure_specification - name: (identifier) @function -) -(function_specification - name: (identifier) @function -) -(package_specification - name: (identifier) @function ;; Should use @module -) -(package_body - name: (identifier) @function ;; Should use @module -) -(generic_instantiation - name: (identifier) @function -) +(procedure_specification name: (_) @function) +(function_specification name: (_) @function) +(package_specification name: (_) @function) +(package_body name: (_) @function) +(generic_instantiation name: (_) @function) ;; Some keywords should take different categories depending on the context -;; ??? Doesn't quite work because treesitter choses the longest name for the -;; final highlight (use_clause "use" @include "type" @include) (with_clause "private" @include) (with_clause "limited" @include) +(use_clause (identifier) @namespace) +(with_clause (identifier) @namespace) +(loop_statement "end" @keyword.repeat) +(if_statement "end" @conditional) +(loop_parameter_specification "in" @keyword.repeat) +(loop_parameter_specification "in" @keyword.repeat) +(iterator_specification ["in" "of"] @keyword.repeat) +(range_attribute_designator "range" @keyword.repeat) +(raise_statement "with" @exception) -;; Change keyword categories inside type definitions. -;; WIP: waiting for simplified tree. - ; [ - ; "is" - ; "abstract" - ; "access" - ; "array" - ; "tagged" - ; "constant" - ; "range" - ; "mod" - ; "digits" - ; "delta" - ; "limited" - ; "synchronized" - ; ]* @keyword.type -(full_type_declaration "is" @type.definition) -(full_type_declaration (_ "access") @type.definition) +(subprogram_declaration "is" @keyword.function "abstract" @keyword.function) +(aspect_specification "with" @keyword.function) + +(full_type_declaration "is" @type.definition) +(subtype_declaration "is" @type.definition) +(record_definition "end" @type.definition) +(full_type_declaration (_ "access" @type.definition)) +(array_type_definition "array" @type.definition "of" @type.definition) +(access_to_object_definition "access" @type.definition) +(access_to_object_definition "access" @type.definition + [ + (general_access_modifier "constant" @type.definition) + (general_access_modifier "all" @type.definition) + ] +) +(range_constraint "range" @type.definition) +(signed_integer_type_definition "range" @type.definition) +(index_subtype_definition "range" @type.definition) + +;; Gray the body of expression functions +(expression_function_declaration + (function_specification) + "is" + (_) @function.expression +) +(subprogram_declaration (aspect_specification) @function.expression) ;; Highlight full subprogram specifications -(subprogram_body - [ - (procedure_specification) - (function_specification) - ] @function.spec -) +;(subprogram_body +; [ +; (procedure_specification) +; (function_specification) +; ] @function.spec +;) ;; Highlight errors in red. This is not very useful in practice, as text will ;; be highlighted as user types, and the error could be elsewhere in the code. diff --git a/queries/locals.scm b/queries/locals.scm index d1afa32..5779d4a 100644 --- a/queries/locals.scm +++ b/queries/locals.scm @@ -7,15 +7,25 @@ (function_specification) @scope (block_statement) @scope -(procedure_specification name: (_) @definition.var) -(function_specification name: (_) @definition.var) +(with_clause (identifier) @definition.import) +(procedure_specification name: (_) @definition.function) +(function_specification name: (_) @definition.function) (package_specification name: (_) @definition.var) (package_body name: (_) @definition.var) (generic_instantiation . name: (_) @definition.var) -(component_declaration (identifier) @definition.var) -(exception_declaration (identifier) @definition.var) -(formal_object_declaration (identifier) @definition.var) -(object_declaration (identifier) @definition.var) -(parameter_specification (identifier) @definition.var) +(component_declaration . (identifier) @definition.var) +(exception_declaration . (identifier) @definition.var) +(formal_object_declaration . (identifier) @definition.var) +(object_declaration . (identifier) @definition.var) +(parameter_specification . (identifier) @definition.var) +(full_type_declaration . (identifier) @definition.type) +(private_type_declaration . (identifier) @definition.type) +(private_extension_declaration . (identifier) @definition.type) +(incomplete_type_declaration . (identifier) @definition.type) +(protected_type_declaration . (identifier) @definition.type) +(formal_complete_type_declaration . (identifier) @definition.type) +(formal_incomplete_type_declaration . (identifier) @definition.type) +(task_type_declaration . (identifier) @definition.type) +(subtype_declaration . (identifier) @definition.type) (identifier) @reference diff --git a/src/grammar.json b/src/grammar.json index 8ebaadb..ad6e021 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2917,7 +2917,7 @@ "members": [ { "type": "SYMBOL", - "name": "_non_empty_parameter_profile" + "name": "formal_part" }, { "type": "BLANK" @@ -4668,7 +4668,7 @@ }, { "type": "SYMBOL", - "name": "_array_type_definition" + "name": "array_type_definition" }, { "type": "SYMBOL", @@ -4688,20 +4688,7 @@ } ] }, - "_array_type_definition": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "unconstrained_array_definition" - }, - { - "type": "SYMBOL", - "name": "constrained_array_definition" - } - ] - }, - "unconstrained_array_definition": { + "array_type_definition": { "type": "SEQ", "members": [ { @@ -4725,61 +4712,17 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "_index_subtype_definition_list" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 2, - "content": { - "type": "PATTERN", - "value": "[oO][fF]" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_discrete_subtype_definition_list" + }, + { + "type": "SYMBOL", + "name": "_index_subtype_definition_list" } - }, - "named": false, - "value": "of" - }, - { - "type": "SYMBOL", - "name": "component_definition" - } - ] - }, - "constrained_array_definition": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 2, - "content": { - "type": "PATTERN", - "value": "[aA][rR][rR][aA][yY]" - } - } - }, - "named": false, - "value": "array" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_discrete_subtype_definition_list" + ] }, { "type": "STRING", @@ -8204,7 +8147,7 @@ }, { "type": "SYMBOL", - "name": "parameter_specification_list" + "name": "_parameter_specification_list" }, { "type": "STRING", @@ -9440,7 +9383,7 @@ }, "formal_array_type_definition": { "type": "SYMBOL", - "name": "_array_type_definition" + "name": "array_type_definition" }, "formal_access_type_definition": { "type": "SYMBOL", @@ -10230,7 +10173,7 @@ }, { "type": "STRING", - "value": ";" + "value": ":" }, { "type": "ALIAS", @@ -10337,7 +10280,7 @@ }, { "type": "SYMBOL", - "name": "_array_type_definition" + "name": "array_type_definition" } ] }, @@ -10769,16 +10712,20 @@ "value": "end" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "endname", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } } ] }, @@ -10827,10 +10774,6 @@ } ] }, - "_non_empty_parameter_profile": { - "type": "SYMBOL", - "name": "formal_part" - }, "_parameter_and_result_profile": { "type": "SEQ", "members": [ @@ -10867,58 +10810,72 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 2, + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[aA][lL][iI][aA][sS][eE][dD]" + } + } + }, + "named": false, + "value": "aliased" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "non_empty_mode" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "null_exclusion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "subtype_mark", "content": { - "type": "PATTERN", - "value": "[aA][lL][iI][aA][sS][eE][dD]" + "type": "SYMBOL", + "name": "_name" } } - }, - "named": false, - "value": "aliased" + ] }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ { "type": "SYMBOL", - "name": "non_empty_mode" - }, - { - "type": "BLANK" + "name": "access_definition" } ] }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "null_exclusion" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "subtype_mark", - "content": { - "type": "SYMBOL", - "name": "_name" - } - }, { "type": "CHOICE", "members": [ @@ -10930,10 +10887,22 @@ "type": "BLANK" } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "aspect_specification" + }, + { + "type": "BLANK" + } + ] } ] }, - "parameter_specification_list": { + "_parameter_specification_list": { "type": "SEQ", "members": [ { @@ -11242,7 +11211,7 @@ "members": [ { "type": "SYMBOL", - "name": "_non_empty_parameter_profile" + "name": "formal_part" }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index b8cbf32..25db3c7 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -405,6 +405,100 @@ ] } }, + { + "type": "array_type_definition", + "named": true, + "fields": { + "subtype_mark": { + "multiple": true, + "required": false, + "types": [ + { + "type": ".", + "named": false + }, + { + "type": "attribute_designator", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "qualified_expression", + "named": true + }, + { + "type": "reduction_attribute_designator", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "target_name", + "named": true + }, + { + "type": "tick", + "named": true + }, + { + "type": "value_sequence", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "component_definition", + "named": true + }, + { + "type": "delta_constraint", + "named": true + }, + { + "type": "digits_constraint", + "named": true + }, + { + "type": "index_constraint", + "named": true + }, + { + "type": "index_subtype_definition", + "named": true + }, + { + "type": "null_exclusion", + "named": true + }, + { + "type": "range_constraint", + "named": true + }, + { + "type": "range_g", + "named": true + } + ] + } + }, { "type": "aspect_association", "named": true, @@ -1372,96 +1466,6 @@ ] } }, - { - "type": "constrained_array_definition", - "named": true, - "fields": { - "subtype_mark": { - "multiple": true, - "required": false, - "types": [ - { - "type": ".", - "named": false - }, - { - "type": "attribute_designator", - "named": true - }, - { - "type": "character_literal", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "qualified_expression", - "named": true - }, - { - "type": "reduction_attribute_designator", - "named": true - }, - { - "type": "string_literal", - "named": true - }, - { - "type": "target_name", - "named": true - }, - { - "type": "tick", - "named": true - }, - { - "type": "value_sequence", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "component_definition", - "named": true - }, - { - "type": "delta_constraint", - "named": true - }, - { - "type": "digits_constraint", - "named": true - }, - { - "type": "index_constraint", - "named": true - }, - { - "type": "null_exclusion", - "named": true - }, - { - "type": "range_constraint", - "named": true - }, - { - "type": "range_g", - "named": true - } - ] - } - }, { "type": "decimal_fixed_point_definition", "named": true, @@ -3480,11 +3484,7 @@ "required": true, "types": [ { - "type": "constrained_array_definition", - "named": true - }, - { - "type": "unconstrained_array_definition", + "type": "array_type_definition", "named": true } ] @@ -4035,11 +4035,11 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { - "type": "parameter_specification_list", + "type": "parameter_specification", "named": true } ] @@ -4091,11 +4091,11 @@ "named": true }, { - "type": "aspect_specification", + "type": "array_type_definition", "named": true }, { - "type": "constrained_array_definition", + "type": "aspect_specification", "named": true }, { @@ -4153,10 +4153,6 @@ { "type": "task_type_declaration", "named": true - }, - { - "type": "unconstrained_array_definition", - "named": true } ] } @@ -5996,11 +5992,11 @@ "named": true }, { - "type": "aspect_specification", + "type": "array_type_definition", "named": true }, { - "type": "constrained_array_definition", + "type": "aspect_specification", "named": true }, { @@ -6034,10 +6030,6 @@ { "type": "single_task_declaration", "named": true - }, - { - "type": "unconstrained_array_definition", - "named": true } ] } @@ -6698,7 +6690,7 @@ "fields": { "subtype_mark": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": ".", @@ -6751,6 +6743,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "access_definition", + "named": true + }, + { + "type": "aspect_specification", + "named": true + }, { "type": "expression", "named": true @@ -6770,21 +6770,6 @@ ] } }, - { - "type": "parameter_specification_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "parameter_specification", - "named": true - } - ] - } - }, { "type": "positional_array_aggregate", "named": true, @@ -9056,7 +9041,18 @@ { "type": "task_definition", "named": true, - "fields": {}, + "fields": { + "endname": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -9077,10 +9073,6 @@ "type": "enumeration_representation_clause", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "record_representation_clause", "named": true @@ -9344,25 +9336,6 @@ "named": true, "fields": {} }, - { - "type": "unconstrained_array_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "component_definition", - "named": true - }, - { - "type": "index_subtype_definition", - "named": true - } - ] - } - }, { "type": "unknown_discriminant_part", "named": true, diff --git a/src/parser.c b/src/parser.c index 7dd326a..536ebcf 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1918 +#define STATE_COUNT 1929 #define LARGE_STATE_COUNT 57 -#define SYMBOL_COUNT 438 +#define SYMBOL_COUNT 435 #define ALIAS_COUNT 0 #define TOKEN_COUNT 112 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 14 -#define PRODUCTION_ID_COUNT 111 +#define PRODUCTION_ID_COUNT 113 enum { sym_identifier = 1, @@ -94,7 +94,7 @@ enum { aux_sym_private_type_declaration_token1 = 75, aux_sym_private_type_declaration_token2 = 76, aux_sym_private_extension_declaration_token1 = 77, - aux_sym_unconstrained_array_definition_token1 = 78, + aux_sym_array_type_definition_token1 = 78, aux_sym_interface_type_definition_token1 = 79, aux_sym_interface_type_definition_token2 = 80, aux_sym_component_list_token1 = 81, @@ -227,233 +227,230 @@ enum { sym_discriminant_specification_list = 208, sym_discriminant_specification = 209, sym__type_definition = 210, - sym__array_type_definition = 211, - sym_unconstrained_array_definition = 212, - sym_constrained_array_definition = 213, - sym__discrete_subtype_definition_list = 214, - sym__discrete_range = 215, - sym__index_subtype_definition_list = 216, - sym_index_subtype_definition = 217, - sym_enumeration_type_definition = 218, - sym__enumeration_literal_list = 219, - sym__enumeration_literal_specification = 220, - sym__integer_type_definition = 221, - sym_modular_type_definition = 222, - sym__real_type_definition = 223, - sym_floating_point_definition = 224, - sym_real_range_specification = 225, - sym__fixed_point_definition = 226, - sym_decimal_fixed_point_definition = 227, - sym_ordinary_fixed_point_definition = 228, - sym_signed_integer_type_definition = 229, - sym_derived_type_definition = 230, - sym_interface_type_definition = 231, - sym__interface_list = 232, - sym_record_extension_part = 233, - sym_record_type_definition = 234, - sym_record_definition = 235, - sym_component_list = 236, - sym__component_item = 237, - sym_component_declaration = 238, - sym_component_definition = 239, - sym__array_aggregate = 240, - sym_positional_array_aggregate = 241, - sym_null_array_aggregate = 242, - sym_named_array_aggregate = 243, - sym__array_component_association_list = 244, - sym_array_component_association = 245, - sym_discrete_choice_list = 246, - sym_discrete_choice = 247, - sym_aspect_association = 248, - sym__aspect_clause = 249, - sym__aspect_definition = 250, - sym__aspect_mark = 251, - sym_aspect_mark_list = 252, - sym_aspect_specification = 253, - sym__assign_value = 254, - sym_at_clause = 255, - sym_attribute_definition_clause = 256, - sym_body_stub = 257, - sym_subprogram_body_stub = 258, - sym_package_body_stub = 259, - sym_task_body = 260, - sym_task_body_stub = 261, - sym__protected_operation_declaration = 262, - sym__protected_element_declaration = 263, - sym__protected_operation_item = 264, - sym_protected_definition = 265, - sym_protected_type_declaration = 266, - sym_single_protected_declaration = 267, - sym_protected_body = 268, - sym_protected_body_stub = 269, - sym_choice_parameter_specification = 270, - sym_component_clause = 271, - sym__declarative_item_pragma = 272, - sym_non_empty_declarative_part = 273, - sym_entry_declaration = 274, - sym_entry_body = 275, - sym_entry_barrier = 276, - sym_entry_index_specification = 277, - sym_enumeration_aggregate = 278, - sym_enumeration_representation_clause = 279, - sym_exception_choice_list = 280, - sym_exception_choice = 281, - sym_exception_declaration = 282, - sym_exception_handler = 283, - aux_sym__exception_handler_list = 284, - sym_formal_part = 285, - sym_function_specification = 286, - sym__generic_declaration = 287, - sym_generic_formal_part = 288, - sym__generic_formal_parameter_declaration = 289, - sym_generic_subprogram_declaration = 290, - sym_generic_package_declaration = 291, - sym_generic_instantiation = 292, - sym_formal_object_declaration = 293, - sym__formal_type_declaration = 294, - sym_formal_complete_type_declaration = 295, - sym_formal_incomplete_type_declaration = 296, - sym__formal_type_definition = 297, - sym_formal_private_type_definition = 298, - sym_formal_derived_type_definition = 299, - sym_formal_discrete_type_definition = 300, - sym_formal_signed_integer_type_definition = 301, - sym_formal_modular_type_definition = 302, - sym_formal_floating_point_definition = 303, - sym_formal_ordinary_fixed_point_definition = 304, - sym_formal_decimal_fixed_point_definition = 305, - sym_formal_array_type_definition = 306, - sym_formal_access_type_definition = 307, - sym_formal_interface_type_definition = 308, - sym_formal_subprogram_declaration = 309, - sym_formal_concrete_subprogram_declaration = 310, - sym_formal_abstract_subprogram_declaration = 311, - sym_subprogram_default = 312, - sym_formal_package_declaration = 313, - sym_global_aspect_definition = 314, - sym_global_aspect_element = 315, - sym_global_mode = 316, - sym_handled_sequence_of_statements = 317, - sym_loop_label = 318, - sym_label = 319, - sym_mod_clause = 320, - sym_non_empty_mode = 321, - sym_null_procedure_declaration = 322, - sym_null_statement = 323, - sym_number_declaration = 324, - sym_object_declaration = 325, - sym_single_task_declaration = 326, - sym_task_type_declaration = 327, - sym_non_empty_entry_body_formal_part = 328, - sym__task_item = 329, - sym_task_definition = 330, - sym_overriding_indicator = 331, - sym__non_empty_parameter_profile = 332, - sym__parameter_and_result_profile = 333, - sym_parameter_specification = 334, - sym_parameter_specification_list = 335, - sym_pragma_g = 336, - sym_pragma_argument_association = 337, - sym_if_expression = 338, - sym_elsif_expression_item = 339, - sym_procedure_specification = 340, - sym_record_representation_clause = 341, - sym__renaming_declaration = 342, - sym_object_renaming_declaration = 343, - sym_exception_renaming_declaration = 344, - sym_package_renaming_declaration = 345, - sym_subprogram_renaming_declaration = 346, - sym_generic_renaming_declaration = 347, - sym_result_profile = 348, - sym__sequence_of_statements = 349, - sym__simple_statement = 350, - sym_statement = 351, - sym__compound_statement = 352, - sym__select_statement = 353, - sym_entry_call_alternative = 354, - sym_asynchronous_select = 355, - sym_triggering_alternative = 356, - sym_conditional_entry_call = 357, - sym_delay_alternative = 358, - sym_timed_entry_call = 359, - sym_guard = 360, - sym__guard_select = 361, - sym__select_alternative = 362, - sym_selective_accept = 363, - sym_abort_statement = 364, - sym_requeue_statement = 365, - sym_accept_statement = 366, - sym_case_statement_alternative = 367, - sym_case_statement = 368, - sym_block_statement = 369, - sym_if_statement = 370, - sym_elsif_statement_item = 371, - sym_exit_statement = 372, - sym_goto_statement = 373, - sym__delay_statement = 374, - sym_delay_until_statement = 375, - sym_delay_relative_statement = 376, - sym_simple_return_statement = 377, - sym_extended_return_statement = 378, - sym_extended_return_object_declaration = 379, - sym__return_subtype_indication = 380, - sym_procedure_call_statement = 381, - sym_raise_statement = 382, - sym_loop_statement = 383, - sym_iteration_scheme = 384, - sym_assignment_statement = 385, - sym_subprogram_declaration = 386, - sym_expression_function_declaration = 387, - sym__subprogram_specification = 388, - sym_subtype_declaration = 389, - sym_variant_part = 390, - sym_variant_list = 391, - sym_variant = 392, - aux_sym_compilation_repeat1 = 393, - aux_sym__name_list_repeat1 = 394, - aux_sym__defining_identifier_list_repeat1 = 395, - aux_sym_package_specification_repeat1 = 396, - aux_sym_expression_repeat1 = 397, - aux_sym_expression_repeat2 = 398, - aux_sym_expression_repeat3 = 399, - aux_sym_membership_choice_list_repeat1 = 400, - aux_sym__simple_expression_repeat1 = 401, - aux_sym_term_repeat1 = 402, - aux_sym_actual_parameter_part_repeat1 = 403, - aux_sym_declare_expression_repeat1 = 404, - aux_sym_case_expression_repeat1 = 405, - aux_sym_component_choice_list_repeat1 = 406, - aux_sym_record_component_association_list_repeat1 = 407, - aux_sym_record_component_association_list_repeat2 = 408, - aux_sym_index_constraint_repeat1 = 409, - aux_sym_discriminant_specification_list_repeat1 = 410, - aux_sym__discrete_subtype_definition_list_repeat1 = 411, - aux_sym__index_subtype_definition_list_repeat1 = 412, - aux_sym__enumeration_literal_list_repeat1 = 413, - aux_sym__interface_list_repeat1 = 414, - aux_sym_component_list_repeat1 = 415, - aux_sym_positional_array_aggregate_repeat1 = 416, - aux_sym__array_component_association_list_repeat1 = 417, - aux_sym_discrete_choice_list_repeat1 = 418, - aux_sym_aspect_mark_list_repeat1 = 419, - aux_sym_protected_definition_repeat1 = 420, - aux_sym_protected_definition_repeat2 = 421, - aux_sym_protected_body_repeat1 = 422, - aux_sym_non_empty_declarative_part_repeat1 = 423, - aux_sym_exception_choice_list_repeat1 = 424, - aux_sym_generic_formal_part_repeat1 = 425, - aux_sym_global_aspect_definition_repeat1 = 426, - aux_sym_task_definition_repeat1 = 427, - aux_sym_parameter_specification_list_repeat1 = 428, - aux_sym_pragma_g_repeat1 = 429, - aux_sym_if_expression_repeat1 = 430, - aux_sym_record_representation_clause_repeat1 = 431, - aux_sym__sequence_of_statements_repeat1 = 432, - aux_sym__sequence_of_statements_repeat2 = 433, - aux_sym_selective_accept_repeat1 = 434, - aux_sym_case_statement_repeat1 = 435, - aux_sym_if_statement_repeat1 = 436, - aux_sym_variant_list_repeat1 = 437, + sym_array_type_definition = 211, + sym__discrete_subtype_definition_list = 212, + sym__discrete_range = 213, + sym__index_subtype_definition_list = 214, + sym_index_subtype_definition = 215, + sym_enumeration_type_definition = 216, + sym__enumeration_literal_list = 217, + sym__enumeration_literal_specification = 218, + sym__integer_type_definition = 219, + sym_modular_type_definition = 220, + sym__real_type_definition = 221, + sym_floating_point_definition = 222, + sym_real_range_specification = 223, + sym__fixed_point_definition = 224, + sym_decimal_fixed_point_definition = 225, + sym_ordinary_fixed_point_definition = 226, + sym_signed_integer_type_definition = 227, + sym_derived_type_definition = 228, + sym_interface_type_definition = 229, + sym__interface_list = 230, + sym_record_extension_part = 231, + sym_record_type_definition = 232, + sym_record_definition = 233, + sym_component_list = 234, + sym__component_item = 235, + sym_component_declaration = 236, + sym_component_definition = 237, + sym__array_aggregate = 238, + sym_positional_array_aggregate = 239, + sym_null_array_aggregate = 240, + sym_named_array_aggregate = 241, + sym__array_component_association_list = 242, + sym_array_component_association = 243, + sym_discrete_choice_list = 244, + sym_discrete_choice = 245, + sym_aspect_association = 246, + sym__aspect_clause = 247, + sym__aspect_definition = 248, + sym__aspect_mark = 249, + sym_aspect_mark_list = 250, + sym_aspect_specification = 251, + sym__assign_value = 252, + sym_at_clause = 253, + sym_attribute_definition_clause = 254, + sym_body_stub = 255, + sym_subprogram_body_stub = 256, + sym_package_body_stub = 257, + sym_task_body = 258, + sym_task_body_stub = 259, + sym__protected_operation_declaration = 260, + sym__protected_element_declaration = 261, + sym__protected_operation_item = 262, + sym_protected_definition = 263, + sym_protected_type_declaration = 264, + sym_single_protected_declaration = 265, + sym_protected_body = 266, + sym_protected_body_stub = 267, + sym_choice_parameter_specification = 268, + sym_component_clause = 269, + sym__declarative_item_pragma = 270, + sym_non_empty_declarative_part = 271, + sym_entry_declaration = 272, + sym_entry_body = 273, + sym_entry_barrier = 274, + sym_entry_index_specification = 275, + sym_enumeration_aggregate = 276, + sym_enumeration_representation_clause = 277, + sym_exception_choice_list = 278, + sym_exception_choice = 279, + sym_exception_declaration = 280, + sym_exception_handler = 281, + aux_sym__exception_handler_list = 282, + sym_formal_part = 283, + sym_function_specification = 284, + sym__generic_declaration = 285, + sym_generic_formal_part = 286, + sym__generic_formal_parameter_declaration = 287, + sym_generic_subprogram_declaration = 288, + sym_generic_package_declaration = 289, + sym_generic_instantiation = 290, + sym_formal_object_declaration = 291, + sym__formal_type_declaration = 292, + sym_formal_complete_type_declaration = 293, + sym_formal_incomplete_type_declaration = 294, + sym__formal_type_definition = 295, + sym_formal_private_type_definition = 296, + sym_formal_derived_type_definition = 297, + sym_formal_discrete_type_definition = 298, + sym_formal_signed_integer_type_definition = 299, + sym_formal_modular_type_definition = 300, + sym_formal_floating_point_definition = 301, + sym_formal_ordinary_fixed_point_definition = 302, + sym_formal_decimal_fixed_point_definition = 303, + sym_formal_array_type_definition = 304, + sym_formal_access_type_definition = 305, + sym_formal_interface_type_definition = 306, + sym_formal_subprogram_declaration = 307, + sym_formal_concrete_subprogram_declaration = 308, + sym_formal_abstract_subprogram_declaration = 309, + sym_subprogram_default = 310, + sym_formal_package_declaration = 311, + sym_global_aspect_definition = 312, + sym_global_aspect_element = 313, + sym_global_mode = 314, + sym_handled_sequence_of_statements = 315, + sym_loop_label = 316, + sym_label = 317, + sym_mod_clause = 318, + sym_non_empty_mode = 319, + sym_null_procedure_declaration = 320, + sym_null_statement = 321, + sym_number_declaration = 322, + sym_object_declaration = 323, + sym_single_task_declaration = 324, + sym_task_type_declaration = 325, + sym_non_empty_entry_body_formal_part = 326, + sym__task_item = 327, + sym_task_definition = 328, + sym_overriding_indicator = 329, + sym__parameter_and_result_profile = 330, + sym_parameter_specification = 331, + sym__parameter_specification_list = 332, + sym_pragma_g = 333, + sym_pragma_argument_association = 334, + sym_if_expression = 335, + sym_elsif_expression_item = 336, + sym_procedure_specification = 337, + sym_record_representation_clause = 338, + sym__renaming_declaration = 339, + sym_object_renaming_declaration = 340, + sym_exception_renaming_declaration = 341, + sym_package_renaming_declaration = 342, + sym_subprogram_renaming_declaration = 343, + sym_generic_renaming_declaration = 344, + sym_result_profile = 345, + sym__sequence_of_statements = 346, + sym__simple_statement = 347, + sym_statement = 348, + sym__compound_statement = 349, + sym__select_statement = 350, + sym_entry_call_alternative = 351, + sym_asynchronous_select = 352, + sym_triggering_alternative = 353, + sym_conditional_entry_call = 354, + sym_delay_alternative = 355, + sym_timed_entry_call = 356, + sym_guard = 357, + sym__guard_select = 358, + sym__select_alternative = 359, + sym_selective_accept = 360, + sym_abort_statement = 361, + sym_requeue_statement = 362, + sym_accept_statement = 363, + sym_case_statement_alternative = 364, + sym_case_statement = 365, + sym_block_statement = 366, + sym_if_statement = 367, + sym_elsif_statement_item = 368, + sym_exit_statement = 369, + sym_goto_statement = 370, + sym__delay_statement = 371, + sym_delay_until_statement = 372, + sym_delay_relative_statement = 373, + sym_simple_return_statement = 374, + sym_extended_return_statement = 375, + sym_extended_return_object_declaration = 376, + sym__return_subtype_indication = 377, + sym_procedure_call_statement = 378, + sym_raise_statement = 379, + sym_loop_statement = 380, + sym_iteration_scheme = 381, + sym_assignment_statement = 382, + sym_subprogram_declaration = 383, + sym_expression_function_declaration = 384, + sym__subprogram_specification = 385, + sym_subtype_declaration = 386, + sym_variant_part = 387, + sym_variant_list = 388, + sym_variant = 389, + aux_sym_compilation_repeat1 = 390, + aux_sym__name_list_repeat1 = 391, + aux_sym__defining_identifier_list_repeat1 = 392, + aux_sym_package_specification_repeat1 = 393, + aux_sym_expression_repeat1 = 394, + aux_sym_expression_repeat2 = 395, + aux_sym_expression_repeat3 = 396, + aux_sym_membership_choice_list_repeat1 = 397, + aux_sym__simple_expression_repeat1 = 398, + aux_sym_term_repeat1 = 399, + aux_sym_actual_parameter_part_repeat1 = 400, + aux_sym_declare_expression_repeat1 = 401, + aux_sym_case_expression_repeat1 = 402, + aux_sym_component_choice_list_repeat1 = 403, + aux_sym_record_component_association_list_repeat1 = 404, + aux_sym_record_component_association_list_repeat2 = 405, + aux_sym_index_constraint_repeat1 = 406, + aux_sym_discriminant_specification_list_repeat1 = 407, + aux_sym__discrete_subtype_definition_list_repeat1 = 408, + aux_sym__index_subtype_definition_list_repeat1 = 409, + aux_sym__enumeration_literal_list_repeat1 = 410, + aux_sym__interface_list_repeat1 = 411, + aux_sym_component_list_repeat1 = 412, + aux_sym_positional_array_aggregate_repeat1 = 413, + aux_sym__array_component_association_list_repeat1 = 414, + aux_sym_discrete_choice_list_repeat1 = 415, + aux_sym_aspect_mark_list_repeat1 = 416, + aux_sym_protected_definition_repeat1 = 417, + aux_sym_protected_definition_repeat2 = 418, + aux_sym_protected_body_repeat1 = 419, + aux_sym_non_empty_declarative_part_repeat1 = 420, + aux_sym_exception_choice_list_repeat1 = 421, + aux_sym_generic_formal_part_repeat1 = 422, + aux_sym_global_aspect_definition_repeat1 = 423, + aux_sym_task_definition_repeat1 = 424, + aux_sym__parameter_specification_list_repeat1 = 425, + aux_sym_pragma_g_repeat1 = 426, + aux_sym_if_expression_repeat1 = 427, + aux_sym_record_representation_clause_repeat1 = 428, + aux_sym__sequence_of_statements_repeat1 = 429, + aux_sym__sequence_of_statements_repeat2 = 430, + aux_sym_selective_accept_repeat1 = 431, + aux_sym_case_statement_repeat1 = 432, + aux_sym_if_statement_repeat1 = 433, + aux_sym_variant_list_repeat1 = 434, }; static const char * const ts_symbol_names[] = { @@ -535,7 +532,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_private_type_declaration_token1] = "abstract", [aux_sym_private_type_declaration_token2] = "tagged", [aux_sym_private_extension_declaration_token1] = "synchronized", - [aux_sym_unconstrained_array_definition_token1] = "array", + [aux_sym_array_type_definition_token1] = "array", [aux_sym_interface_type_definition_token1] = "task", [aux_sym_interface_type_definition_token2] = "interface", [aux_sym_component_list_token1] = ";", @@ -668,9 +665,7 @@ static const char * const ts_symbol_names[] = { [sym_discriminant_specification_list] = "discriminant_specification_list", [sym_discriminant_specification] = "discriminant_specification", [sym__type_definition] = "_type_definition", - [sym__array_type_definition] = "_array_type_definition", - [sym_unconstrained_array_definition] = "unconstrained_array_definition", - [sym_constrained_array_definition] = "constrained_array_definition", + [sym_array_type_definition] = "array_type_definition", [sym__discrete_subtype_definition_list] = "_discrete_subtype_definition_list", [sym__discrete_range] = "_discrete_range", [sym__index_subtype_definition_list] = "_index_subtype_definition_list", @@ -789,10 +784,9 @@ static const char * const ts_symbol_names[] = { [sym__task_item] = "_task_item", [sym_task_definition] = "task_definition", [sym_overriding_indicator] = "overriding_indicator", - [sym__non_empty_parameter_profile] = "_non_empty_parameter_profile", [sym__parameter_and_result_profile] = "_parameter_and_result_profile", [sym_parameter_specification] = "parameter_specification", - [sym_parameter_specification_list] = "parameter_specification_list", + [sym__parameter_specification_list] = "_parameter_specification_list", [sym_pragma_g] = "pragma_g", [sym_pragma_argument_association] = "pragma_argument_association", [sym_if_expression] = "if_expression", @@ -885,7 +879,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_generic_formal_part_repeat1] = "generic_formal_part_repeat1", [aux_sym_global_aspect_definition_repeat1] = "global_aspect_definition_repeat1", [aux_sym_task_definition_repeat1] = "task_definition_repeat1", - [aux_sym_parameter_specification_list_repeat1] = "parameter_specification_list_repeat1", + [aux_sym__parameter_specification_list_repeat1] = "_parameter_specification_list_repeat1", [aux_sym_pragma_g_repeat1] = "pragma_g_repeat1", [aux_sym_if_expression_repeat1] = "if_expression_repeat1", [aux_sym_record_representation_clause_repeat1] = "record_representation_clause_repeat1", @@ -976,7 +970,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_private_type_declaration_token1] = aux_sym_private_type_declaration_token1, [aux_sym_private_type_declaration_token2] = aux_sym_private_type_declaration_token2, [aux_sym_private_extension_declaration_token1] = aux_sym_private_extension_declaration_token1, - [aux_sym_unconstrained_array_definition_token1] = aux_sym_unconstrained_array_definition_token1, + [aux_sym_array_type_definition_token1] = aux_sym_array_type_definition_token1, [aux_sym_interface_type_definition_token1] = aux_sym_interface_type_definition_token1, [aux_sym_interface_type_definition_token2] = aux_sym_interface_type_definition_token2, [aux_sym_component_list_token1] = anon_sym_SEMI, @@ -1109,9 +1103,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_discriminant_specification_list] = sym_discriminant_specification_list, [sym_discriminant_specification] = sym_discriminant_specification, [sym__type_definition] = sym__type_definition, - [sym__array_type_definition] = sym__array_type_definition, - [sym_unconstrained_array_definition] = sym_unconstrained_array_definition, - [sym_constrained_array_definition] = sym_constrained_array_definition, + [sym_array_type_definition] = sym_array_type_definition, [sym__discrete_subtype_definition_list] = sym__discrete_subtype_definition_list, [sym__discrete_range] = sym__discrete_range, [sym__index_subtype_definition_list] = sym__index_subtype_definition_list, @@ -1230,10 +1222,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__task_item] = sym__task_item, [sym_task_definition] = sym_task_definition, [sym_overriding_indicator] = sym_overriding_indicator, - [sym__non_empty_parameter_profile] = sym__non_empty_parameter_profile, [sym__parameter_and_result_profile] = sym__parameter_and_result_profile, [sym_parameter_specification] = sym_parameter_specification, - [sym_parameter_specification_list] = sym_parameter_specification_list, + [sym__parameter_specification_list] = sym__parameter_specification_list, [sym_pragma_g] = sym_pragma_g, [sym_pragma_argument_association] = sym_pragma_argument_association, [sym_if_expression] = sym_if_expression, @@ -1326,7 +1317,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_generic_formal_part_repeat1] = aux_sym_generic_formal_part_repeat1, [aux_sym_global_aspect_definition_repeat1] = aux_sym_global_aspect_definition_repeat1, [aux_sym_task_definition_repeat1] = aux_sym_task_definition_repeat1, - [aux_sym_parameter_specification_list_repeat1] = aux_sym_parameter_specification_list_repeat1, + [aux_sym__parameter_specification_list_repeat1] = aux_sym__parameter_specification_list_repeat1, [aux_sym_pragma_g_repeat1] = aux_sym_pragma_g_repeat1, [aux_sym_if_expression_repeat1] = aux_sym_if_expression_repeat1, [aux_sym_record_representation_clause_repeat1] = aux_sym_record_representation_clause_repeat1, @@ -1651,7 +1642,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_unconstrained_array_definition_token1] = { + [aux_sym_array_type_definition_token1] = { .visible = true, .named = false, }, @@ -2183,15 +2174,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__array_type_definition] = { - .visible = false, - .named = true, - }, - [sym_unconstrained_array_definition] = { - .visible = true, - .named = true, - }, - [sym_constrained_array_definition] = { + [sym_array_type_definition] = { .visible = true, .named = true, }, @@ -2667,10 +2650,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__non_empty_parameter_profile] = { - .visible = false, - .named = true, - }, [sym__parameter_and_result_profile] = { .visible = false, .named = true, @@ -2679,8 +2658,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_parameter_specification_list] = { - .visible = true, + [sym__parameter_specification_list] = { + .visible = false, .named = true, }, [sym_pragma_g] = { @@ -3051,7 +3030,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_parameter_specification_list_repeat1] = { + [aux_sym__parameter_specification_list_repeat1] = { .visible = false, .named = false, }, @@ -3252,57 +3231,59 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [57] = {.index = 74, .length = 1}, [58] = {.index = 75, .length = 2}, [59] = {.index = 77, .length = 2}, - [60] = {.index = 79, .length = 2}, - [61] = {.index = 81, .length = 2}, - [62] = {.index = 83, .length = 2}, - [63] = {.index = 85, .length = 2}, - [64] = {.index = 87, .length = 1}, + [60] = {.index = 79, .length = 1}, + [61] = {.index = 80, .length = 2}, + [62] = {.index = 82, .length = 2}, + [63] = {.index = 84, .length = 2}, + [64] = {.index = 86, .length = 2}, [65] = {.index = 88, .length = 1}, - [66] = {.index = 89, .length = 2}, - [67] = {.index = 91, .length = 2}, - [68] = {.index = 93, .length = 1}, - [69] = {.index = 94, .length = 2}, - [70] = {.index = 96, .length = 2}, - [71] = {.index = 98, .length = 2}, - [72] = {.index = 100, .length = 2}, - [73] = {.index = 102, .length = 1}, + [66] = {.index = 89, .length = 1}, + [67] = {.index = 90, .length = 2}, + [68] = {.index = 92, .length = 2}, + [69] = {.index = 94, .length = 1}, + [70] = {.index = 95, .length = 2}, + [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 = 1}, - [78] = {.index = 109, .length = 2}, - [79] = {.index = 111, .length = 2}, - [80] = {.index = 113, .length = 2}, - [81] = {.index = 115, .length = 1}, - [82] = {.index = 116, .length = 2}, - [83] = {.index = 118, .length = 1}, + [75] = {.index = 104, .length = 1}, + [76] = {.index = 105, .length = 2}, + [77] = {.index = 107, .length = 2}, + [78] = {.index = 109, .length = 1}, + [79] = {.index = 110, .length = 2}, + [80] = {.index = 112, .length = 2}, + [81] = {.index = 114, .length = 2}, + [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 = 2}, - [88] = {.index = 126, .length = 1}, + [85] = {.index = 120, .length = 1}, + [86] = {.index = 121, .length = 2}, + [87] = {.index = 123, .length = 2}, + [88] = {.index = 125, .length = 2}, [89] = {.index = 127, .length = 1}, [90] = {.index = 128, .length = 1}, [91] = {.index = 129, .length = 1}, - [92] = {.index = 130, .length = 2}, - [93] = {.index = 132, .length = 1}, - [94] = {.index = 133, .length = 2}, - [95] = {.index = 135, .length = 2}, - [96] = {.index = 137, .length = 2}, - [97] = {.index = 139, .length = 1}, - [98] = {.index = 140, .length = 1}, + [92] = {.index = 130, .length = 1}, + [93] = {.index = 131, .length = 1}, + [94] = {.index = 132, .length = 2}, + [95] = {.index = 134, .length = 1}, + [96] = {.index = 135, .length = 2}, + [97] = {.index = 137, .length = 2}, + [98] = {.index = 139, .length = 2}, [99] = {.index = 141, .length = 1}, - [100] = {.index = 142, .length = 3}, - [101] = {.index = 145, .length = 1}, - [102] = {.index = 146, .length = 2}, - [103] = {.index = 148, .length = 2}, - [104] = {.index = 150, .length = 1}, - [105] = {.index = 151, .length = 1}, - [106] = {.index = 152, .length = 3}, - [107] = {.index = 155, .length = 1}, - [108] = {.index = 156, .length = 2}, - [109] = {.index = 158, .length = 1}, - [110] = {.index = 159, .length = 4}, + [100] = {.index = 142, .length = 1}, + [101] = {.index = 143, .length = 1}, + [102] = {.index = 144, .length = 3}, + [103] = {.index = 147, .length = 1}, + [104] = {.index = 148, .length = 2}, + [105] = {.index = 150, .length = 2}, + [106] = {.index = 152, .length = 1}, + [107] = {.index = 153, .length = 1}, + [108] = {.index = 154, .length = 3}, + [109] = {.index = 157, .length = 1}, + [110] = {.index = 158, .length = 2}, + [111] = {.index = 160, .length = 1}, + [112] = {.index = 161, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3445,136 +3426,140 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_generic_name, 4}, {field_name, 1}, [79] = + {field_endname, 2}, + [80] = {field_defining_program_unit_name, 2}, {field_generic_package_name, 4}, - [81] = + [82] = {field_defining_program_unit_name, 2}, {field_generic_procedure_name, 4}, - [83] = + [84] = {field_defining_program_unit_name, 2}, {field_generic_function_name, 4}, - [85] = + [86] = {field_name, 0}, {field_subtype_mark, 3}, - [87] = - {field_subtype_mark, 4, .inherited = true}, [88] = - {field_entry_index, 3}, + {field_subtype_mark, 4, .inherited = true}, [89] = + {field_entry_index, 3}, + [90] = {field_subtype_mark, 0, .inherited = true}, {field_subtype_mark, 1, .inherited = true}, - [91] = + [92] = {field_name, 0}, {field_subtype_mark, 4, .inherited = true}, - [93] = - {field_statements, 2}, [94] = + {field_statements, 2}, + [95] = {field_object_name, 5}, {field_subtype_mark, 3}, - [96] = + [97] = {field_iterator_name, 5}, {field_subtype_mark, 2, .inherited = true}, - [98] = + [99] = {field_endname, 5}, {field_name, 2}, - [100] = + [101] = {field_endname, 6}, {field_name, 1}, - [102] = - {field_parameter_profile, 0}, [103] = - {field_predicate, 4}, + {field_parameter_profile, 0}, [104] = + {field_predicate, 4}, + [105] = {field_subtype_mark, 1, .inherited = true}, {field_subtype_mark, 2, .inherited = true}, - [106] = + [107] = {field_parameter_profile, 5}, {field_subtype_mark, 3, .inherited = true}, - [108] = - {field_default_subtype_mark, 4}, [109] = + {field_default_subtype_mark, 4}, + [110] = {field_name, 0}, {field_subtype_mark, 4}, - [111] = + [112] = {field_condition, 1}, {field_statements, 3}, - [113] = + [114] = {field_entry_index, 3}, {field_parameter_profile, 5}, - [115] = - {field_statements, 3}, [116] = + {field_statements, 3}, + [117] = {field_generic_name, 5}, {field_name, 2}, - [118] = - {field_endname, 5}, [119] = - {field_global_set, 1}, + {field_endname, 5}, [120] = + {field_global_set, 1}, + [121] = {field_end_local_name, 6}, {field_local_name, 1}, - [122] = + [123] = {field_endname, 6}, {field_name, 2}, - [124] = + [125] = {field_endname, 7}, {field_name, 1}, - [126] = - {field_subtype_mark, 4}, [127] = - {field_generic_package_name, 5}, + {field_subtype_mark, 4}, [128] = - {field_default_subtype_mark, 5}, + {field_endname, 4}, [129] = - {field_abortable_part, 4}, + {field_generic_package_name, 5}, [130] = + {field_default_subtype_mark, 5}, + [131] = + {field_abortable_part, 4}, + [132] = {field_parameter_profile, 6}, {field_subtype_mark, 4, .inherited = true}, - [132] = + [134] = {field_endname, 6}, - [133] = + [135] = {field_end_local_name, 7}, {field_local_name, 1}, - [135] = + [137] = {field_endname, 7}, {field_name, 2}, - [137] = + [139] = {field_endname, 8}, {field_name, 1}, - [139] = - {field_subtype_mark, 5, .inherited = true}, - [140] = - {field_subtype_mark, 5}, [141] = - {field_default_subtype_mark, 6}, + {field_subtype_mark, 5, .inherited = true}, [142] = + {field_subtype_mark, 5}, + [143] = + {field_default_subtype_mark, 6}, + [144] = {field_condition, 1}, {field_else_statements, 5}, {field_statements, 3}, - [145] = + [147] = {field_endname, 7}, - [146] = + [148] = {field_end_local_name, 8}, {field_local_name, 1}, - [148] = + [150] = {field_endname, 8}, {field_name, 2}, - [150] = - {field_subtype_mark, 6, .inherited = true}, - [151] = - {field_default_subtype_mark, 7}, [152] = + {field_subtype_mark, 6, .inherited = true}, + [153] = + {field_default_subtype_mark, 7}, + [154] = {field_condition, 1}, {field_else_statements, 6}, {field_statements, 3}, - [155] = + [157] = {field_endname, 8}, - [156] = + [158] = {field_endname, 9}, {field_name, 2}, - [158] = + [160] = {field_subtype_mark, 7, .inherited = true}, - [159] = + [161] = {field_first_bit, 4}, {field_last_bit, 6}, {field_local_name, 0}, @@ -3635,14 +3620,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [42] = 42, [43] = 43, [44] = 44, - [45] = 25, + [45] = 45, [46] = 46, [47] = 47, [48] = 48, [49] = 49, [50] = 50, [51] = 51, - [52] = 52, + [52] = 25, [53] = 53, [54] = 54, [55] = 55, @@ -4139,7 +4124,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [546] = 546, [547] = 547, [548] = 548, - [549] = 549, + [549] = 499, [550] = 550, [551] = 551, [552] = 552, @@ -4152,7 +4137,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [559] = 559, [560] = 560, [561] = 561, - [562] = 500, + [562] = 562, [563] = 563, [564] = 564, [565] = 565, @@ -4515,7 +4500,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 914, [926] = 926, [927] = 927, [928] = 928, @@ -4530,7 +4515,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [937] = 937, [938] = 938, [939] = 939, - [940] = 932, + [940] = 940, [941] = 941, [942] = 942, [943] = 943, @@ -4777,7 +4762,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1184] = 1184, [1185] = 1185, [1186] = 1186, - [1187] = 1187, + [1187] = 1143, [1188] = 1188, [1189] = 1189, [1190] = 1190, @@ -4788,7 +4773,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1142, + [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, @@ -5508,6 +5493,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1915] = 1915, [1916] = 1916, [1917] = 1917, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 1921, + [1922] = 1922, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -6953,7 +6949,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(237); END_STATE(); case 200: - ACCEPT_TOKEN(aux_sym_unconstrained_array_definition_token1); + ACCEPT_TOKEN(aux_sym_array_type_definition_token1); END_STATE(); case 201: ACCEPT_TOKEN(aux_sym_subprogram_body_token1); @@ -7501,81 +7497,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 26}, [175] = {.lex_state = 26}, [176] = {.lex_state = 26}, - [177] = {.lex_state = 10}, + [177] = {.lex_state = 26}, [178] = {.lex_state = 26}, [179] = {.lex_state = 26}, - [180] = {.lex_state = 26}, + [180] = {.lex_state = 10}, [181] = {.lex_state = 26}, [182] = {.lex_state = 26}, - [183] = {.lex_state = 26}, + [183] = {.lex_state = 10}, [184] = {.lex_state = 26}, [185] = {.lex_state = 26}, [186] = {.lex_state = 26}, [187] = {.lex_state = 26}, - [188] = {.lex_state = 10}, + [188] = {.lex_state = 26}, [189] = {.lex_state = 26}, - [190] = {.lex_state = 26}, + [190] = {.lex_state = 10}, [191] = {.lex_state = 26}, [192] = {.lex_state = 10}, - [193] = {.lex_state = 10}, - [194] = {.lex_state = 10}, - [195] = {.lex_state = 10}, + [193] = {.lex_state = 26}, + [194] = {.lex_state = 26}, + [195] = {.lex_state = 26}, [196] = {.lex_state = 10}, [197] = {.lex_state = 26}, [198] = {.lex_state = 26}, [199] = {.lex_state = 10}, - [200] = {.lex_state = 10}, + [200] = {.lex_state = 26}, [201] = {.lex_state = 26}, [202] = {.lex_state = 26}, [203] = {.lex_state = 26}, [204] = {.lex_state = 26}, [205] = {.lex_state = 26}, - [206] = {.lex_state = 26}, - [207] = {.lex_state = 10}, + [206] = {.lex_state = 10}, + [207] = {.lex_state = 26}, [208] = {.lex_state = 26}, - [209] = {.lex_state = 10}, + [209] = {.lex_state = 26}, [210] = {.lex_state = 26}, - [211] = {.lex_state = 10}, - [212] = {.lex_state = 10}, + [211] = {.lex_state = 26}, + [212] = {.lex_state = 26}, [213] = {.lex_state = 26}, - [214] = {.lex_state = 10}, + [214] = {.lex_state = 26}, [215] = {.lex_state = 10}, - [216] = {.lex_state = 26}, + [216] = {.lex_state = 10}, [217] = {.lex_state = 26}, - [218] = {.lex_state = 26}, + [218] = {.lex_state = 10}, [219] = {.lex_state = 26}, [220] = {.lex_state = 26}, - [221] = {.lex_state = 10}, + [221] = {.lex_state = 26}, [222] = {.lex_state = 10}, - [223] = {.lex_state = 26}, + [223] = {.lex_state = 10}, [224] = {.lex_state = 26}, - [225] = {.lex_state = 10}, - [226] = {.lex_state = 26}, - [227] = {.lex_state = 10}, - [228] = {.lex_state = 26}, + [225] = {.lex_state = 26}, + [226] = {.lex_state = 10}, + [227] = {.lex_state = 26}, + [228] = {.lex_state = 10}, [229] = {.lex_state = 26}, - [230] = {.lex_state = 26}, + [230] = {.lex_state = 10}, [231] = {.lex_state = 26}, [232] = {.lex_state = 26}, - [233] = {.lex_state = 26}, - [234] = {.lex_state = 26}, - [235] = {.lex_state = 26}, + [233] = {.lex_state = 10}, + [234] = {.lex_state = 10}, + [235] = {.lex_state = 10}, [236] = {.lex_state = 10}, [237] = {.lex_state = 26}, [238] = {.lex_state = 10}, [239] = {.lex_state = 26}, [240] = {.lex_state = 26}, - [241] = {.lex_state = 26}, + [241] = {.lex_state = 10}, [242] = {.lex_state = 26}, [243] = {.lex_state = 26}, - [244] = {.lex_state = 10}, + [244] = {.lex_state = 26}, [245] = {.lex_state = 26}, [246] = {.lex_state = 26}, [247] = {.lex_state = 26}, [248] = {.lex_state = 26}, - [249] = {.lex_state = 26}, - [250] = {.lex_state = 10}, - [251] = {.lex_state = 26}, + [249] = {.lex_state = 10}, + [250] = {.lex_state = 26}, + [251] = {.lex_state = 10}, [252] = {.lex_state = 26}, [253] = {.lex_state = 26}, [254] = {.lex_state = 26}, @@ -7585,18 +7581,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 26}, [259] = {.lex_state = 26}, [260] = {.lex_state = 26}, - [261] = {.lex_state = 26}, + [261] = {.lex_state = 10}, [262] = {.lex_state = 26}, [263] = {.lex_state = 26}, [264] = {.lex_state = 26}, - [265] = {.lex_state = 10}, - [266] = {.lex_state = 26}, + [265] = {.lex_state = 26}, + [266] = {.lex_state = 10}, [267] = {.lex_state = 26}, [268] = {.lex_state = 26}, [269] = {.lex_state = 26}, [270] = {.lex_state = 26}, [271] = {.lex_state = 26}, - [272] = {.lex_state = 10}, + [272] = {.lex_state = 26}, [273] = {.lex_state = 26}, [274] = {.lex_state = 26}, [275] = {.lex_state = 26}, @@ -7618,7 +7614,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [291] = {.lex_state = 26}, [292] = {.lex_state = 26}, [293] = {.lex_state = 26}, - [294] = {.lex_state = 26}, + [294] = {.lex_state = 10}, [295] = {.lex_state = 26}, [296] = {.lex_state = 26}, [297] = {.lex_state = 26}, @@ -7785,7 +7781,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 26}, [459] = {.lex_state = 26}, [460] = {.lex_state = 26}, - [461] = {.lex_state = 10}, + [461] = {.lex_state = 26}, [462] = {.lex_state = 26}, [463] = {.lex_state = 26}, [464] = {.lex_state = 26}, @@ -7796,7 +7792,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [469] = {.lex_state = 26}, [470] = {.lex_state = 26}, [471] = {.lex_state = 26}, - [472] = {.lex_state = 10}, + [472] = {.lex_state = 26}, [473] = {.lex_state = 26}, [474] = {.lex_state = 26}, [475] = {.lex_state = 26}, @@ -7804,11 +7800,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [477] = {.lex_state = 26}, [478] = {.lex_state = 26}, [479] = {.lex_state = 10}, - [480] = {.lex_state = 26}, + [480] = {.lex_state = 10}, [481] = {.lex_state = 26}, [482] = {.lex_state = 26}, [483] = {.lex_state = 26}, - [484] = {.lex_state = 26}, + [484] = {.lex_state = 10}, [485] = {.lex_state = 10}, [486] = {.lex_state = 10}, [487] = {.lex_state = 10}, @@ -7816,24 +7812,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [489] = {.lex_state = 10}, [490] = {.lex_state = 10}, [491] = {.lex_state = 10}, - [492] = {.lex_state = 26}, + [492] = {.lex_state = 10}, [493] = {.lex_state = 10}, [494] = {.lex_state = 10}, [495] = {.lex_state = 10}, - [496] = {.lex_state = 10}, + [496] = {.lex_state = 26}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, [499] = {.lex_state = 10}, - [500] = {.lex_state = 10}, - [501] = {.lex_state = 26}, - [502] = {.lex_state = 26}, + [500] = {.lex_state = 26}, + [501] = {.lex_state = 11}, + [502] = {.lex_state = 11}, [503] = {.lex_state = 11}, - [504] = {.lex_state = 11}, - [505] = {.lex_state = 11}, + [504] = {.lex_state = 26}, + [505] = {.lex_state = 26}, [506] = {.lex_state = 11}, - [507] = {.lex_state = 26}, + [507] = {.lex_state = 11}, [508] = {.lex_state = 26}, - [509] = {.lex_state = 11}, + [509] = {.lex_state = 26}, [510] = {.lex_state = 26}, [511] = {.lex_state = 11}, [512] = {.lex_state = 26}, @@ -7841,20 +7837,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [514] = {.lex_state = 10}, [515] = {.lex_state = 10}, [516] = {.lex_state = 26}, - [517] = {.lex_state = 7}, - [518] = {.lex_state = 10}, + [517] = {.lex_state = 10}, + [518] = {.lex_state = 7}, [519] = {.lex_state = 26}, - [520] = {.lex_state = 10}, - [521] = {.lex_state = 26}, - [522] = {.lex_state = 11}, + [520] = {.lex_state = 11}, + [521] = {.lex_state = 10}, + [522] = {.lex_state = 26}, [523] = {.lex_state = 26}, [524] = {.lex_state = 26}, [525] = {.lex_state = 11}, [526] = {.lex_state = 26}, - [527] = {.lex_state = 26}, + [527] = {.lex_state = 10}, [528] = {.lex_state = 10}, [529] = {.lex_state = 26}, - [530] = {.lex_state = 10}, + [530] = {.lex_state = 26}, [531] = {.lex_state = 26}, [532] = {.lex_state = 10}, [533] = {.lex_state = 26}, @@ -7864,29 +7860,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 26}, [538] = {.lex_state = 26}, [539] = {.lex_state = 26}, - [540] = {.lex_state = 26}, + [540] = {.lex_state = 10}, [541] = {.lex_state = 26}, [542] = {.lex_state = 26}, [543] = {.lex_state = 26}, [544] = {.lex_state = 26}, [545] = {.lex_state = 26}, [546] = {.lex_state = 26}, - [547] = {.lex_state = 10}, + [547] = {.lex_state = 26}, [548] = {.lex_state = 26}, - [549] = {.lex_state = 26}, + [549] = {.lex_state = 10}, [550] = {.lex_state = 26}, [551] = {.lex_state = 26}, - [552] = {.lex_state = 11}, - [553] = {.lex_state = 26}, - [554] = {.lex_state = 10}, + [552] = {.lex_state = 26}, + [553] = {.lex_state = 11}, + [554] = {.lex_state = 26}, [555] = {.lex_state = 26}, [556] = {.lex_state = 26}, - [557] = {.lex_state = 26}, + [557] = {.lex_state = 10}, [558] = {.lex_state = 26}, [559] = {.lex_state = 26}, [560] = {.lex_state = 26}, [561] = {.lex_state = 26}, - [562] = {.lex_state = 10}, + [562] = {.lex_state = 26}, [563] = {.lex_state = 26}, [564] = {.lex_state = 26}, [565] = {.lex_state = 26}, @@ -7896,11 +7892,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 26}, [570] = {.lex_state = 26}, [571] = {.lex_state = 26}, - [572] = {.lex_state = 26}, + [572] = {.lex_state = 11}, [573] = {.lex_state = 26}, [574] = {.lex_state = 26}, [575] = {.lex_state = 26}, - [576] = {.lex_state = 11}, + [576] = {.lex_state = 26}, [577] = {.lex_state = 26}, [578] = {.lex_state = 26}, [579] = {.lex_state = 26}, @@ -7908,8 +7904,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 26}, [582] = {.lex_state = 26}, [583] = {.lex_state = 26}, - [584] = {.lex_state = 11}, - [585] = {.lex_state = 26}, + [584] = {.lex_state = 26}, + [585] = {.lex_state = 11}, [586] = {.lex_state = 26}, [587] = {.lex_state = 26}, [588] = {.lex_state = 26}, @@ -7987,25 +7983,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [660] = {.lex_state = 26}, [661] = {.lex_state = 26}, [662] = {.lex_state = 26}, - [663] = {.lex_state = 11}, + [663] = {.lex_state = 26}, [664] = {.lex_state = 26}, [665] = {.lex_state = 26}, [666] = {.lex_state = 26}, [667] = {.lex_state = 26}, - [668] = {.lex_state = 26}, - [669] = {.lex_state = 11}, - [670] = {.lex_state = 0}, - [671] = {.lex_state = 26}, - [672] = {.lex_state = 10}, + [668] = {.lex_state = 0}, + [669] = {.lex_state = 10}, + [670] = {.lex_state = 26}, + [671] = {.lex_state = 11}, + [672] = {.lex_state = 11}, [673] = {.lex_state = 11}, - [674] = {.lex_state = 0}, + [674] = {.lex_state = 26}, [675] = {.lex_state = 11}, [676] = {.lex_state = 26}, [677] = {.lex_state = 26}, [678] = {.lex_state = 26}, - [679] = {.lex_state = 11}, - [680] = {.lex_state = 26}, - [681] = {.lex_state = 26}, + [679] = {.lex_state = 26}, + [680] = {.lex_state = 0}, + [681] = {.lex_state = 11}, [682] = {.lex_state = 26}, [683] = {.lex_state = 26}, [684] = {.lex_state = 26}, @@ -8142,23 +8138,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [815] = {.lex_state = 26}, [816] = {.lex_state = 26}, [817] = {.lex_state = 26}, - [818] = {.lex_state = 11}, - [819] = {.lex_state = 11}, - [820] = {.lex_state = 26}, + [818] = {.lex_state = 26}, + [819] = {.lex_state = 26}, + [820] = {.lex_state = 11}, [821] = {.lex_state = 11}, - [822] = {.lex_state = 26}, - [823] = {.lex_state = 26}, - [824] = {.lex_state = 26}, + [822] = {.lex_state = 11}, + [823] = {.lex_state = 11}, + [824] = {.lex_state = 11}, [825] = {.lex_state = 26}, - [826] = {.lex_state = 26}, + [826] = {.lex_state = 11}, [827] = {.lex_state = 26}, - [828] = {.lex_state = 11}, + [828] = {.lex_state = 26}, [829] = {.lex_state = 26}, - [830] = {.lex_state = 11}, + [830] = {.lex_state = 26}, [831] = {.lex_state = 26}, [832] = {.lex_state = 26}, - [833] = {.lex_state = 26}, - [834] = {.lex_state = 11}, + [833] = {.lex_state = 11}, + [834] = {.lex_state = 26}, [835] = {.lex_state = 26}, [836] = {.lex_state = 26}, [837] = {.lex_state = 11}, @@ -8170,113 +8166,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [843] = {.lex_state = 26}, [844] = {.lex_state = 11}, [845] = {.lex_state = 11}, - [846] = {.lex_state = 11}, - [847] = {.lex_state = 26}, + [846] = {.lex_state = 26}, + [847] = {.lex_state = 11}, [848] = {.lex_state = 11}, - [849] = {.lex_state = 26}, - [850] = {.lex_state = 11}, + [849] = {.lex_state = 11}, + [850] = {.lex_state = 26}, [851] = {.lex_state = 26}, [852] = {.lex_state = 26}, [853] = {.lex_state = 26}, - [854] = {.lex_state = 26}, - [855] = {.lex_state = 26}, + [854] = {.lex_state = 11}, + [855] = {.lex_state = 11}, [856] = {.lex_state = 26}, [857] = {.lex_state = 26}, [858] = {.lex_state = 26}, [859] = {.lex_state = 11}, [860] = {.lex_state = 26}, [861] = {.lex_state = 26}, - [862] = {.lex_state = 11}, - [863] = {.lex_state = 26}, + [862] = {.lex_state = 26}, + [863] = {.lex_state = 11}, [864] = {.lex_state = 26}, - [865] = {.lex_state = 11}, - [866] = {.lex_state = 26}, - [867] = {.lex_state = 11}, + [865] = {.lex_state = 26}, + [866] = {.lex_state = 11}, + [867] = {.lex_state = 26}, [868] = {.lex_state = 26}, - [869] = {.lex_state = 26}, + [869] = {.lex_state = 11}, [870] = {.lex_state = 26}, [871] = {.lex_state = 26}, [872] = {.lex_state = 26}, [873] = {.lex_state = 26}, [874] = {.lex_state = 26}, - [875] = {.lex_state = 10}, + [875] = {.lex_state = 26}, [876] = {.lex_state = 26}, - [877] = {.lex_state = 10}, - [878] = {.lex_state = 11}, + [877] = {.lex_state = 26}, + [878] = {.lex_state = 26}, [879] = {.lex_state = 11}, [880] = {.lex_state = 26}, - [881] = {.lex_state = 10}, - [882] = {.lex_state = 11}, + [881] = {.lex_state = 11}, + [882] = {.lex_state = 26}, [883] = {.lex_state = 11}, - [884] = {.lex_state = 10}, - [885] = {.lex_state = 26}, - [886] = {.lex_state = 10}, - [887] = {.lex_state = 26}, - [888] = {.lex_state = 10}, - [889] = {.lex_state = 26}, + [884] = {.lex_state = 11}, + [885] = {.lex_state = 10}, + [886] = {.lex_state = 11}, + [887] = {.lex_state = 11}, + [888] = {.lex_state = 26}, + [889] = {.lex_state = 10}, [890] = {.lex_state = 26}, - [891] = {.lex_state = 11}, - [892] = {.lex_state = 26}, - [893] = {.lex_state = 11}, - [894] = {.lex_state = 11}, + [891] = {.lex_state = 26}, + [892] = {.lex_state = 11}, + [893] = {.lex_state = 26}, + [894] = {.lex_state = 26}, [895] = {.lex_state = 11}, [896] = {.lex_state = 11}, - [897] = {.lex_state = 11}, - [898] = {.lex_state = 26}, + [897] = {.lex_state = 26}, + [898] = {.lex_state = 11}, [899] = {.lex_state = 26}, - [900] = {.lex_state = 26}, + [900] = {.lex_state = 0}, [901] = {.lex_state = 26}, - [902] = {.lex_state = 26}, + [902] = {.lex_state = 11}, [903] = {.lex_state = 11}, - [904] = {.lex_state = 11}, - [905] = {.lex_state = 26}, + [904] = {.lex_state = 26}, + [905] = {.lex_state = 11}, [906] = {.lex_state = 26}, - [907] = {.lex_state = 11}, - [908] = {.lex_state = 10}, + [907] = {.lex_state = 26}, + [908] = {.lex_state = 26}, [909] = {.lex_state = 26}, [910] = {.lex_state = 26}, [911] = {.lex_state = 26}, - [912] = {.lex_state = 11}, - [913] = {.lex_state = 26}, - [914] = {.lex_state = 26}, + [912] = {.lex_state = 26}, + [913] = {.lex_state = 10}, + [914] = {.lex_state = 0}, [915] = {.lex_state = 26}, [916] = {.lex_state = 26}, [917] = {.lex_state = 11}, - [918] = {.lex_state = 10}, - [919] = {.lex_state = 26}, - [920] = {.lex_state = 11}, + [918] = {.lex_state = 11}, + [919] = {.lex_state = 10}, + [920] = {.lex_state = 26}, [921] = {.lex_state = 11}, [922] = {.lex_state = 26}, - [923] = {.lex_state = 11}, + [923] = {.lex_state = 26}, [924] = {.lex_state = 11}, [925] = {.lex_state = 10}, - [926] = {.lex_state = 10}, + [926] = {.lex_state = 26}, [927] = {.lex_state = 26}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 11}, - [930] = {.lex_state = 26}, - [931] = {.lex_state = 26}, - [932] = {.lex_state = 10}, - [933] = {.lex_state = 11}, - [934] = {.lex_state = 11}, - [935] = {.lex_state = 26}, - [936] = {.lex_state = 11}, - [937] = {.lex_state = 11}, + [928] = {.lex_state = 26}, + [929] = {.lex_state = 26}, + [930] = {.lex_state = 11}, + [931] = {.lex_state = 11}, + [932] = {.lex_state = 11}, + [933] = {.lex_state = 26}, + [934] = {.lex_state = 26}, + [935] = {.lex_state = 10}, + [936] = {.lex_state = 26}, + [937] = {.lex_state = 10}, [938] = {.lex_state = 26}, - [939] = {.lex_state = 26}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 11}, + [939] = {.lex_state = 11}, + [940] = {.lex_state = 26}, + [941] = {.lex_state = 26}, [942] = {.lex_state = 26}, - [943] = {.lex_state = 11}, - [944] = {.lex_state = 26}, - [945] = {.lex_state = 26}, - [946] = {.lex_state = 26}, - [947] = {.lex_state = 26}, + [943] = {.lex_state = 26}, + [944] = {.lex_state = 11}, + [945] = {.lex_state = 11}, + [946] = {.lex_state = 11}, + [947] = {.lex_state = 11}, [948] = {.lex_state = 26}, - [949] = {.lex_state = 26}, + [949] = {.lex_state = 11}, [950] = {.lex_state = 26}, - [951] = {.lex_state = 26}, - [952] = {.lex_state = 26}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 11}, [953] = {.lex_state = 26}, [954] = {.lex_state = 26}, [955] = {.lex_state = 26}, @@ -8284,10 +8280,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [957] = {.lex_state = 26}, [958] = {.lex_state = 11}, [959] = {.lex_state = 26}, - [960] = {.lex_state = 11}, + [960] = {.lex_state = 26}, [961] = {.lex_state = 11}, [962] = {.lex_state = 26}, - [963] = {.lex_state = 26}, + [963] = {.lex_state = 11}, [964] = {.lex_state = 26}, [965] = {.lex_state = 26}, [966] = {.lex_state = 26}, @@ -8295,14 +8291,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [968] = {.lex_state = 26}, [969] = {.lex_state = 26}, [970] = {.lex_state = 26}, - [971] = {.lex_state = 0}, + [971] = {.lex_state = 26}, [972] = {.lex_state = 26}, [973] = {.lex_state = 26}, [974] = {.lex_state = 26}, [975] = {.lex_state = 26}, [976] = {.lex_state = 26}, [977] = {.lex_state = 26}, - [978] = {.lex_state = 0}, + [978] = {.lex_state = 26}, [979] = {.lex_state = 26}, [980] = {.lex_state = 26}, [981] = {.lex_state = 26}, @@ -8312,214 +8308,214 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [985] = {.lex_state = 26}, [986] = {.lex_state = 26}, [987] = {.lex_state = 26}, - [988] = {.lex_state = 11}, + [988] = {.lex_state = 26}, [989] = {.lex_state = 26}, [990] = {.lex_state = 26}, [991] = {.lex_state = 26}, - [992] = {.lex_state = 26}, + [992] = {.lex_state = 0}, [993] = {.lex_state = 26}, [994] = {.lex_state = 26}, [995] = {.lex_state = 26}, [996] = {.lex_state = 26}, [997] = {.lex_state = 26}, - [998] = {.lex_state = 11}, + [998] = {.lex_state = 26}, [999] = {.lex_state = 26}, [1000] = {.lex_state = 26}, [1001] = {.lex_state = 26}, [1002] = {.lex_state = 26}, [1003] = {.lex_state = 26}, - [1004] = {.lex_state = 26}, - [1005] = {.lex_state = 26}, - [1006] = {.lex_state = 0}, + [1004] = {.lex_state = 11}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 26}, [1007] = {.lex_state = 26}, - [1008] = {.lex_state = 10}, + [1008] = {.lex_state = 26}, [1009] = {.lex_state = 26}, [1010] = {.lex_state = 26}, - [1011] = {.lex_state = 10}, - [1012] = {.lex_state = 10}, + [1011] = {.lex_state = 26}, + [1012] = {.lex_state = 26}, [1013] = {.lex_state = 26}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 10}, + [1014] = {.lex_state = 10}, + [1015] = {.lex_state = 26}, [1016] = {.lex_state = 26}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 26}, - [1019] = {.lex_state = 10}, + [1017] = {.lex_state = 26}, + [1018] = {.lex_state = 10}, + [1019] = {.lex_state = 11}, [1020] = {.lex_state = 26}, - [1021] = {.lex_state = 11}, - [1022] = {.lex_state = 0}, + [1021] = {.lex_state = 10}, + [1022] = {.lex_state = 26}, [1023] = {.lex_state = 10}, [1024] = {.lex_state = 26}, - [1025] = {.lex_state = 11}, - [1026] = {.lex_state = 26}, + [1025] = {.lex_state = 26}, + [1026] = {.lex_state = 0}, [1027] = {.lex_state = 26}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 10}, + [1028] = {.lex_state = 26}, + [1029] = {.lex_state = 26}, [1030] = {.lex_state = 26}, - [1031] = {.lex_state = 26}, + [1031] = {.lex_state = 10}, [1032] = {.lex_state = 26}, - [1033] = {.lex_state = 26}, - [1034] = {.lex_state = 26}, - [1035] = {.lex_state = 10}, + [1033] = {.lex_state = 11}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 26}, [1036] = {.lex_state = 26}, - [1037] = {.lex_state = 26}, + [1037] = {.lex_state = 11}, [1038] = {.lex_state = 26}, - [1039] = {.lex_state = 26}, - [1040] = {.lex_state = 10}, - [1041] = {.lex_state = 10}, + [1039] = {.lex_state = 10}, + [1040] = {.lex_state = 26}, + [1041] = {.lex_state = 26}, [1042] = {.lex_state = 26}, [1043] = {.lex_state = 26}, [1044] = {.lex_state = 26}, [1045] = {.lex_state = 26}, - [1046] = {.lex_state = 26}, + [1046] = {.lex_state = 0}, [1047] = {.lex_state = 26}, - [1048] = {.lex_state = 11}, + [1048] = {.lex_state = 10}, [1049] = {.lex_state = 26}, [1050] = {.lex_state = 10}, - [1051] = {.lex_state = 26}, - [1052] = {.lex_state = 0}, + [1051] = {.lex_state = 11}, + [1052] = {.lex_state = 10}, [1053] = {.lex_state = 26}, [1054] = {.lex_state = 26}, [1055] = {.lex_state = 26}, - [1056] = {.lex_state = 26}, + [1056] = {.lex_state = 0}, [1057] = {.lex_state = 26}, [1058] = {.lex_state = 26}, - [1059] = {.lex_state = 26}, - [1060] = {.lex_state = 26}, + [1059] = {.lex_state = 11}, + [1060] = {.lex_state = 10}, [1061] = {.lex_state = 26}, [1062] = {.lex_state = 26}, - [1063] = {.lex_state = 11}, + [1063] = {.lex_state = 26}, [1064] = {.lex_state = 26}, - [1065] = {.lex_state = 26}, + [1065] = {.lex_state = 10}, [1066] = {.lex_state = 26}, - [1067] = {.lex_state = 0}, + [1067] = {.lex_state = 26}, [1068] = {.lex_state = 26}, - [1069] = {.lex_state = 26}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 26}, - [1071] = {.lex_state = 26}, - [1072] = {.lex_state = 10}, - [1073] = {.lex_state = 26}, + [1071] = {.lex_state = 10}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 10}, [1074] = {.lex_state = 10}, - [1075] = {.lex_state = 11}, - [1076] = {.lex_state = 26}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 11}, + [1075] = {.lex_state = 10}, + [1076] = {.lex_state = 10}, + [1077] = {.lex_state = 26}, + [1078] = {.lex_state = 26}, [1079] = {.lex_state = 26}, [1080] = {.lex_state = 26}, [1081] = {.lex_state = 26}, - [1082] = {.lex_state = 10}, - [1083] = {.lex_state = 10}, - [1084] = {.lex_state = 0}, + [1082] = {.lex_state = 11}, + [1083] = {.lex_state = 26}, + [1084] = {.lex_state = 26}, [1085] = {.lex_state = 26}, - [1086] = {.lex_state = 10}, + [1086] = {.lex_state = 26}, [1087] = {.lex_state = 26}, - [1088] = {.lex_state = 10}, + [1088] = {.lex_state = 26}, [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 10}, + [1090] = {.lex_state = 26}, [1091] = {.lex_state = 26}, [1092] = {.lex_state = 10}, [1093] = {.lex_state = 10}, - [1094] = {.lex_state = 10}, - [1095] = {.lex_state = 26}, + [1094] = {.lex_state = 26}, + [1095] = {.lex_state = 11}, [1096] = {.lex_state = 26}, - [1097] = {.lex_state = 11}, - [1098] = {.lex_state = 26}, + [1097] = {.lex_state = 10}, + [1098] = {.lex_state = 10}, [1099] = {.lex_state = 26}, - [1100] = {.lex_state = 10}, + [1100] = {.lex_state = 26}, [1101] = {.lex_state = 26}, [1102] = {.lex_state = 26}, [1103] = {.lex_state = 26}, - [1104] = {.lex_state = 26}, + [1104] = {.lex_state = 0}, [1105] = {.lex_state = 26}, - [1106] = {.lex_state = 10}, + [1106] = {.lex_state = 26}, [1107] = {.lex_state = 26}, - [1108] = {.lex_state = 11}, + [1108] = {.lex_state = 10}, [1109] = {.lex_state = 26}, [1110] = {.lex_state = 26}, [1111] = {.lex_state = 26}, [1112] = {.lex_state = 26}, [1113] = {.lex_state = 26}, [1114] = {.lex_state = 26}, - [1115] = {.lex_state = 26}, - [1116] = {.lex_state = 26}, - [1117] = {.lex_state = 11}, - [1118] = {.lex_state = 26}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 10}, + [1117] = {.lex_state = 26}, + [1118] = {.lex_state = 11}, [1119] = {.lex_state = 26}, [1120] = {.lex_state = 26}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 26}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 10}, [1123] = {.lex_state = 26}, [1124] = {.lex_state = 26}, [1125] = {.lex_state = 26}, - [1126] = {.lex_state = 26}, + [1126] = {.lex_state = 10}, [1127] = {.lex_state = 26}, - [1128] = {.lex_state = 26}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, + [1128] = {.lex_state = 11}, + [1129] = {.lex_state = 26}, + [1130] = {.lex_state = 26}, [1131] = {.lex_state = 26}, [1132] = {.lex_state = 26}, [1133] = {.lex_state = 26}, [1134] = {.lex_state = 26}, - [1135] = {.lex_state = 26}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 26}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 26}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 26}, + [1137] = {.lex_state = 26}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 26}, + [1140] = {.lex_state = 0}, [1141] = {.lex_state = 26}, - [1142] = {.lex_state = 0}, + [1142] = {.lex_state = 26}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 26}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 26}, - [1148] = {.lex_state = 26}, + [1146] = {.lex_state = 26}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 0}, [1149] = {.lex_state = 26}, - [1150] = {.lex_state = 26}, + [1150] = {.lex_state = 11}, [1151] = {.lex_state = 26}, - [1152] = {.lex_state = 26}, + [1152] = {.lex_state = 0}, [1153] = {.lex_state = 26}, [1154] = {.lex_state = 26}, - [1155] = {.lex_state = 26}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 26}, - [1157] = {.lex_state = 26}, - [1158] = {.lex_state = 26}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, [1159] = {.lex_state = 26}, - [1160] = {.lex_state = 26}, + [1160] = {.lex_state = 0}, [1161] = {.lex_state = 26}, - [1162] = {.lex_state = 26}, - [1163] = {.lex_state = 26}, - [1164] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 26}, [1165] = {.lex_state = 26}, [1166] = {.lex_state = 26}, [1167] = {.lex_state = 26}, - [1168] = {.lex_state = 0}, + [1168] = {.lex_state = 26}, [1169] = {.lex_state = 26}, - [1170] = {.lex_state = 26}, + [1170] = {.lex_state = 0}, [1171] = {.lex_state = 26}, [1172] = {.lex_state = 26}, - [1173] = {.lex_state = 26}, + [1173] = {.lex_state = 0}, [1174] = {.lex_state = 26}, [1175] = {.lex_state = 26}, [1176] = {.lex_state = 26}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 26}, + [1177] = {.lex_state = 26}, + [1178] = {.lex_state = 0}, [1179] = {.lex_state = 26}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 26}, + [1180] = {.lex_state = 26}, + [1181] = {.lex_state = 0}, [1182] = {.lex_state = 26}, [1183] = {.lex_state = 26}, [1184] = {.lex_state = 26}, - [1185] = {.lex_state = 0}, + [1185] = {.lex_state = 26}, [1186] = {.lex_state = 26}, [1187] = {.lex_state = 26}, - [1188] = {.lex_state = 0}, + [1188] = {.lex_state = 26}, [1189] = {.lex_state = 26}, [1190] = {.lex_state = 26}, [1191] = {.lex_state = 26}, [1192] = {.lex_state = 26}, [1193] = {.lex_state = 26}, [1194] = {.lex_state = 26}, - [1195] = {.lex_state = 0}, + [1195] = {.lex_state = 26}, [1196] = {.lex_state = 26}, [1197] = {.lex_state = 26}, [1198] = {.lex_state = 26}, @@ -8531,8 +8527,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1204] = {.lex_state = 26}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 26}, - [1207] = {.lex_state = 26}, - [1208] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 26}, [1209] = {.lex_state = 26}, [1210] = {.lex_state = 26}, [1211] = {.lex_state = 0}, @@ -8545,150 +8541,150 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1218] = {.lex_state = 26}, [1219] = {.lex_state = 26}, [1220] = {.lex_state = 26}, - [1221] = {.lex_state = 26}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 26}, - [1223] = {.lex_state = 0}, + [1223] = {.lex_state = 26}, [1224] = {.lex_state = 26}, [1225] = {.lex_state = 26}, [1226] = {.lex_state = 26}, - [1227] = {.lex_state = 0}, + [1227] = {.lex_state = 26}, [1228] = {.lex_state = 26}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 26}, + [1229] = {.lex_state = 26}, + [1230] = {.lex_state = 26}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 26}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 26}, + [1233] = {.lex_state = 26}, + [1234] = {.lex_state = 0}, [1235] = {.lex_state = 26}, [1236] = {.lex_state = 26}, - [1237] = {.lex_state = 26}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 26}, + [1239] = {.lex_state = 26}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 26}, - [1242] = {.lex_state = 0}, + [1242] = {.lex_state = 26}, [1243] = {.lex_state = 26}, [1244] = {.lex_state = 26}, [1245] = {.lex_state = 26}, [1246] = {.lex_state = 26}, [1247] = {.lex_state = 26}, - [1248] = {.lex_state = 26}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 26}, [1251] = {.lex_state = 26}, [1252] = {.lex_state = 26}, - [1253] = {.lex_state = 0}, + [1253] = {.lex_state = 26}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, [1256] = {.lex_state = 26}, [1257] = {.lex_state = 26}, [1258] = {.lex_state = 26}, - [1259] = {.lex_state = 0}, + [1259] = {.lex_state = 26}, [1260] = {.lex_state = 26}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 26}, + [1261] = {.lex_state = 26}, + [1262] = {.lex_state = 0}, [1263] = {.lex_state = 26}, [1264] = {.lex_state = 26}, - [1265] = {.lex_state = 0}, + [1265] = {.lex_state = 26}, [1266] = {.lex_state = 26}, [1267] = {.lex_state = 0}, [1268] = {.lex_state = 26}, [1269] = {.lex_state = 26}, [1270] = {.lex_state = 26}, [1271] = {.lex_state = 26}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 26}, - [1274] = {.lex_state = 26}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 26}, + [1272] = {.lex_state = 26}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 26}, + [1276] = {.lex_state = 0}, [1277] = {.lex_state = 26}, [1278] = {.lex_state = 26}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 26}, - [1281] = {.lex_state = 0}, + [1281] = {.lex_state = 26}, [1282] = {.lex_state = 26}, [1283] = {.lex_state = 26}, [1284] = {.lex_state = 26}, [1285] = {.lex_state = 26}, [1286] = {.lex_state = 26}, - [1287] = {.lex_state = 11}, - [1288] = {.lex_state = 26}, - [1289] = {.lex_state = 26}, + [1287] = {.lex_state = 26}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 0}, [1290] = {.lex_state = 26}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 26}, + [1292] = {.lex_state = 0}, [1293] = {.lex_state = 26}, [1294] = {.lex_state = 26}, [1295] = {.lex_state = 26}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 26}, - [1298] = {.lex_state = 26}, + [1298] = {.lex_state = 0}, [1299] = {.lex_state = 26}, [1300] = {.lex_state = 26}, [1301] = {.lex_state = 26}, [1302] = {.lex_state = 26}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 26}, - [1305] = {.lex_state = 0}, + [1303] = {.lex_state = 26}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 26}, [1306] = {.lex_state = 26}, - [1307] = {.lex_state = 0}, + [1307] = {.lex_state = 26}, [1308] = {.lex_state = 26}, [1309] = {.lex_state = 26}, - [1310] = {.lex_state = 26}, - [1311] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 26}, [1312] = {.lex_state = 26}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 26}, + [1313] = {.lex_state = 26}, + [1314] = {.lex_state = 0}, [1315] = {.lex_state = 26}, - [1316] = {.lex_state = 26}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 26}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 26}, + [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, [1320] = {.lex_state = 26}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 26}, - [1323] = {.lex_state = 26}, + [1323] = {.lex_state = 0}, [1324] = {.lex_state = 26}, [1325] = {.lex_state = 26}, - [1326] = {.lex_state = 26}, - [1327] = {.lex_state = 26}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, [1328] = {.lex_state = 26}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, + [1329] = {.lex_state = 26}, + [1330] = {.lex_state = 26}, [1331] = {.lex_state = 26}, [1332] = {.lex_state = 26}, - [1333] = {.lex_state = 0}, + [1333] = {.lex_state = 26}, [1334] = {.lex_state = 26}, - [1335] = {.lex_state = 26}, - [1336] = {.lex_state = 26}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 26}, [1338] = {.lex_state = 26}, [1339] = {.lex_state = 26}, - [1340] = {.lex_state = 26}, + [1340] = {.lex_state = 0}, [1341] = {.lex_state = 26}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0}, + [1342] = {.lex_state = 26}, + [1343] = {.lex_state = 26}, [1344] = {.lex_state = 26}, - [1345] = {.lex_state = 26}, + [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, [1347] = {.lex_state = 26}, [1348] = {.lex_state = 26}, [1349] = {.lex_state = 26}, [1350] = {.lex_state = 26}, - [1351] = {.lex_state = 26}, - [1352] = {.lex_state = 26}, - [1353] = {.lex_state = 26}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, [1354] = {.lex_state = 26}, - [1355] = {.lex_state = 26}, + [1355] = {.lex_state = 0}, [1356] = {.lex_state = 26}, [1357] = {.lex_state = 26}, [1358] = {.lex_state = 26}, - [1359] = {.lex_state = 26}, - [1360] = {.lex_state = 26}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 26}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, + [1363] = {.lex_state = 26}, + [1364] = {.lex_state = 26}, [1365] = {.lex_state = 26}, [1366] = {.lex_state = 26}, [1367] = {.lex_state = 0}, @@ -8696,27 +8692,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1369] = {.lex_state = 26}, [1370] = {.lex_state = 26}, [1371] = {.lex_state = 26}, - [1372] = {.lex_state = 0}, + [1372] = {.lex_state = 26}, [1373] = {.lex_state = 26}, - [1374] = {.lex_state = 26}, + [1374] = {.lex_state = 0}, [1375] = {.lex_state = 26}, [1376] = {.lex_state = 26}, - [1377] = {.lex_state = 0}, + [1377] = {.lex_state = 26}, [1378] = {.lex_state = 26}, [1379] = {.lex_state = 26}, [1380] = {.lex_state = 26}, [1381] = {.lex_state = 26}, - [1382] = {.lex_state = 26}, + [1382] = {.lex_state = 0}, [1383] = {.lex_state = 26}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, + [1384] = {.lex_state = 26}, + [1385] = {.lex_state = 26}, [1386] = {.lex_state = 26}, [1387] = {.lex_state = 26}, [1388] = {.lex_state = 26}, [1389] = {.lex_state = 26}, - [1390] = {.lex_state = 0}, + [1390] = {.lex_state = 26}, [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, + [1392] = {.lex_state = 26}, [1393] = {.lex_state = 26}, [1394] = {.lex_state = 26}, [1395] = {.lex_state = 26}, @@ -8729,32 +8725,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1402] = {.lex_state = 26}, [1403] = {.lex_state = 26}, [1404] = {.lex_state = 26}, - [1405] = {.lex_state = 26}, + [1405] = {.lex_state = 0}, [1406] = {.lex_state = 26}, [1407] = {.lex_state = 26}, [1408] = {.lex_state = 26}, [1409] = {.lex_state = 26}, [1410] = {.lex_state = 26}, [1411] = {.lex_state = 26}, - [1412] = {.lex_state = 0}, + [1412] = {.lex_state = 26}, [1413] = {.lex_state = 26}, [1414] = {.lex_state = 26}, [1415] = {.lex_state = 26}, [1416] = {.lex_state = 26}, - [1417] = {.lex_state = 0}, + [1417] = {.lex_state = 26}, [1418] = {.lex_state = 26}, - [1419] = {.lex_state = 0}, + [1419] = {.lex_state = 26}, [1420] = {.lex_state = 26}, - [1421] = {.lex_state = 26}, + [1421] = {.lex_state = 0}, [1422] = {.lex_state = 26}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 26}, [1425] = {.lex_state = 26}, [1426] = {.lex_state = 26}, - [1427] = {.lex_state = 26}, + [1427] = {.lex_state = 0}, [1428] = {.lex_state = 26}, - [1429] = {.lex_state = 26}, - [1430] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 26}, [1431] = {.lex_state = 26}, [1432] = {.lex_state = 26}, [1433] = {.lex_state = 26}, @@ -8769,92 +8765,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1442] = {.lex_state = 26}, [1443] = {.lex_state = 26}, [1444] = {.lex_state = 26}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 26}, - [1447] = {.lex_state = 0}, + [1445] = {.lex_state = 26}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 26}, [1448] = {.lex_state = 26}, - [1449] = {.lex_state = 26}, + [1449] = {.lex_state = 0}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, + [1451] = {.lex_state = 26}, [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 26}, + [1453] = {.lex_state = 0}, [1454] = {.lex_state = 26}, [1455] = {.lex_state = 26}, [1456] = {.lex_state = 26}, - [1457] = {.lex_state = 0}, + [1457] = {.lex_state = 26}, [1458] = {.lex_state = 26}, [1459] = {.lex_state = 26}, - [1460] = {.lex_state = 26}, + [1460] = {.lex_state = 0}, [1461] = {.lex_state = 26}, [1462] = {.lex_state = 26}, [1463] = {.lex_state = 26}, [1464] = {.lex_state = 26}, [1465] = {.lex_state = 26}, [1466] = {.lex_state = 26}, - [1467] = {.lex_state = 0}, + [1467] = {.lex_state = 26}, [1468] = {.lex_state = 26}, [1469] = {.lex_state = 26}, - [1470] = {.lex_state = 26}, - [1471] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 26}, [1472] = {.lex_state = 26}, [1473] = {.lex_state = 26}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 26}, + [1474] = {.lex_state = 26}, + [1475] = {.lex_state = 0}, [1476] = {.lex_state = 26}, [1477] = {.lex_state = 26}, [1478] = {.lex_state = 26}, - [1479] = {.lex_state = 0}, + [1479] = {.lex_state = 26}, [1480] = {.lex_state = 26}, - [1481] = {.lex_state = 26}, + [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, [1483] = {.lex_state = 26}, [1484] = {.lex_state = 26}, - [1485] = {.lex_state = 0}, + [1485] = {.lex_state = 26}, [1486] = {.lex_state = 26}, [1487] = {.lex_state = 26}, [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, [1490] = {.lex_state = 26}, - [1491] = {.lex_state = 26}, - [1492] = {.lex_state = 0}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 26}, [1493] = {.lex_state = 26}, [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 26}, + [1495] = {.lex_state = 0}, [1496] = {.lex_state = 26}, - [1497] = {.lex_state = 26}, + [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 26}, [1500] = {.lex_state = 26}, [1501] = {.lex_state = 26}, [1502] = {.lex_state = 26}, - [1503] = {.lex_state = 0}, + [1503] = {.lex_state = 26}, [1504] = {.lex_state = 26}, - [1505] = {.lex_state = 26}, + [1505] = {.lex_state = 0}, [1506] = {.lex_state = 26}, [1507] = {.lex_state = 26}, [1508] = {.lex_state = 26}, [1509] = {.lex_state = 26}, [1510] = {.lex_state = 26}, - [1511] = {.lex_state = 26}, + [1511] = {.lex_state = 0}, [1512] = {.lex_state = 0}, [1513] = {.lex_state = 26}, [1514] = {.lex_state = 26}, - [1515] = {.lex_state = 0}, + [1515] = {.lex_state = 26}, [1516] = {.lex_state = 26}, [1517] = {.lex_state = 26}, [1518] = {.lex_state = 26}, - [1519] = {.lex_state = 0}, + [1519] = {.lex_state = 26}, [1520] = {.lex_state = 26}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 26}, - [1523] = {.lex_state = 0}, + [1521] = {.lex_state = 26}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 26}, [1524] = {.lex_state = 26}, [1525] = {.lex_state = 26}, [1526] = {.lex_state = 26}, [1527] = {.lex_state = 26}, [1528] = {.lex_state = 26}, [1529] = {.lex_state = 26}, - [1530] = {.lex_state = 26}, + [1530] = {.lex_state = 0}, [1531] = {.lex_state = 26}, [1532] = {.lex_state = 26}, [1533] = {.lex_state = 26}, @@ -8863,35 +8859,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1536] = {.lex_state = 26}, [1537] = {.lex_state = 26}, [1538] = {.lex_state = 26}, - [1539] = {.lex_state = 26}, - [1540] = {.lex_state = 26}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, [1541] = {.lex_state = 26}, - [1542] = {.lex_state = 7}, + [1542] = {.lex_state = 0}, [1543] = {.lex_state = 26}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 26}, + [1545] = {.lex_state = 7}, [1546] = {.lex_state = 26}, [1547] = {.lex_state = 26}, [1548] = {.lex_state = 26}, [1549] = {.lex_state = 0}, [1550] = {.lex_state = 26}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, + [1551] = {.lex_state = 26}, + [1552] = {.lex_state = 26}, + [1553] = {.lex_state = 26}, [1554] = {.lex_state = 0}, [1555] = {.lex_state = 26}, [1556] = {.lex_state = 26}, - [1557] = {.lex_state = 7}, + [1557] = {.lex_state = 26}, [1558] = {.lex_state = 26}, - [1559] = {.lex_state = 0}, + [1559] = {.lex_state = 26}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 26}, [1562] = {.lex_state = 26}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, + [1564] = {.lex_state = 26}, [1565] = {.lex_state = 26}, [1566] = {.lex_state = 26}, - [1567] = {.lex_state = 26}, + [1567] = {.lex_state = 0}, [1568] = {.lex_state = 26}, [1569] = {.lex_state = 26}, [1570] = {.lex_state = 26}, @@ -8905,7 +8901,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1578] = {.lex_state = 26}, [1579] = {.lex_state = 26}, [1580] = {.lex_state = 26}, - [1581] = {.lex_state = 26}, + [1581] = {.lex_state = 0}, [1582] = {.lex_state = 26}, [1583] = {.lex_state = 26}, [1584] = {.lex_state = 26}, @@ -8914,11 +8910,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1587] = {.lex_state = 26}, [1588] = {.lex_state = 26}, [1589] = {.lex_state = 26}, - [1590] = {.lex_state = 26}, - [1591] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 26}, [1592] = {.lex_state = 26}, [1593] = {.lex_state = 26}, - [1594] = {.lex_state = 26}, + [1594] = {.lex_state = 7}, [1595] = {.lex_state = 26}, [1596] = {.lex_state = 26}, [1597] = {.lex_state = 26}, @@ -8937,69 +8933,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1610] = {.lex_state = 26}, [1611] = {.lex_state = 26}, [1612] = {.lex_state = 26}, - [1613] = {.lex_state = 0}, + [1613] = {.lex_state = 26}, [1614] = {.lex_state = 26}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 26}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 26}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 26}, + [1615] = {.lex_state = 26}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 26}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 26}, + [1620] = {.lex_state = 0}, [1621] = {.lex_state = 26}, [1622] = {.lex_state = 26}, - [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, + [1623] = {.lex_state = 26}, + [1624] = {.lex_state = 26}, [1625] = {.lex_state = 26}, - [1626] = {.lex_state = 0}, + [1626] = {.lex_state = 26}, [1627] = {.lex_state = 26}, [1628] = {.lex_state = 26}, [1629] = {.lex_state = 26}, [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 26}, + [1631] = {.lex_state = 0}, [1632] = {.lex_state = 26}, [1633] = {.lex_state = 26}, [1634] = {.lex_state = 26}, - [1635] = {.lex_state = 26}, + [1635] = {.lex_state = 0}, [1636] = {.lex_state = 26}, - [1637] = {.lex_state = 26}, - [1638] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 26}, [1639] = {.lex_state = 26}, [1640] = {.lex_state = 26}, - [1641] = {.lex_state = 26}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 26}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 26}, + [1643] = {.lex_state = 0}, [1644] = {.lex_state = 26}, [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, + [1646] = {.lex_state = 26}, [1647] = {.lex_state = 26}, [1648] = {.lex_state = 26}, [1649] = {.lex_state = 26}, [1650] = {.lex_state = 26}, [1651] = {.lex_state = 26}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 26}, + [1652] = {.lex_state = 26}, + [1653] = {.lex_state = 7}, [1654] = {.lex_state = 26}, - [1655] = {.lex_state = 0}, + [1655] = {.lex_state = 26}, [1656] = {.lex_state = 26}, [1657] = {.lex_state = 26}, [1658] = {.lex_state = 26}, [1659] = {.lex_state = 26}, [1660] = {.lex_state = 26}, [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, + [1662] = {.lex_state = 26}, [1663] = {.lex_state = 26}, [1664] = {.lex_state = 26}, [1665] = {.lex_state = 26}, - [1666] = {.lex_state = 26}, - [1667] = {.lex_state = 26}, - [1668] = {.lex_state = 26}, + [1666] = {.lex_state = 0}, + [1667] = {.lex_state = 0}, + [1668] = {.lex_state = 0}, [1669] = {.lex_state = 26}, [1670] = {.lex_state = 26}, [1671] = {.lex_state = 26}, [1672] = {.lex_state = 26}, [1673] = {.lex_state = 26}, [1674] = {.lex_state = 26}, - [1675] = {.lex_state = 0}, + [1675] = {.lex_state = 26}, [1676] = {.lex_state = 26}, [1677] = {.lex_state = 26}, [1678] = {.lex_state = 26}, @@ -9007,68 +9003,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1680] = {.lex_state = 26}, [1681] = {.lex_state = 26}, [1682] = {.lex_state = 26}, - [1683] = {.lex_state = 26}, - [1684] = {.lex_state = 26}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, [1685] = {.lex_state = 26}, - [1686] = {.lex_state = 26}, + [1686] = {.lex_state = 0}, [1687] = {.lex_state = 26}, [1688] = {.lex_state = 26}, - [1689] = {.lex_state = 26}, - [1690] = {.lex_state = 26}, + [1689] = {.lex_state = 0}, + [1690] = {.lex_state = 0}, [1691] = {.lex_state = 26}, - [1692] = {.lex_state = 0}, + [1692] = {.lex_state = 26}, [1693] = {.lex_state = 26}, [1694] = {.lex_state = 26}, [1695] = {.lex_state = 26}, - [1696] = {.lex_state = 0}, + [1696] = {.lex_state = 26}, [1697] = {.lex_state = 26}, [1698] = {.lex_state = 26}, [1699] = {.lex_state = 26}, [1700] = {.lex_state = 26}, [1701] = {.lex_state = 26}, - [1702] = {.lex_state = 26}, + [1702] = {.lex_state = 0}, [1703] = {.lex_state = 26}, [1704] = {.lex_state = 26}, [1705] = {.lex_state = 26}, [1706] = {.lex_state = 26}, - [1707] = {.lex_state = 7}, + [1707] = {.lex_state = 26}, [1708] = {.lex_state = 26}, [1709] = {.lex_state = 26}, [1710] = {.lex_state = 26}, [1711] = {.lex_state = 26}, [1712] = {.lex_state = 26}, [1713] = {.lex_state = 26}, - [1714] = {.lex_state = 26}, + [1714] = {.lex_state = 0}, [1715] = {.lex_state = 26}, [1716] = {.lex_state = 26}, - [1717] = {.lex_state = 26}, + [1717] = {.lex_state = 0}, [1718] = {.lex_state = 26}, [1719] = {.lex_state = 26}, [1720] = {.lex_state = 26}, [1721] = {.lex_state = 26}, - [1722] = {.lex_state = 0}, + [1722] = {.lex_state = 26}, [1723] = {.lex_state = 26}, - [1724] = {.lex_state = 0}, + [1724] = {.lex_state = 26}, [1725] = {.lex_state = 26}, [1726] = {.lex_state = 26}, [1727] = {.lex_state = 26}, - [1728] = {.lex_state = 26}, + [1728] = {.lex_state = 0}, [1729] = {.lex_state = 26}, - [1730] = {.lex_state = 0}, + [1730] = {.lex_state = 26}, [1731] = {.lex_state = 0}, [1732] = {.lex_state = 26}, [1733] = {.lex_state = 26}, - [1734] = {.lex_state = 26}, + [1734] = {.lex_state = 0}, [1735] = {.lex_state = 26}, [1736] = {.lex_state = 26}, [1737] = {.lex_state = 26}, - [1738] = {.lex_state = 0}, + [1738] = {.lex_state = 26}, [1739] = {.lex_state = 26}, [1740] = {.lex_state = 26}, [1741] = {.lex_state = 26}, [1742] = {.lex_state = 26}, [1743] = {.lex_state = 26}, - [1744] = {.lex_state = 26}, + [1744] = {.lex_state = 0}, [1745] = {.lex_state = 26}, [1746] = {.lex_state = 26}, [1747] = {.lex_state = 26}, @@ -9088,57 +9084,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1761] = {.lex_state = 26}, [1762] = {.lex_state = 26}, [1763] = {.lex_state = 26}, - [1764] = {.lex_state = 0}, + [1764] = {.lex_state = 26}, [1765] = {.lex_state = 26}, - [1766] = {.lex_state = 26}, + [1766] = {.lex_state = 0}, [1767] = {.lex_state = 26}, [1768] = {.lex_state = 26}, [1769] = {.lex_state = 26}, [1770] = {.lex_state = 26}, [1771] = {.lex_state = 26}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, + [1772] = {.lex_state = 26}, + [1773] = {.lex_state = 26}, [1774] = {.lex_state = 26}, [1775] = {.lex_state = 26}, [1776] = {.lex_state = 26}, [1777] = {.lex_state = 26}, [1778] = {.lex_state = 26}, - [1779] = {.lex_state = 26}, - [1780] = {.lex_state = 26}, - [1781] = {.lex_state = 26}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 26}, + [1783] = {.lex_state = 7}, [1784] = {.lex_state = 26}, [1785] = {.lex_state = 26}, [1786] = {.lex_state = 26}, [1787] = {.lex_state = 26}, [1788] = {.lex_state = 26}, - [1789] = {.lex_state = 26}, + [1789] = {.lex_state = 0}, [1790] = {.lex_state = 26}, [1791] = {.lex_state = 26}, [1792] = {.lex_state = 26}, [1793] = {.lex_state = 26}, [1794] = {.lex_state = 26}, [1795] = {.lex_state = 26}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, + [1796] = {.lex_state = 26}, + [1797] = {.lex_state = 26}, [1798] = {.lex_state = 26}, [1799] = {.lex_state = 26}, [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, [1803] = {.lex_state = 26}, - [1804] = {.lex_state = 0}, + [1804] = {.lex_state = 26}, [1805] = {.lex_state = 26}, [1806] = {.lex_state = 26}, [1807] = {.lex_state = 26}, - [1808] = {.lex_state = 7}, + [1808] = {.lex_state = 0}, [1809] = {.lex_state = 26}, [1810] = {.lex_state = 26}, [1811] = {.lex_state = 26}, [1812] = {.lex_state = 26}, - [1813] = {.lex_state = 26}, - [1814] = {.lex_state = 26}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 0}, [1815] = {.lex_state = 26}, [1816] = {.lex_state = 26}, [1817] = {.lex_state = 26}, @@ -9148,7 +9144,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1821] = {.lex_state = 26}, [1822] = {.lex_state = 26}, [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 26}, + [1824] = {.lex_state = 0}, [1825] = {.lex_state = 26}, [1826] = {.lex_state = 26}, [1827] = {.lex_state = 26}, @@ -9159,55 +9155,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1832] = {.lex_state = 26}, [1833] = {.lex_state = 26}, [1834] = {.lex_state = 26}, - [1835] = {.lex_state = 26}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 26}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 26}, + [1837] = {.lex_state = 0}, [1838] = {.lex_state = 26}, [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, [1841] = {.lex_state = 26}, [1842] = {.lex_state = 26}, - [1843] = {.lex_state = 26}, - [1844] = {.lex_state = 26}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 0}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, [1847] = {.lex_state = 26}, [1848] = {.lex_state = 26}, - [1849] = {.lex_state = 0}, + [1849] = {.lex_state = 26}, [1850] = {.lex_state = 26}, [1851] = {.lex_state = 26}, [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 26}, + [1853] = {.lex_state = 7}, [1854] = {.lex_state = 26}, [1855] = {.lex_state = 26}, [1856] = {.lex_state = 26}, [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 26}, - [1860] = {.lex_state = 0}, + [1860] = {.lex_state = 26}, [1861] = {.lex_state = 26}, [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 0}, + [1863] = {.lex_state = 26}, [1864] = {.lex_state = 26}, - [1865] = {.lex_state = 0}, + [1865] = {.lex_state = 26}, [1866] = {.lex_state = 26}, - [1867] = {.lex_state = 0}, + [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 0}, + [1870] = {.lex_state = 26}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, - [1874] = {.lex_state = 0}, + [1874] = {.lex_state = 26}, [1875] = {.lex_state = 26}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, + [1876] = {.lex_state = 26}, + [1877] = {.lex_state = 26}, + [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 26}, + [1881] = {.lex_state = 0}, [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 0}, + [1883] = {.lex_state = 26}, [1884] = {.lex_state = 26}, [1885] = {.lex_state = 26}, [1886] = {.lex_state = 26}, @@ -9220,28 +9216,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, [1895] = {.lex_state = 26}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 26}, + [1896] = {.lex_state = 26}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 26}, + [1899] = {.lex_state = 0}, [1900] = {.lex_state = 26}, - [1901] = {.lex_state = 26}, + [1901] = {.lex_state = 0}, [1902] = {.lex_state = 26}, [1903] = {.lex_state = 26}, [1904] = {.lex_state = 26}, - [1905] = {.lex_state = 26}, + [1905] = {.lex_state = 0}, [1906] = {.lex_state = 26}, - [1907] = {.lex_state = 26}, + [1907] = {.lex_state = 0}, [1908] = {.lex_state = 26}, [1909] = {.lex_state = 26}, [1910] = {.lex_state = 26}, [1911] = {.lex_state = 26}, - [1912] = {.lex_state = 0}, + [1912] = {.lex_state = 26}, [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 26}, - [1915] = {.lex_state = 0}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 26}, [1916] = {.lex_state = 26}, - [1917] = {.lex_state = 7}, + [1917] = {.lex_state = 26}, + [1918] = {.lex_state = 26}, + [1919] = {.lex_state = 26}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 26}, + [1922] = {.lex_state = 26}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 26}, + [1925] = {.lex_state = 26}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 26}, + [1928] = {.lex_state = 26}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9323,7 +9330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_private_type_declaration_token1] = ACTIONS(1), [aux_sym_private_type_declaration_token2] = ACTIONS(1), [aux_sym_private_extension_declaration_token1] = ACTIONS(1), - [aux_sym_unconstrained_array_definition_token1] = ACTIONS(1), + [aux_sym_array_type_definition_token1] = ACTIONS(1), [aux_sym_interface_type_definition_token1] = ACTIONS(1), [aux_sym_interface_type_definition_token2] = ACTIONS(1), [aux_sym_component_list_token1] = ACTIONS(1), @@ -9359,102 +9366,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(1), }, [1] = { - [sym_compilation] = STATE(1883), - [sym__name] = STATE(918), - [sym__defining_identifier_list] = STATE(1380), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), + [sym_compilation] = STATE(1905), + [sym__name] = STATE(935), + [sym__defining_identifier_list] = STATE(1899), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(462), - [sym__basic_declarative_item] = STATE(462), - [sym__basic_declaration] = STATE(462), - [sym__package_declaration] = STATE(462), - [sym_package_specification] = STATE(1873), - [sym_with_clause] = STATE(462), - [sym_use_clause] = STATE(462), - [sym_subunit] = STATE(462), - [sym__proper_body] = STATE(462), - [sym_subprogram_body] = STATE(462), - [sym_package_body] = STATE(462), - [sym__type_declaration] = STATE(462), - [sym_full_type_declaration] = STATE(462), - [sym_private_type_declaration] = STATE(462), - [sym_private_extension_declaration] = STATE(462), - [sym_incomplete_type_declaration] = STATE(462), - [sym__aspect_clause] = STATE(462), - [sym_at_clause] = STATE(462), - [sym_attribute_definition_clause] = STATE(462), - [sym_body_stub] = STATE(462), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(462), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(462), - [sym_protected_body_stub] = STATE(321), - [sym_entry_declaration] = STATE(462), - [sym_enumeration_representation_clause] = STATE(462), - [sym_exception_declaration] = STATE(462), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(462), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(462), - [sym_generic_package_declaration] = STATE(462), - [sym_generic_instantiation] = STATE(462), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_procedure_declaration] = STATE(462), - [sym_null_statement] = STATE(165), - [sym_number_declaration] = STATE(462), - [sym_object_declaration] = STATE(462), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(902), - [sym_pragma_g] = STATE(165), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(462), - [sym__renaming_declaration] = STATE(462), - [sym_object_renaming_declaration] = STATE(462), - [sym_exception_renaming_declaration] = STATE(462), - [sym_package_renaming_declaration] = STATE(462), - [sym_subprogram_renaming_declaration] = STATE(462), - [sym_generic_renaming_declaration] = STATE(462), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(462), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [sym_subprogram_declaration] = STATE(462), - [sym_expression_function_declaration] = STATE(462), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(462), + [sym__declarative_item] = STATE(466), + [sym__basic_declarative_item] = STATE(466), + [sym__basic_declaration] = STATE(466), + [sym__package_declaration] = STATE(466), + [sym_package_specification] = STATE(1895), + [sym_with_clause] = STATE(466), + [sym_use_clause] = STATE(466), + [sym_subunit] = STATE(466), + [sym__proper_body] = STATE(466), + [sym_subprogram_body] = STATE(466), + [sym_package_body] = STATE(466), + [sym__type_declaration] = STATE(466), + [sym_full_type_declaration] = STATE(466), + [sym_private_type_declaration] = STATE(466), + [sym_private_extension_declaration] = STATE(466), + [sym_incomplete_type_declaration] = STATE(466), + [sym__aspect_clause] = STATE(466), + [sym_at_clause] = STATE(466), + [sym_attribute_definition_clause] = STATE(466), + [sym_body_stub] = STATE(466), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(466), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(466), + [sym_protected_body_stub] = STATE(449), + [sym_entry_declaration] = STATE(466), + [sym_enumeration_representation_clause] = STATE(466), + [sym_exception_declaration] = STATE(466), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(466), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(466), + [sym_generic_package_declaration] = STATE(466), + [sym_generic_instantiation] = STATE(466), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_procedure_declaration] = STATE(466), + [sym_null_statement] = STATE(104), + [sym_number_declaration] = STATE(466), + [sym_object_declaration] = STATE(466), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(942), + [sym_pragma_g] = STATE(104), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(466), + [sym__renaming_declaration] = STATE(466), + [sym_object_renaming_declaration] = STATE(466), + [sym_exception_renaming_declaration] = STATE(466), + [sym_package_renaming_declaration] = STATE(466), + [sym_subprogram_renaming_declaration] = STATE(466), + [sym_generic_renaming_declaration] = STATE(466), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(466), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [sym_subprogram_declaration] = STATE(466), + [sym_expression_function_declaration] = STATE(466), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(466), [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -9499,101 +9506,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [2] = { - [sym__name] = STATE(918), - [sym__defining_identifier_list] = STATE(1380), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), + [sym__name] = STATE(935), + [sym__defining_identifier_list] = STATE(1899), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(462), - [sym__basic_declarative_item] = STATE(462), - [sym__basic_declaration] = STATE(462), - [sym__package_declaration] = STATE(462), - [sym_package_specification] = STATE(1873), - [sym_with_clause] = STATE(462), - [sym_use_clause] = STATE(462), - [sym_subunit] = STATE(462), - [sym__proper_body] = STATE(462), - [sym_subprogram_body] = STATE(462), - [sym_package_body] = STATE(462), - [sym__type_declaration] = STATE(462), - [sym_full_type_declaration] = STATE(462), - [sym_private_type_declaration] = STATE(462), - [sym_private_extension_declaration] = STATE(462), - [sym_incomplete_type_declaration] = STATE(462), - [sym__aspect_clause] = STATE(462), - [sym_at_clause] = STATE(462), - [sym_attribute_definition_clause] = STATE(462), - [sym_body_stub] = STATE(462), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(462), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(462), - [sym_protected_body_stub] = STATE(321), - [sym_entry_declaration] = STATE(462), - [sym_enumeration_representation_clause] = STATE(462), - [sym_exception_declaration] = STATE(462), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(462), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(462), - [sym_generic_package_declaration] = STATE(462), - [sym_generic_instantiation] = STATE(462), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_procedure_declaration] = STATE(462), - [sym_null_statement] = STATE(165), - [sym_number_declaration] = STATE(462), - [sym_object_declaration] = STATE(462), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(902), - [sym_pragma_g] = STATE(165), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(462), - [sym__renaming_declaration] = STATE(462), - [sym_object_renaming_declaration] = STATE(462), - [sym_exception_renaming_declaration] = STATE(462), - [sym_package_renaming_declaration] = STATE(462), - [sym_subprogram_renaming_declaration] = STATE(462), - [sym_generic_renaming_declaration] = STATE(462), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(462), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [sym_subprogram_declaration] = STATE(462), - [sym_expression_function_declaration] = STATE(462), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(462), + [sym__declarative_item] = STATE(466), + [sym__basic_declarative_item] = STATE(466), + [sym__basic_declaration] = STATE(466), + [sym__package_declaration] = STATE(466), + [sym_package_specification] = STATE(1895), + [sym_with_clause] = STATE(466), + [sym_use_clause] = STATE(466), + [sym_subunit] = STATE(466), + [sym__proper_body] = STATE(466), + [sym_subprogram_body] = STATE(466), + [sym_package_body] = STATE(466), + [sym__type_declaration] = STATE(466), + [sym_full_type_declaration] = STATE(466), + [sym_private_type_declaration] = STATE(466), + [sym_private_extension_declaration] = STATE(466), + [sym_incomplete_type_declaration] = STATE(466), + [sym__aspect_clause] = STATE(466), + [sym_at_clause] = STATE(466), + [sym_attribute_definition_clause] = STATE(466), + [sym_body_stub] = STATE(466), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(466), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(466), + [sym_protected_body_stub] = STATE(449), + [sym_entry_declaration] = STATE(466), + [sym_enumeration_representation_clause] = STATE(466), + [sym_exception_declaration] = STATE(466), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(466), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(466), + [sym_generic_package_declaration] = STATE(466), + [sym_generic_instantiation] = STATE(466), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_procedure_declaration] = STATE(466), + [sym_null_statement] = STATE(104), + [sym_number_declaration] = STATE(466), + [sym_object_declaration] = STATE(466), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(942), + [sym_pragma_g] = STATE(104), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(466), + [sym__renaming_declaration] = STATE(466), + [sym_object_renaming_declaration] = STATE(466), + [sym_exception_renaming_declaration] = STATE(466), + [sym_package_renaming_declaration] = STATE(466), + [sym_subprogram_renaming_declaration] = STATE(466), + [sym_generic_renaming_declaration] = STATE(466), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(466), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [sym_subprogram_declaration] = STATE(466), + [sym_expression_function_declaration] = STATE(466), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(466), [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [ts_builtin_sym_end] = ACTIONS(83), [sym_identifier] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -9638,101 +9645,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(196), }, [3] = { - [sym__name] = STATE(918), - [sym__defining_identifier_list] = STATE(1380), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), + [sym__name] = STATE(935), + [sym__defining_identifier_list] = STATE(1899), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(462), - [sym__basic_declarative_item] = STATE(462), - [sym__basic_declaration] = STATE(462), - [sym__package_declaration] = STATE(462), - [sym_package_specification] = STATE(1873), - [sym_with_clause] = STATE(462), - [sym_use_clause] = STATE(462), - [sym_subunit] = STATE(462), - [sym__proper_body] = STATE(462), - [sym_subprogram_body] = STATE(462), - [sym_package_body] = STATE(462), - [sym__type_declaration] = STATE(462), - [sym_full_type_declaration] = STATE(462), - [sym_private_type_declaration] = STATE(462), - [sym_private_extension_declaration] = STATE(462), - [sym_incomplete_type_declaration] = STATE(462), - [sym__aspect_clause] = STATE(462), - [sym_at_clause] = STATE(462), - [sym_attribute_definition_clause] = STATE(462), - [sym_body_stub] = STATE(462), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(462), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(462), - [sym_protected_body_stub] = STATE(321), - [sym_entry_declaration] = STATE(462), - [sym_enumeration_representation_clause] = STATE(462), - [sym_exception_declaration] = STATE(462), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(462), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(462), - [sym_generic_package_declaration] = STATE(462), - [sym_generic_instantiation] = STATE(462), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_procedure_declaration] = STATE(462), - [sym_null_statement] = STATE(165), - [sym_number_declaration] = STATE(462), - [sym_object_declaration] = STATE(462), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(902), - [sym_pragma_g] = STATE(165), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(462), - [sym__renaming_declaration] = STATE(462), - [sym_object_renaming_declaration] = STATE(462), - [sym_exception_renaming_declaration] = STATE(462), - [sym_package_renaming_declaration] = STATE(462), - [sym_subprogram_renaming_declaration] = STATE(462), - [sym_generic_renaming_declaration] = STATE(462), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(462), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [sym_subprogram_declaration] = STATE(462), - [sym_expression_function_declaration] = STATE(462), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(462), + [sym__declarative_item] = STATE(466), + [sym__basic_declarative_item] = STATE(466), + [sym__basic_declaration] = STATE(466), + [sym__package_declaration] = STATE(466), + [sym_package_specification] = STATE(1895), + [sym_with_clause] = STATE(466), + [sym_use_clause] = STATE(466), + [sym_subunit] = STATE(466), + [sym__proper_body] = STATE(466), + [sym_subprogram_body] = STATE(466), + [sym_package_body] = STATE(466), + [sym__type_declaration] = STATE(466), + [sym_full_type_declaration] = STATE(466), + [sym_private_type_declaration] = STATE(466), + [sym_private_extension_declaration] = STATE(466), + [sym_incomplete_type_declaration] = STATE(466), + [sym__aspect_clause] = STATE(466), + [sym_at_clause] = STATE(466), + [sym_attribute_definition_clause] = STATE(466), + [sym_body_stub] = STATE(466), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(466), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(466), + [sym_protected_body_stub] = STATE(449), + [sym_entry_declaration] = STATE(466), + [sym_enumeration_representation_clause] = STATE(466), + [sym_exception_declaration] = STATE(466), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(466), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(466), + [sym_generic_package_declaration] = STATE(466), + [sym_generic_instantiation] = STATE(466), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_procedure_declaration] = STATE(466), + [sym_null_statement] = STATE(104), + [sym_number_declaration] = STATE(466), + [sym_object_declaration] = STATE(466), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(942), + [sym_pragma_g] = STATE(104), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(466), + [sym__renaming_declaration] = STATE(466), + [sym_object_renaming_declaration] = STATE(466), + [sym_exception_renaming_declaration] = STATE(466), + [sym_package_renaming_declaration] = STATE(466), + [sym_subprogram_renaming_declaration] = STATE(466), + [sym_generic_renaming_declaration] = STATE(466), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(466), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [sym_subprogram_declaration] = STATE(466), + [sym_expression_function_declaration] = STATE(466), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(466), [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [ts_builtin_sym_end] = ACTIONS(199), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -9777,63 +9784,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [4] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1768), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1510), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -9854,63 +9861,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [5] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1507), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1707), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -9931,215 +9938,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [6] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1327), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(217), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(219), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [7] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1768), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(207), - [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(209), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [8] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1507), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1707), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10158,64 +10013,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [9] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1847), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [7] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1426), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(217), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(219), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [8] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1913), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10234,64 +10165,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [10] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1455), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [9] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1469), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10310,146 +10241,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [11] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1465), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [10] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1510), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(229), + [aux_sym_subprogram_body_token1] = ACTIONS(207), [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(209), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, + [11] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(11), + [sym__basic_declarative_item] = STATE(11), + [sym__basic_declaration] = STATE(11), + [sym__package_declaration] = STATE(11), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(11), + [sym__proper_body] = STATE(11), + [sym_subprogram_body] = STATE(11), + [sym_package_body] = STATE(11), + [sym__type_declaration] = STATE(11), + [sym_full_type_declaration] = STATE(11), + [sym_private_type_declaration] = STATE(11), + [sym_private_extension_declaration] = STATE(11), + [sym_incomplete_type_declaration] = STATE(11), + [sym__aspect_clause] = STATE(11), + [sym_at_clause] = STATE(11), + [sym_attribute_definition_clause] = STATE(11), + [sym_body_stub] = STATE(11), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(11), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(11), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(11), + [sym_enumeration_representation_clause] = STATE(11), + [sym_exception_declaration] = STATE(11), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(11), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(11), + [sym_generic_package_declaration] = STATE(11), + [sym_generic_instantiation] = STATE(11), + [sym_null_procedure_declaration] = STATE(11), + [sym_number_declaration] = STATE(11), + [sym_object_declaration] = STATE(11), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(11), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(11), + [sym__renaming_declaration] = STATE(11), + [sym_object_renaming_declaration] = STATE(11), + [sym_exception_renaming_declaration] = STATE(11), + [sym_package_renaming_declaration] = STATE(11), + [sym_subprogram_renaming_declaration] = STATE(11), + [sym_generic_renaming_declaration] = STATE(11), + [sym_subprogram_declaration] = STATE(11), + [sym_expression_function_declaration] = STATE(11), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(11), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(232), + [aux_sym_iterated_element_association_token2] = ACTIONS(235), + [aux_sym_package_specification_token1] = ACTIONS(238), + [aux_sym_package_specification_token3] = ACTIONS(241), + [aux_sym_use_clause_token2] = ACTIONS(243), + [aux_sym_subprogram_body_token1] = ACTIONS(241), + [aux_sym_relation_membership_token1] = ACTIONS(246), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(249), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(252), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(255), + [aux_sym_interface_type_definition_token1] = ACTIONS(258), + [aux_sym_generic_formal_part_token1] = ACTIONS(261), + [aux_sym_global_mode_token1] = ACTIONS(264), + [aux_sym_pragma_g_token1] = ACTIONS(267), + [aux_sym_subtype_declaration_token1] = ACTIONS(270), + }, [12] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1875), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1840), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(231), + [aux_sym_subprogram_body_token1] = ACTIONS(273), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -10461,70 +10468,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [13] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1832), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1654), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(233), + [aux_sym_subprogram_body_token1] = ACTIONS(275), [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), @@ -10536,63 +10543,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [14] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1768), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_unary_adding_operator] = STATE(505), + [sym__name] = STATE(499), + [sym__attribute_reference] = STATE(499), + [sym__reduction_attribute_reference] = STATE(499), + [sym_value_sequence] = STATE(1897), + [sym_iterated_element_association] = STATE(1240), + [sym_function_call] = STATE(499), + [sym_qualified_expression] = STATE(499), + [sym__subtype_indication] = STATE(1374), + [sym_range_g] = STATE(1360), + [sym_expression] = STATE(912), + [sym__relation] = STATE(554), + [sym_relation_membership] = STATE(554), + [sym_raise_expression] = STATE(554), + [sym__simple_expression] = STATE(585), + [sym_term] = STATE(507), + [sym__factor] = STATE(484), + [sym_factor_power] = STATE(484), + [sym_factor_abs] = STATE(484), + [sym_factor_not] = STATE(484), + [sym__parenthesized_expression] = STATE(486), + [sym__primary] = STATE(486), + [sym_primary_null] = STATE(486), + [sym_allocator] = STATE(486), + [sym__conditional_expression] = STATE(1643), + [sym_quantified_expression] = STATE(1643), + [sym_declare_expression] = STATE(1643), + [sym_case_expression] = STATE(1643), + [sym_component_choice_list] = STATE(1641), + [sym__aggregate] = STATE(486), + [sym__delta_aggregate] = STATE(486), + [sym_extension_aggregate] = STATE(486), + [sym_record_delta_aggregate] = STATE(486), + [sym_array_delta_aggregate] = STATE(486), + [sym_record_aggregate] = STATE(486), + [sym_record_component_association_list] = STATE(1637), + [sym__named_record_component_association] = STATE(1248), + [sym_null_exclusion] = STATE(800), + [sym__array_aggregate] = STATE(486), + [sym_positional_array_aggregate] = STATE(486), + [sym_null_array_aggregate] = STATE(486), + [sym_named_array_aggregate] = STATE(486), + [sym__array_component_association_list] = STATE(1635), + [sym_array_component_association] = STATE(1034), + [sym_discrete_choice_list] = STATE(1631), + [sym_discrete_choice] = STATE(1262), + [sym_global_aspect_element] = STATE(1288), + [sym_global_mode] = STATE(709), + [sym_non_empty_mode] = STATE(815), + [sym_if_expression] = STATE(1643), + [sym_identifier] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(279), + [sym_character_literal] = ACTIONS(279), + [sym_numeric_literal] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(285), + [sym_target_name] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(289), + [aux_sym_chunk_specification_token1] = ACTIONS(291), + [aux_sym_iterated_element_association_token1] = ACTIONS(293), + [aux_sym_relation_membership_token1] = ACTIONS(295), + [aux_sym_raise_expression_token1] = ACTIONS(297), + [aux_sym_factor_abs_token1] = ACTIONS(299), + [aux_sym_primary_null_token1] = ACTIONS(301), + [aux_sym_allocator_token1] = ACTIONS(303), + [aux_sym_declare_expression_token1] = ACTIONS(305), + [aux_sym_case_expression_token1] = ACTIONS(307), + [aux_sym_positional_array_aggregate_token1] = ACTIONS(309), + [aux_sym_global_mode_token1] = ACTIONS(311), + [aux_sym_non_empty_mode_token1] = ACTIONS(313), + [aux_sym_if_expression_token1] = ACTIONS(315), + }, + [15] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1799), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(317), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [16] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(11), + [sym__basic_declarative_item] = STATE(11), + [sym__basic_declaration] = STATE(11), + [sym__package_declaration] = STATE(11), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(11), + [sym__proper_body] = STATE(11), + [sym_subprogram_body] = STATE(11), + [sym_package_body] = STATE(11), + [sym__type_declaration] = STATE(11), + [sym_full_type_declaration] = STATE(11), + [sym_private_type_declaration] = STATE(11), + [sym_private_extension_declaration] = STATE(11), + [sym_incomplete_type_declaration] = STATE(11), + [sym__aspect_clause] = STATE(11), + [sym_at_clause] = STATE(11), + [sym_attribute_definition_clause] = STATE(11), + [sym_body_stub] = STATE(11), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(11), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(11), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(11), + [sym_enumeration_representation_clause] = STATE(11), + [sym_exception_declaration] = STATE(11), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(11), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(11), + [sym_generic_package_declaration] = STATE(11), + [sym_generic_instantiation] = STATE(11), + [sym_null_procedure_declaration] = STATE(11), + [sym_number_declaration] = STATE(11), + [sym_object_declaration] = STATE(11), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(11), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(11), + [sym__renaming_declaration] = STATE(11), + [sym_object_renaming_declaration] = STATE(11), + [sym_exception_renaming_declaration] = STATE(11), + [sym_package_renaming_declaration] = STATE(11), + [sym_subprogram_renaming_declaration] = STATE(11), + [sym_generic_renaming_declaration] = STATE(11), + [sym_subprogram_declaration] = STATE(11), + [sym_expression_function_declaration] = STATE(11), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(11), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(319), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(319), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [17] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1822), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(321), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [18] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1510), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10610,439 +10917,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [15] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1760), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(235), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [16] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1598), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(237), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [17] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(17), - [sym__basic_declarative_item] = STATE(17), - [sym__basic_declaration] = STATE(17), - [sym__package_declaration] = STATE(17), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(17), - [sym__proper_body] = STATE(17), - [sym_subprogram_body] = STATE(17), - [sym_package_body] = STATE(17), - [sym__type_declaration] = STATE(17), - [sym_full_type_declaration] = STATE(17), - [sym_private_type_declaration] = STATE(17), - [sym_private_extension_declaration] = STATE(17), - [sym_incomplete_type_declaration] = STATE(17), - [sym__aspect_clause] = STATE(17), - [sym_at_clause] = STATE(17), - [sym_attribute_definition_clause] = STATE(17), - [sym_body_stub] = STATE(17), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(17), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(17), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(17), - [sym_enumeration_representation_clause] = STATE(17), - [sym_exception_declaration] = STATE(17), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(17), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(17), - [sym_generic_package_declaration] = STATE(17), - [sym_generic_instantiation] = STATE(17), - [sym_null_procedure_declaration] = STATE(17), - [sym_number_declaration] = STATE(17), - [sym_object_declaration] = STATE(17), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(17), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(17), - [sym__renaming_declaration] = STATE(17), - [sym_object_renaming_declaration] = STATE(17), - [sym_exception_renaming_declaration] = STATE(17), - [sym_package_renaming_declaration] = STATE(17), - [sym_subprogram_renaming_declaration] = STATE(17), - [sym_generic_renaming_declaration] = STATE(17), - [sym_subprogram_declaration] = STATE(17), - [sym_expression_function_declaration] = STATE(17), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(17), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(239), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(242), - [aux_sym_iterated_element_association_token2] = ACTIONS(245), - [aux_sym_package_specification_token1] = ACTIONS(248), - [aux_sym_package_specification_token3] = ACTIONS(251), - [aux_sym_use_clause_token2] = ACTIONS(253), - [aux_sym_subprogram_body_token1] = ACTIONS(251), - [aux_sym_relation_membership_token1] = ACTIONS(256), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(259), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(262), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(265), - [aux_sym_interface_type_definition_token1] = ACTIONS(268), - [aux_sym_generic_formal_part_token1] = ACTIONS(271), - [aux_sym_global_mode_token1] = ACTIONS(274), - [aux_sym_pragma_g_token1] = ACTIONS(277), - [aux_sym_subtype_declaration_token1] = ACTIONS(280), - }, - [18] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1507), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(213), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, [19] = { - [sym_unary_adding_operator] = STATE(507), - [sym__name] = STATE(500), - [sym__attribute_reference] = STATE(500), - [sym__reduction_attribute_reference] = STATE(500), - [sym_value_sequence] = STATE(1876), - [sym_iterated_element_association] = STATE(1296), - [sym_function_call] = STATE(500), - [sym_qualified_expression] = STATE(500), - [sym__subtype_indication] = STATE(1333), - [sym_range_g] = STATE(1329), - [sym_expression] = STATE(910), - [sym__relation] = STATE(560), - [sym_relation_membership] = STATE(560), - [sym_raise_expression] = STATE(560), - [sym__simple_expression] = STATE(584), - [sym_term] = STATE(503), - [sym__factor] = STATE(485), - [sym_factor_power] = STATE(485), - [sym_factor_abs] = STATE(485), - [sym_factor_not] = STATE(485), - [sym__parenthesized_expression] = STATE(487), - [sym__primary] = STATE(487), - [sym_primary_null] = STATE(487), - [sym_allocator] = STATE(487), - [sym__conditional_expression] = STATE(1563), - [sym_quantified_expression] = STATE(1563), - [sym_declare_expression] = STATE(1563), - [sym_case_expression] = STATE(1563), - [sym_component_choice_list] = STATE(1560), - [sym__aggregate] = STATE(487), - [sym__delta_aggregate] = STATE(487), - [sym_extension_aggregate] = STATE(487), - [sym_record_delta_aggregate] = STATE(487), - [sym_array_delta_aggregate] = STATE(487), - [sym_record_aggregate] = STATE(487), - [sym_record_component_association_list] = STATE(1559), - [sym__named_record_component_association] = STATE(1307), - [sym_null_exclusion] = STATE(786), - [sym__array_aggregate] = STATE(487), - [sym_positional_array_aggregate] = STATE(487), - [sym_null_array_aggregate] = STATE(487), - [sym_named_array_aggregate] = STATE(487), - [sym__array_component_association_list] = STATE(1554), - [sym_array_component_association] = STATE(1084), - [sym_discrete_choice_list] = STATE(1549), - [sym_discrete_choice] = STATE(1317), - [sym_global_aspect_element] = STATE(1272), - [sym_global_mode] = STATE(729), - [sym_non_empty_mode] = STATE(820), - [sym_if_expression] = STATE(1563), - [sym_identifier] = ACTIONS(283), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(285), - [sym_character_literal] = ACTIONS(285), - [sym_numeric_literal] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(291), - [sym_target_name] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [aux_sym_chunk_specification_token1] = ACTIONS(297), - [aux_sym_iterated_element_association_token1] = ACTIONS(299), - [aux_sym_relation_membership_token1] = ACTIONS(301), - [aux_sym_raise_expression_token1] = ACTIONS(303), - [aux_sym_factor_abs_token1] = ACTIONS(305), - [aux_sym_primary_null_token1] = ACTIONS(307), - [aux_sym_allocator_token1] = ACTIONS(309), - [aux_sym_declare_expression_token1] = ACTIONS(311), - [aux_sym_case_expression_token1] = ACTIONS(313), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(315), - [aux_sym_global_mode_token1] = ACTIONS(317), - [aux_sym_non_empty_mode_token1] = ACTIONS(319), - [aux_sym_if_expression_token1] = ACTIONS(321), - }, - [20] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1752), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1524), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11060,64 +10992,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [21] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1765), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [20] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1885), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11135,69 +11067,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [22] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(17), - [sym__basic_declarative_item] = STATE(17), - [sym__basic_declaration] = STATE(17), - [sym__package_declaration] = STATE(17), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(17), - [sym__proper_body] = STATE(17), - [sym_subprogram_body] = STATE(17), - [sym_package_body] = STATE(17), - [sym__type_declaration] = STATE(17), - [sym_full_type_declaration] = STATE(17), - [sym_private_type_declaration] = STATE(17), - [sym_private_extension_declaration] = STATE(17), - [sym_incomplete_type_declaration] = STATE(17), - [sym__aspect_clause] = STATE(17), - [sym_at_clause] = STATE(17), - [sym_attribute_definition_clause] = STATE(17), - [sym_body_stub] = STATE(17), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(17), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(17), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(17), - [sym_enumeration_representation_clause] = STATE(17), - [sym_exception_declaration] = STATE(17), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(17), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(17), - [sym_generic_package_declaration] = STATE(17), - [sym_generic_instantiation] = STATE(17), - [sym_null_procedure_declaration] = STATE(17), - [sym_number_declaration] = STATE(17), - [sym_object_declaration] = STATE(17), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(17), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(17), - [sym__renaming_declaration] = STATE(17), - [sym_object_renaming_declaration] = STATE(17), - [sym_exception_renaming_declaration] = STATE(17), - [sym_package_renaming_declaration] = STATE(17), - [sym_subprogram_renaming_declaration] = STATE(17), - [sym_generic_renaming_declaration] = STATE(17), - [sym_subprogram_declaration] = STATE(17), - [sym_expression_function_declaration] = STATE(17), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(17), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(17), + [21] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1771), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(327), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_subprogram_body_token1] = ACTIONS(327), [aux_sym_relation_membership_token1] = ACTIONS(31), @@ -11210,64 +11142,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, + [22] = { + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1707), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(213), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, [23] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(22), - [sym__basic_declarative_item] = STATE(22), - [sym__basic_declaration] = STATE(22), - [sym__package_declaration] = STATE(22), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(22), - [sym__proper_body] = STATE(22), - [sym_subprogram_body] = STATE(22), - [sym_package_body] = STATE(22), - [sym__type_declaration] = STATE(22), - [sym_full_type_declaration] = STATE(22), - [sym_private_type_declaration] = STATE(22), - [sym_private_extension_declaration] = STATE(22), - [sym_incomplete_type_declaration] = STATE(22), - [sym__aspect_clause] = STATE(22), - [sym_at_clause] = STATE(22), - [sym_attribute_definition_clause] = STATE(22), - [sym_body_stub] = STATE(22), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(22), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(22), - [sym_protected_body_stub] = STATE(321), - [sym__declarative_item_pragma] = STATE(22), - [sym_non_empty_declarative_part] = STATE(1847), - [sym_enumeration_representation_clause] = STATE(22), - [sym_exception_declaration] = STATE(22), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(22), - [sym_generic_package_declaration] = STATE(22), - [sym_generic_instantiation] = STATE(22), - [sym_null_procedure_declaration] = STATE(22), - [sym_number_declaration] = STATE(22), - [sym_object_declaration] = STATE(22), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_pragma_g] = STATE(22), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(22), - [sym__renaming_declaration] = STATE(22), - [sym_object_renaming_declaration] = STATE(22), - [sym_exception_renaming_declaration] = STATE(22), - [sym_package_renaming_declaration] = STATE(22), - [sym_subprogram_renaming_declaration] = STATE(22), - [sym_generic_renaming_declaration] = STATE(22), - [sym_subprogram_declaration] = STATE(22), - [sym_expression_function_declaration] = STATE(22), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(22), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(449), + [sym__declarative_item_pragma] = STATE(16), + [sym_non_empty_declarative_part] = STATE(1913), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11286,44 +11293,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [24] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(332), @@ -11358,42 +11365,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(394), }, [25] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), [sym_label] = STATE(26), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__simple_statement] = STATE(165), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(26), [sym_identifier] = ACTIONS(397), @@ -11430,41 +11437,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [26] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), [sym_label] = STATE(512), - [sym_null_statement] = STATE(163), - [sym_pragma_g] = STATE(163), - [sym__simple_statement] = STATE(163), - [sym__compound_statement] = STATE(163), - [sym__select_statement] = STATE(163), - [sym_asynchronous_select] = STATE(163), - [sym_conditional_entry_call] = STATE(163), - [sym_timed_entry_call] = STATE(163), - [sym_selective_accept] = STATE(163), - [sym_abort_statement] = STATE(163), - [sym_requeue_statement] = STATE(163), - [sym_accept_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_block_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_exit_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__delay_statement] = STATE(163), - [sym_delay_until_statement] = STATE(163), - [sym_delay_relative_statement] = STATE(163), - [sym_simple_return_statement] = STATE(163), - [sym_extended_return_statement] = STATE(163), - [sym_procedure_call_statement] = STATE(163), - [sym_raise_statement] = STATE(163), - [sym_loop_statement] = STATE(163), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(163), + [sym_null_statement] = STATE(164), + [sym_pragma_g] = STATE(164), + [sym__simple_statement] = STATE(164), + [sym__compound_statement] = STATE(164), + [sym__select_statement] = STATE(164), + [sym_asynchronous_select] = STATE(164), + [sym_conditional_entry_call] = STATE(164), + [sym_timed_entry_call] = STATE(164), + [sym_selective_accept] = STATE(164), + [sym_abort_statement] = STATE(164), + [sym_requeue_statement] = STATE(164), + [sym_accept_statement] = STATE(164), + [sym_case_statement] = STATE(164), + [sym_block_statement] = STATE(164), + [sym_if_statement] = STATE(164), + [sym_exit_statement] = STATE(164), + [sym_goto_statement] = STATE(164), + [sym__delay_statement] = STATE(164), + [sym_delay_until_statement] = STATE(164), + [sym_delay_relative_statement] = STATE(164), + [sym_simple_return_statement] = STATE(164), + [sym_extended_return_statement] = STATE(164), + [sym_procedure_call_statement] = STATE(164), + [sym_raise_statement] = STATE(164), + [sym_loop_statement] = STATE(164), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(164), [aux_sym__sequence_of_statements_repeat2] = STATE(512), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), @@ -11500,59 +11507,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [27] = { - [sym__defining_identifier_list] = STATE(1380), - [sym__declarative_item] = STATE(468), - [sym__basic_declarative_item] = STATE(468), - [sym__basic_declaration] = STATE(468), - [sym__package_declaration] = STATE(468), - [sym_package_specification] = STATE(1873), - [sym_use_clause] = STATE(468), - [sym__proper_body] = STATE(468), - [sym_subprogram_body] = STATE(468), - [sym_package_body] = STATE(468), - [sym__type_declaration] = STATE(468), - [sym_full_type_declaration] = STATE(468), - [sym_private_type_declaration] = STATE(468), - [sym_private_extension_declaration] = STATE(468), - [sym_incomplete_type_declaration] = STATE(468), - [sym__aspect_clause] = STATE(468), - [sym_at_clause] = STATE(468), - [sym_attribute_definition_clause] = STATE(468), - [sym_body_stub] = STATE(468), - [sym_subprogram_body_stub] = STATE(321), - [sym_package_body_stub] = STATE(321), - [sym_task_body] = STATE(468), - [sym_task_body_stub] = STATE(321), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(326), - [sym_protected_body] = STATE(468), - [sym_protected_body_stub] = STATE(321), - [sym_enumeration_representation_clause] = STATE(468), - [sym_exception_declaration] = STATE(468), - [sym_function_specification] = STATE(1020), - [sym__generic_declaration] = STATE(468), - [sym_generic_formal_part] = STATE(885), - [sym_generic_subprogram_declaration] = STATE(468), - [sym_generic_package_declaration] = STATE(468), - [sym_generic_instantiation] = STATE(468), - [sym_null_procedure_declaration] = STATE(468), - [sym_number_declaration] = STATE(468), - [sym_object_declaration] = STATE(468), - [sym_single_task_declaration] = STATE(326), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(977), - [sym_procedure_specification] = STATE(1044), - [sym_record_representation_clause] = STATE(468), - [sym__renaming_declaration] = STATE(468), - [sym_object_renaming_declaration] = STATE(468), - [sym_exception_renaming_declaration] = STATE(468), - [sym_package_renaming_declaration] = STATE(468), - [sym_subprogram_renaming_declaration] = STATE(468), - [sym_generic_renaming_declaration] = STATE(468), - [sym_subprogram_declaration] = STATE(468), - [sym_expression_function_declaration] = STATE(468), - [sym__subprogram_specification] = STATE(969), - [sym_subtype_declaration] = STATE(468), + [sym__defining_identifier_list] = STATE(1899), + [sym__declarative_item] = STATE(463), + [sym__basic_declarative_item] = STATE(463), + [sym__basic_declaration] = STATE(463), + [sym__package_declaration] = STATE(463), + [sym_package_specification] = STATE(1895), + [sym_use_clause] = STATE(463), + [sym__proper_body] = STATE(463), + [sym_subprogram_body] = STATE(463), + [sym_package_body] = STATE(463), + [sym__type_declaration] = STATE(463), + [sym_full_type_declaration] = STATE(463), + [sym_private_type_declaration] = STATE(463), + [sym_private_extension_declaration] = STATE(463), + [sym_incomplete_type_declaration] = STATE(463), + [sym__aspect_clause] = STATE(463), + [sym_at_clause] = STATE(463), + [sym_attribute_definition_clause] = STATE(463), + [sym_body_stub] = STATE(463), + [sym_subprogram_body_stub] = STATE(449), + [sym_package_body_stub] = STATE(449), + [sym_task_body] = STATE(463), + [sym_task_body_stub] = STATE(449), + [sym_protected_type_declaration] = STATE(452), + [sym_single_protected_declaration] = STATE(453), + [sym_protected_body] = STATE(463), + [sym_protected_body_stub] = STATE(449), + [sym_enumeration_representation_clause] = STATE(463), + [sym_exception_declaration] = STATE(463), + [sym_function_specification] = STATE(1087), + [sym__generic_declaration] = STATE(463), + [sym_generic_formal_part] = STATE(888), + [sym_generic_subprogram_declaration] = STATE(463), + [sym_generic_package_declaration] = STATE(463), + [sym_generic_instantiation] = STATE(463), + [sym_null_procedure_declaration] = STATE(463), + [sym_number_declaration] = STATE(463), + [sym_object_declaration] = STATE(463), + [sym_single_task_declaration] = STATE(453), + [sym_task_type_declaration] = STATE(452), + [sym_overriding_indicator] = STATE(986), + [sym_procedure_specification] = STATE(1011), + [sym_record_representation_clause] = STATE(463), + [sym__renaming_declaration] = STATE(463), + [sym_object_renaming_declaration] = STATE(463), + [sym_exception_renaming_declaration] = STATE(463), + [sym_package_renaming_declaration] = STATE(463), + [sym_subprogram_renaming_declaration] = STATE(463), + [sym_generic_renaming_declaration] = STATE(463), + [sym_subprogram_declaration] = STATE(463), + [sym_expression_function_declaration] = STATE(463), + [sym__subprogram_specification] = STATE(965), + [sym_subtype_declaration] = STATE(463), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11570,45 +11577,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [28] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1134), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1305), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11639,114 +11646,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [29] = { - [sym_unary_adding_operator] = STATE(507), - [sym__name] = STATE(500), - [sym__attribute_reference] = STATE(500), - [sym__reduction_attribute_reference] = STATE(500), - [sym_value_sequence] = STATE(1876), - [sym_iterated_element_association] = STATE(1296), - [sym_function_call] = STATE(500), - [sym_qualified_expression] = STATE(500), - [sym__subtype_indication] = STATE(1333), - [sym_range_g] = STATE(1329), - [sym_expression] = STATE(910), - [sym__relation] = STATE(560), - [sym_relation_membership] = STATE(560), - [sym_raise_expression] = STATE(560), - [sym__simple_expression] = STATE(584), - [sym_term] = STATE(503), - [sym__factor] = STATE(485), - [sym_factor_power] = STATE(485), - [sym_factor_abs] = STATE(485), - [sym_factor_not] = STATE(485), - [sym__parenthesized_expression] = STATE(487), - [sym__primary] = STATE(487), - [sym_primary_null] = STATE(487), - [sym_allocator] = STATE(487), - [sym__conditional_expression] = STATE(1563), - [sym_quantified_expression] = STATE(1563), - [sym_declare_expression] = STATE(1563), - [sym_case_expression] = STATE(1563), - [sym_component_choice_list] = STATE(1560), - [sym__aggregate] = STATE(487), - [sym__delta_aggregate] = STATE(487), - [sym_extension_aggregate] = STATE(487), - [sym_record_delta_aggregate] = STATE(487), - [sym_array_delta_aggregate] = STATE(487), - [sym_record_aggregate] = STATE(487), - [sym_record_component_association_list] = STATE(1559), - [sym__named_record_component_association] = STATE(1307), - [sym_null_exclusion] = STATE(786), - [sym__array_aggregate] = STATE(487), - [sym_positional_array_aggregate] = STATE(487), - [sym_null_array_aggregate] = STATE(487), - [sym_named_array_aggregate] = STATE(487), - [sym__array_component_association_list] = STATE(1554), - [sym_array_component_association] = STATE(1084), - [sym_discrete_choice_list] = STATE(1549), - [sym_discrete_choice] = STATE(1317), - [sym_if_expression] = STATE(1563), - [sym_identifier] = ACTIONS(283), + [sym_unary_adding_operator] = STATE(505), + [sym__name] = STATE(499), + [sym__attribute_reference] = STATE(499), + [sym__reduction_attribute_reference] = STATE(499), + [sym_value_sequence] = STATE(1897), + [sym_iterated_element_association] = STATE(1240), + [sym_function_call] = STATE(499), + [sym_qualified_expression] = STATE(499), + [sym__subtype_indication] = STATE(1374), + [sym_range_g] = STATE(1360), + [sym_expression] = STATE(912), + [sym__relation] = STATE(554), + [sym_relation_membership] = STATE(554), + [sym_raise_expression] = STATE(554), + [sym__simple_expression] = STATE(585), + [sym_term] = STATE(507), + [sym__factor] = STATE(484), + [sym_factor_power] = STATE(484), + [sym_factor_abs] = STATE(484), + [sym_factor_not] = STATE(484), + [sym__parenthesized_expression] = STATE(486), + [sym__primary] = STATE(486), + [sym_primary_null] = STATE(486), + [sym_allocator] = STATE(486), + [sym__conditional_expression] = STATE(1643), + [sym_quantified_expression] = STATE(1643), + [sym_declare_expression] = STATE(1643), + [sym_case_expression] = STATE(1643), + [sym_component_choice_list] = STATE(1641), + [sym__aggregate] = STATE(486), + [sym__delta_aggregate] = STATE(486), + [sym_extension_aggregate] = STATE(486), + [sym_record_delta_aggregate] = STATE(486), + [sym_array_delta_aggregate] = STATE(486), + [sym_record_aggregate] = STATE(486), + [sym_record_component_association_list] = STATE(1637), + [sym__named_record_component_association] = STATE(1248), + [sym_null_exclusion] = STATE(800), + [sym__array_aggregate] = STATE(486), + [sym_positional_array_aggregate] = STATE(486), + [sym_null_array_aggregate] = STATE(486), + [sym_named_array_aggregate] = STATE(486), + [sym__array_component_association_list] = STATE(1635), + [sym_array_component_association] = STATE(1034), + [sym_discrete_choice_list] = STATE(1631), + [sym_discrete_choice] = STATE(1262), + [sym_if_expression] = STATE(1643), + [sym_identifier] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(285), - [sym_character_literal] = ACTIONS(285), - [sym_numeric_literal] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(291), - [sym_target_name] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [aux_sym_iterated_element_association_token1] = ACTIONS(299), - [aux_sym_relation_membership_token1] = ACTIONS(301), - [aux_sym_raise_expression_token1] = ACTIONS(303), - [aux_sym_factor_abs_token1] = ACTIONS(305), - [aux_sym_primary_null_token1] = ACTIONS(307), - [aux_sym_allocator_token1] = ACTIONS(309), - [aux_sym_declare_expression_token1] = ACTIONS(311), - [aux_sym_case_expression_token1] = ACTIONS(313), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(315), - [aux_sym_if_expression_token1] = ACTIONS(321), + [sym_string_literal] = ACTIONS(279), + [sym_character_literal] = ACTIONS(279), + [sym_numeric_literal] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(285), + [sym_target_name] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(289), + [aux_sym_iterated_element_association_token1] = ACTIONS(293), + [aux_sym_relation_membership_token1] = ACTIONS(295), + [aux_sym_raise_expression_token1] = ACTIONS(297), + [aux_sym_factor_abs_token1] = ACTIONS(299), + [aux_sym_primary_null_token1] = ACTIONS(301), + [aux_sym_allocator_token1] = ACTIONS(303), + [aux_sym_declare_expression_token1] = ACTIONS(305), + [aux_sym_case_expression_token1] = ACTIONS(307), + [aux_sym_positional_array_aggregate_token1] = ACTIONS(309), + [aux_sym_if_expression_token1] = ACTIONS(315), }, [30] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1128), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1161), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11777,46 +11784,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [31] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1758), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1819), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11844,45 +11851,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [32] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1817), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1496), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11890,7 +11898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), [aux_sym_iterated_element_association_token1] = ACTIONS(399), - [aux_sym_package_specification_token3] = ACTIONS(413), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -11911,46 +11918,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [33] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1493), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1580), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11978,46 +11985,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [34] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1673), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1841), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12045,46 +12052,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [35] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1806), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1708), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12112,46 +12119,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [36] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1536), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1557), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12179,46 +12186,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [37] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1833), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1915), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12246,46 +12253,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [38] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1576), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1842), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12313,45 +12320,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [39] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1486), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1847), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12360,7 +12368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(11), [aux_sym_iterated_element_association_token1] = ACTIONS(399), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(407), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -12380,46 +12387,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [40] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1543), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1599), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12447,46 +12454,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [41] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1872), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1555), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12514,46 +12521,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [42] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1725), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1715), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12581,46 +12588,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [43] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1505), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1679), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12648,46 +12655,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [44] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1599), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1525), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -12715,42 +12722,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [45] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(900), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1663), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [46] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1566), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(407), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [47] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1807), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [48] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1546), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [49] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1868), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [aux_sym_package_specification_token3] = ACTIONS(413), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [50] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1629), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [51] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1768), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [sym_identifier] = ACTIONS(397), + [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(399), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [52] = { + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_loop_label] = STATE(941), [sym_label] = STATE(71), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__simple_statement] = STATE(165), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(71), [sym_identifier] = ACTIONS(397), @@ -12781,516 +13257,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, - [46] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1577), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [47] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1892), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [48] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1904), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [49] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1701), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [50] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1805), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [51] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1522), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [52] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1596), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), - [sym_identifier] = ACTIONS(397), - [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(399), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, [53] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1781), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1677), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -13318,46 +13325,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [54] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1702), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1903), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -13385,46 +13392,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [55] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1780), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1882), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -13452,46 +13459,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [56] = { - [sym__name] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1876), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1463), - [sym_loop_label] = STATE(900), - [sym_label] = STATE(80), - [sym_null_statement] = STATE(165), - [sym_pragma_g] = STATE(165), - [sym__sequence_of_statements] = STATE(1358), - [sym__simple_statement] = STATE(165), + [sym__name] = STATE(935), + [sym__attribute_reference] = STATE(935), + [sym__reduction_attribute_reference] = STATE(935), + [sym_value_sequence] = STATE(1897), + [sym_function_call] = STATE(935), + [sym_qualified_expression] = STATE(935), + [sym_handled_sequence_of_statements] = STATE(1656), + [sym_loop_label] = STATE(941), + [sym_label] = STATE(85), + [sym_null_statement] = STATE(104), + [sym_pragma_g] = STATE(104), + [sym__sequence_of_statements] = STATE(1339), + [sym__simple_statement] = STATE(104), [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(165), - [sym__select_statement] = STATE(165), - [sym_asynchronous_select] = STATE(165), - [sym_conditional_entry_call] = STATE(165), - [sym_timed_entry_call] = STATE(165), - [sym_selective_accept] = STATE(165), - [sym_abort_statement] = STATE(165), - [sym_requeue_statement] = STATE(165), - [sym_accept_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_block_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_exit_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__delay_statement] = STATE(165), - [sym_delay_until_statement] = STATE(165), - [sym_delay_relative_statement] = STATE(165), - [sym_simple_return_statement] = STATE(165), - [sym_extended_return_statement] = STATE(165), - [sym_procedure_call_statement] = STATE(165), - [sym_raise_statement] = STATE(165), - [sym_loop_statement] = STATE(165), - [sym_iteration_scheme] = STATE(1858), - [sym_assignment_statement] = STATE(165), + [sym__compound_statement] = STATE(104), + [sym__select_statement] = STATE(104), + [sym_asynchronous_select] = STATE(104), + [sym_conditional_entry_call] = STATE(104), + [sym_timed_entry_call] = STATE(104), + [sym_selective_accept] = STATE(104), + [sym_abort_statement] = STATE(104), + [sym_requeue_statement] = STATE(104), + [sym_accept_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_block_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_exit_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__delay_statement] = STATE(104), + [sym_delay_until_statement] = STATE(104), + [sym_delay_relative_statement] = STATE(104), + [sym_simple_return_statement] = STATE(104), + [sym_extended_return_statement] = STATE(104), + [sym_procedure_call_statement] = STATE(104), + [sym_raise_statement] = STATE(104), + [sym_loop_statement] = STATE(104), + [sym_iteration_scheme] = STATE(1887), + [sym_assignment_statement] = STATE(104), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(80), + [aux_sym__sequence_of_statements_repeat2] = STATE(85), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -13566,31 +13573,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(954), 1, + STATE(1523), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -13662,31 +13669,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1807), 1, + STATE(1852), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -13758,31 +13765,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1745), 1, + STATE(1658), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -13854,31 +13861,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1133), 1, + STATE(1648), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -13950,31 +13957,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1464), 1, + STATE(1175), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(25), 2, + STATE(52), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14046,31 +14053,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1216), 1, + STATE(998), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(45), 2, + STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14142,31 +14149,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1454), 1, + STATE(1860), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14238,31 +14245,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1716), 1, + STATE(1459), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14334,31 +14341,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1811), 1, + STATE(1604), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14430,31 +14437,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1170), 1, + STATE(1538), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(45), 2, + STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14526,31 +14533,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1575), 1, + STATE(1773), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14622,31 +14629,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1535), 1, + STATE(1698), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14718,31 +14725,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1719), 1, + STATE(1197), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(25), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14814,31 +14821,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1791), 1, + STATE(1171), 1, sym__sequence_of_statements, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(25), 2, + STATE(52), 2, sym_statement, aux_sym__sequence_of_statements_repeat1, - STATE(80), 2, + STATE(85), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(165), 26, + STATE(104), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14908,11 +14915,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(512), 2, sym_label, @@ -14925,13 +14932,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, aux_sym_pragma_g_token1, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(163), 26, + STATE(164), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14995,24 +15002,210 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(425), 1, aux_sym_interface_type_definition_token1, - STATE(885), 1, + STATE(888), 1, sym_generic_formal_part, - STATE(962), 1, + STATE(987), 1, sym__subprogram_specification, - STATE(965), 1, + STATE(988), 1, sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, + STATE(1011), 1, sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, sym_package_specification, - STATE(323), 2, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(326), 2, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(78), 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, + [2020] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + aux_sym_relation_membership_token1, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(305), 1, + aux_sym_declare_expression_token1, + ACTIONS(307), 1, + aux_sym_case_expression_token1, + ACTIONS(315), 1, + aux_sym_if_expression_token1, + ACTIONS(427), 1, + sym_identifier, + ACTIONS(429), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(433), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(585), 1, + sym__simple_expression, + STATE(800), 1, + sym_null_exclusion, + STATE(1237), 1, + sym_parameter_association, + STATE(1359), 1, + sym_expression, + STATE(1421), 1, + sym__subtype_indication, + STATE(1542), 1, + sym_component_choice_list, + STATE(1897), 1, + sym_value_sequence, + STATE(1170), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(279), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(499), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(1544), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2149] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(435), 1, + aux_sym_compilation_unit_token1, + ACTIONS(437), 1, + aux_sym_package_specification_token3, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(75), 34, @@ -15050,61 +15243,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [2020] = 26, + [2266] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(430), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(433), 1, + ACTIONS(15), 1, aux_sym_iterated_element_association_token2, - ACTIONS(438), 1, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(439), 1, + aux_sym_compilation_unit_token1, ACTIONS(441), 1, - aux_sym_use_clause_token2, - ACTIONS(444), 1, - aux_sym_relation_membership_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(450), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(453), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(456), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(459), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(462), 1, - aux_sym_global_mode_token1, - ACTIONS(465), 1, - aux_sym_pragma_g_token1, - ACTIONS(468), 1, - aux_sym_subtype_declaration_token1, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - ACTIONS(436), 2, - aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, - STATE(323), 2, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(326), 2, + STATE(453), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(73), 34, + STATE(77), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15139,373 +15333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [2135] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(471), 1, - aux_sym_compilation_unit_token1, - ACTIONS(473), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(76), 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, - [2252] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(471), 1, - aux_sym_compilation_unit_token1, - ACTIONS(473), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(73), 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, - [2369] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(475), 1, - aux_sym_compilation_unit_token1, - ACTIONS(477), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(73), 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, - [2486] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - aux_sym_relation_membership_token1, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(311), 1, - aux_sym_declare_expression_token1, - ACTIONS(313), 1, - aux_sym_case_expression_token1, - ACTIONS(321), 1, - aux_sym_if_expression_token1, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(481), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(485), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(584), 1, - sym__simple_expression, - STATE(786), 1, - sym_null_exclusion, - STATE(1143), 1, - sym_parameter_association, - STATE(1391), 1, - sym__subtype_indication, - STATE(1445), 1, - sym_expression, - STATE(1485), 1, - sym_component_choice_list, - STATE(1876), 1, - sym_value_sequence, - STATE(1230), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(285), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(500), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(1489), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2615] = 27, + [2383] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15540,27 +15368,206 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(425), 1, aux_sym_interface_type_definition_token1, - STATE(885), 1, + STATE(888), 1, sym_generic_formal_part, - STATE(962), 1, + STATE(987), 1, sym__subprogram_specification, - STATE(965), 1, + STATE(988), 1, sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, + STATE(1011), 1, sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, sym_package_specification, - STATE(323), 2, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(326), 2, + STATE(453), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(75), 34, + STATE(78), 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, + [2500] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 1, + sym_identifier, + ACTIONS(446), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(449), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(454), 1, + aux_sym_package_specification_token1, + ACTIONS(457), 1, + aux_sym_use_clause_token2, + ACTIONS(460), 1, + aux_sym_relation_membership_token1, + ACTIONS(463), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(466), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(469), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(472), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(475), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(478), 1, + aux_sym_global_mode_token1, + ACTIONS(481), 1, + aux_sym_pragma_g_token1, + ACTIONS(484), 1, + aux_sym_subtype_declaration_token1, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + ACTIONS(452), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(77), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2615] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(435), 1, + aux_sym_compilation_unit_token1, + ACTIONS(437), 1, + aux_sym_package_specification_token3, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(77), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15626,29 +15633,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(425), 1, aux_sym_interface_type_definition_token1, - ACTIONS(487), 1, + ACTIONS(441), 1, aux_sym_package_specification_token3, - STATE(885), 1, + STATE(888), 1, sym_generic_formal_part, - STATE(962), 1, + STATE(987), 1, sym__subprogram_specification, - STATE(965), 1, + STATE(988), 1, sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, + STATE(1011), 1, sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, sym_package_specification, - STATE(323), 2, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(326), 2, + STATE(453), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(73), 34, + STATE(77), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15683,7 +15690,454 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [2846] = 29, + [2846] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(487), 1, + aux_sym_package_specification_token3, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(81), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [2960] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(489), 1, + aux_sym_package_specification_token3, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(77), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3074] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(487), 1, + aux_sym_package_specification_token3, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(77), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3188] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(417), 1, + aux_sym_package_specification_token1, + ACTIONS(423), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(425), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(437), 1, + aux_sym_package_specification_token3, + STATE(888), 1, + sym_generic_formal_part, + STATE(987), 1, + sym__subprogram_specification, + STATE(988), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, + sym_package_specification, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(79), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [3302] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(305), 1, + aux_sym_declare_expression_token1, + ACTIONS(307), 1, + aux_sym_case_expression_token1, + ACTIONS(315), 1, + aux_sym_if_expression_token1, + ACTIONS(429), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(433), 1, + anon_sym_LT_GT, + ACTIONS(491), 1, + sym_identifier, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1237), 1, + sym_parameter_association, + STATE(1283), 1, + sym_parameter_specification, + STATE(1359), 1, + sym_expression, + STATE(1542), 1, + sym_component_choice_list, + STATE(1549), 1, + sym__defining_identifier_list, + STATE(1554), 1, + sym__parameter_specification_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(1544), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3430] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -15728,11 +16182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(900), 1, + STATE(941), 1, sym_loop_label, - STATE(1858), 1, + STATE(1887), 1, sym_iteration_scheme, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, STATE(512), 2, sym_label, @@ -15741,13 +16195,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(935), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(163), 26, + STATE(164), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -15774,7 +16228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raise_statement, sym_loop_statement, sym_assignment_statement, - [2966] = 26, + [3550] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15805,297 +16259,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(425), 1, aux_sym_interface_type_definition_token1, - ACTIONS(473), 1, + ACTIONS(441), 1, aux_sym_package_specification_token3, - STATE(885), 1, + STATE(888), 1, sym_generic_formal_part, - STATE(962), 1, + STATE(987), 1, sym__subprogram_specification, - STATE(965), 1, + STATE(988), 1, sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, + STATE(1011), 1, sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, + STATE(1087), 1, + sym_function_specification, + STATE(1895), 1, sym_package_specification, - STATE(323), 2, + STATE(1899), 1, + sym__defining_identifier_list, + STATE(452), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(86), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [3080] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(489), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(73), 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, - [3194] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(311), 1, - aux_sym_declare_expression_token1, - ACTIONS(313), 1, - aux_sym_case_expression_token1, - ACTIONS(321), 1, - aux_sym_if_expression_token1, - ACTIONS(481), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(485), 1, - anon_sym_LT_GT, - ACTIONS(491), 1, - sym_identifier, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1143), 1, - sym_parameter_association, - STATE(1218), 1, - sym_parameter_specification, - STATE(1445), 1, - sym_expression, - STATE(1485), 1, - sym_component_choice_list, - STATE(1617), 1, - sym__defining_identifier_list, - STATE(1623), 1, - sym_parameter_specification_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(1489), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3322] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(477), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, + STATE(453), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(82), 34, @@ -16133,263 +16316,87 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [3436] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(489), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(79), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [3550] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(477), 1, - aux_sym_package_specification_token3, - STATE(885), 1, - sym_generic_formal_part, - STATE(962), 1, - sym__subprogram_specification, - STATE(965), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(1380), 1, - sym__defining_identifier_list, - STATE(1873), 1, - sym_package_specification, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(73), 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, [3664] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(277), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(307), 1, + ACTIONS(301), 1, aux_sym_primary_null_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1084), 1, - sym_array_component_association, - STATE(1214), 1, + STATE(929), 1, sym_expression, - STATE(1296), 1, + STATE(1034), 1, + sym_array_component_association, + STATE(1240), 1, sym_iterated_element_association, - STATE(1307), 1, + STATE(1248), 1, sym__named_record_component_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1329), 1, + STATE(1360), 1, sym_range_g, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1560), 1, - sym_component_choice_list, - STATE(1624), 1, + STATE(1635), 1, sym__array_component_association_list, - STATE(1626), 1, + STATE(1637), 1, sym_record_component_association_list, - STATE(1876), 1, + STATE(1641), 1, + sym_component_choice_list, + STATE(1897), 1, sym_value_sequence, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16407,84 +16414,84 @@ static const uint16_t ts_small_parse_table[] = { [3794] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(283), 1, + ACTIONS(277), 1, sym_identifier, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(307), 1, + ACTIONS(301), 1, aux_sym_primary_null_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(931), 1, - sym_expression, - STATE(1084), 1, + STATE(1034), 1, sym_array_component_association, - STATE(1296), 1, + STATE(1214), 1, + sym_expression, + STATE(1240), 1, sym_iterated_element_association, - STATE(1307), 1, + STATE(1248), 1, sym__named_record_component_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1329), 1, + STATE(1360), 1, sym_range_g, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1554), 1, - sym__array_component_association_list, - STATE(1559), 1, - sym_record_component_association_list, - STATE(1560), 1, + STATE(1641), 1, sym_component_choice_list, - STATE(1876), 1, + STATE(1689), 1, + sym__array_component_association_list, + STATE(1690), 1, + sym_record_component_association_list, + STATE(1897), 1, sym_value_sequence, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16502,78 +16509,78 @@ static const uint16_t ts_small_parse_table[] = { [3924] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(311), 1, + ACTIONS(305), 1, aux_sym_declare_expression_token1, - ACTIONS(313), 1, + ACTIONS(307), 1, aux_sym_case_expression_token1, - ACTIONS(321), 1, + ACTIONS(315), 1, aux_sym_if_expression_token1, - ACTIONS(479), 1, + ACTIONS(427), 1, sym_identifier, - ACTIONS(481), 1, + ACTIONS(429), 1, aux_sym_iterated_element_association_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, - ACTIONS(485), 1, + ACTIONS(433), 1, anon_sym_LT_GT, ACTIONS(495), 1, aux_sym_relation_membership_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1143), 1, + STATE(1237), 1, sym_parameter_association, - STATE(1445), 1, + STATE(1359), 1, sym_expression, - STATE(1485), 1, + STATE(1542), 1, sym_component_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(1489), 5, + STATE(1544), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16591,27 +16598,27 @@ static const uint16_t ts_small_parse_table[] = { [4043] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, @@ -16621,52 +16628,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_value_sequence_token1, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(939), 1, + STATE(908), 1, sym_expression, - STATE(1084), 1, + STATE(1034), 1, sym_array_component_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1329), 1, + STATE(1360), 1, sym_range_g, - STATE(1333), 1, - sym__subtype_indication, - STATE(1377), 1, + STATE(1367), 1, sym_iterated_element_association, - STATE(1544), 1, + STATE(1374), 1, + sym__subtype_indication, + STATE(1616), 1, sym__array_component_association_list, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16684,27 +16691,27 @@ static const uint16_t ts_small_parse_table[] = { [4170] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, @@ -16712,52 +16719,52 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(971), 1, + STATE(908), 1, sym_expression, - STATE(1084), 1, + STATE(1034), 1, sym_array_component_association, - STATE(1296), 1, + STATE(1240), 1, sym_iterated_element_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1329), 1, + STATE(1360), 1, sym_range_g, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1544), 1, + STATE(1616), 1, sym__array_component_association_list, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16775,27 +16782,27 @@ static const uint16_t ts_small_parse_table[] = { [4294] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, @@ -16803,52 +16810,52 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(939), 1, + STATE(992), 1, sym_expression, - STATE(1084), 1, + STATE(1034), 1, sym_array_component_association, - STATE(1296), 1, + STATE(1240), 1, sym_iterated_element_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1329), 1, + STATE(1360), 1, sym_range_g, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1544), 1, + STATE(1616), 1, sym__array_component_association_list, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16863,81 +16870,80 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4418] = 32, + [4418] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1077), 1, - sym_expression, - STATE(1084), 1, + STATE(1034), 1, sym_array_component_association, - STATE(1296), 1, + STATE(1240), 1, sym_iterated_element_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1329), 1, - sym_range_g, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1554), 1, + STATE(1684), 1, sym__array_component_association_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(285), 3, + STATE(1360), 2, + sym_range_g, + sym_expression, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16952,80 +16958,81 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4539] = 31, + [4537] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1084), 1, + STATE(1034), 1, sym_array_component_association, - STATE(1296), 1, - sym_iterated_element_association, - STATE(1317), 1, - sym_discrete_choice, - STATE(1333), 1, - sym__subtype_indication, - STATE(1549), 1, - sym_discrete_choice_list, - STATE(1615), 1, - sym__array_component_association_list, - STATE(1876), 1, - sym_value_sequence, - STATE(1329), 2, - sym_range_g, + STATE(1121), 1, sym_expression, - ACTIONS(285), 3, + STATE(1240), 1, + sym_iterated_element_association, + STATE(1262), 1, + sym_discrete_choice, + STATE(1360), 1, + sym_range_g, + STATE(1374), 1, + sym__subtype_indication, + STATE(1631), 1, + sym_discrete_choice_list, + STATE(1635), 1, + sym__array_component_association_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17043,75 +17050,75 @@ static const uint16_t ts_small_parse_table[] = { [4658] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1255), 1, + STATE(1145), 1, sym_array_component_association, - STATE(1296), 1, + STATE(1240), 1, sym_iterated_element_association, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1549), 1, + STATE(1631), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1329), 2, + STATE(1360), 2, sym_range_g, sym_expression, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17129,73 +17136,73 @@ static const uint16_t ts_small_parse_table[] = { [4774] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(313), 1, + ACTIONS(307), 1, aux_sym_case_expression_token1, - ACTIONS(321), 1, + ACTIONS(315), 1, aux_sym_if_expression_token1, - ACTIONS(481), 1, + ACTIONS(429), 1, aux_sym_iterated_element_association_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(505), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1130), 1, + STATE(1273), 1, sym_pragma_argument_association, - STATE(1452), 1, + STATE(1361), 1, sym_expression, - STATE(1696), 1, + STATE(1620), 1, sym__aspect_mark, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1692), 4, + STATE(1618), 4, sym__conditional_quantified_expression, sym_quantified_expression, sym_case_expression, sym_if_expression, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17213,27 +17220,27 @@ static const uint16_t ts_small_parse_table[] = { [4886] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(291), 1, aux_sym_chunk_specification_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(317), 1, + ACTIONS(311), 1, aux_sym_global_mode_token1, - ACTIONS(319), 1, + ACTIONS(313), 1, aux_sym_non_empty_mode_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, @@ -17241,42 +17248,42 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(507), 1, anon_sym_LPAREN, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(820), 1, + STATE(815), 1, sym_non_empty_mode, - STATE(1059), 1, + STATE(972), 1, sym_global_mode, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(1058), 3, + STATE(975), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17294,69 +17301,69 @@ static const uint16_t ts_small_parse_table[] = { [4994] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1494), 1, + STATE(1813), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1329), 2, + STATE(1360), 2, sym_range_g, sym_expression, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17374,69 +17381,69 @@ static const uint16_t ts_small_parse_table[] = { [5101] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1863), 1, + STATE(1744), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1329), 2, + STATE(1360), 2, sym_range_g, sym_expression, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17454,69 +17461,69 @@ static const uint16_t ts_small_parse_table[] = { [5208] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1317), 1, + STATE(1262), 1, sym_discrete_choice, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1738), 1, + STATE(1497), 1, sym_discrete_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1329), 2, + STATE(1360), 2, sym_range_g, sym_expression, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17534,67 +17541,67 @@ static const uint16_t ts_small_parse_table[] = { [5315] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(315), 1, + ACTIONS(309), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(584), 1, + STATE(507), 1, + sym_term, + STATE(585), 1, sym__simple_expression, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1333), 1, + STATE(1374), 1, sym__subtype_indication, - STATE(1361), 1, + STATE(1470), 1, sym_discrete_choice, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1329), 2, + STATE(1360), 2, sym_range_g, sym_expression, - ACTIONS(285), 3, + ACTIONS(279), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(500), 5, + STATE(499), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17612,66 +17619,66 @@ static const uint16_t ts_small_parse_table[] = { [5419] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(307), 1, + ACTIONS(301), 1, aux_sym_primary_null_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(479), 1, + ACTIONS(427), 1, sym_identifier, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(509), 1, aux_sym_attribute_designator_token2, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1307), 1, + STATE(1248), 1, sym__named_record_component_association, - STATE(1560), 1, + STATE(1641), 1, sym_component_choice_list, - STATE(1867), 1, - sym_record_component_association_list, - STATE(1870), 1, - sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, + STATE(1920), 1, + sym_expression, + STATE(1923), 1, + sym_record_component_association_list, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18057,7 +18064,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5914] = 3, + [5914] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(427), 1, + sym_identifier, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(433), 1, + anon_sym_LT_GT, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1336), 1, + sym_parameter_association, + STATE(1359), 1, + sym_expression, + STATE(1542), 1, + sym_component_choice_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6014] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(541), 1, @@ -18110,7 +18192,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5970] = 3, + [6070] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(545), 1, @@ -18163,7 +18245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6026] = 3, + [6126] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(549), 1, @@ -18216,7 +18298,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6082] = 3, + [6182] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(553), 1, @@ -18269,7 +18351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6138] = 3, + [6238] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(557), 1, @@ -18322,7 +18404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6194] = 3, + [6294] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(561), 1, @@ -18375,7 +18457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6250] = 3, + [6350] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(565), 1, @@ -18428,7 +18510,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6306] = 3, + [6406] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(569), 1, @@ -18481,7 +18563,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6362] = 3, + [6462] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(573), 1, @@ -18534,87 +18616,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6418] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(575), 1, - aux_sym_positional_array_aggregate_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1017), 1, - sym_expression, - STATE(1233), 1, - sym__named_record_component_association, - STATE(1560), 1, - sym_component_choice_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [6518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(579), 1, + ACTIONS(577), 1, sym_identifier, - ACTIONS(577), 47, + ACTIONS(575), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18665,9 +18672,9 @@ static const uint16_t ts_small_parse_table[] = { [6574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(583), 1, + ACTIONS(581), 1, sym_identifier, - ACTIONS(581), 47, + ACTIONS(579), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18718,9 +18725,9 @@ static const uint16_t ts_small_parse_table[] = { [6630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(587), 1, + ACTIONS(585), 1, sym_identifier, - ACTIONS(585), 47, + ACTIONS(583), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18771,9 +18778,9 @@ static const uint16_t ts_small_parse_table[] = { [6686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(591), 1, + ACTIONS(589), 1, sym_identifier, - ACTIONS(589), 47, + ACTIONS(587), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18824,9 +18831,9 @@ static const uint16_t ts_small_parse_table[] = { [6742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, + ACTIONS(593), 1, sym_identifier, - ACTIONS(593), 47, + ACTIONS(591), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18877,9 +18884,9 @@ static const uint16_t ts_small_parse_table[] = { [6798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 1, + ACTIONS(597), 1, sym_identifier, - ACTIONS(597), 47, + ACTIONS(595), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18930,9 +18937,9 @@ static const uint16_t ts_small_parse_table[] = { [6854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(601), 1, sym_identifier, - ACTIONS(601), 47, + ACTIONS(599), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18983,9 +18990,9 @@ static const uint16_t ts_small_parse_table[] = { [6910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(607), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(605), 47, + ACTIONS(603), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -19036,9 +19043,9 @@ static const uint16_t ts_small_parse_table[] = { [6966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(609), 47, + ACTIONS(607), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -19089,9 +19096,9 @@ static const uint16_t ts_small_parse_table[] = { [7022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, + ACTIONS(613), 1, sym_identifier, - ACTIONS(613), 47, + ACTIONS(611), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -19139,7 +19146,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7078] = 3, + [7078] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(615), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1283), 1, + sym_parameter_specification, + STATE(1549), 1, + sym__defining_identifier_list, + STATE(1554), 1, + sym__parameter_specification_list, + STATE(1666), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7178] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(619), 1, @@ -19192,7 +19274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7134] = 3, + [7234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(623), 1, @@ -19245,7 +19327,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7190] = 3, + [7290] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(627), 1, @@ -19298,7 +19380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7246] = 3, + [7346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(631), 1, @@ -19351,7 +19433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7302] = 3, + [7402] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(635), 1, @@ -19404,7 +19486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7358] = 3, + [7458] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(639), 1, @@ -19457,7 +19539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7414] = 3, + [7514] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(643), 1, @@ -19510,173 +19592,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7470] = 3, + [7570] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 1, - sym_identifier, - ACTIONS(645), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 1, - sym_identifier, - ACTIONS(649), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7582] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(427), 1, + sym_identifier, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, - ACTIONS(653), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + ACTIONS(645), 1, + aux_sym_positional_array_aggregate_token1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1218), 1, - sym_parameter_specification, - STATE(1617), 1, - sym__defining_identifier_list, - STATE(1623), 1, - sym_parameter_specification_list, - STATE(1724), 1, + STATE(1104), 1, sym_expression, - STATE(1876), 1, + STATE(1160), 1, + sym__named_record_component_association, + STATE(1641), 1, + sym_component_choice_list, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -19691,7 +19667,113 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7682] = 3, + [7670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(649), 1, + sym_identifier, + ACTIONS(647), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(653), 1, + sym_identifier, + ACTIONS(651), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [7782] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(657), 1, @@ -19744,7 +19826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7738] = 3, + [7838] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(661), 1, @@ -19797,7 +19879,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7794] = 3, + [7894] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(665), 1, @@ -19850,7 +19932,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7850] = 3, + [7950] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(669), 1, @@ -19903,7 +19985,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7906] = 3, + [8006] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(673), 1, @@ -19956,7 +20038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7962] = 3, + [8062] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(677), 1, @@ -20009,7 +20091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8018] = 3, + [8118] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(681), 1, @@ -20062,7 +20144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8074] = 3, + [8174] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(685), 1, @@ -20115,7 +20197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8130] = 3, + [8230] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, @@ -20168,7 +20250,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8186] = 3, + [8286] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(693), 1, @@ -20221,7 +20303,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8242] = 3, + [8342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(697), 1, @@ -20274,7 +20356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8298] = 3, + [8398] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(701), 1, @@ -20327,7 +20409,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8354] = 3, + [8454] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(705), 1, @@ -20380,7 +20462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8410] = 3, + [8510] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, @@ -20433,7 +20515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8466] = 3, + [8566] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(713), 1, @@ -20486,7 +20568,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8522] = 3, + [8622] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(717), 1, @@ -20539,7 +20621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8578] = 3, + [8678] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(721), 1, @@ -20592,7 +20674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8634] = 3, + [8734] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(725), 1, @@ -20645,7 +20727,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8690] = 3, + [8790] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, @@ -20698,7 +20780,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8746] = 3, + [8846] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(733), 1, @@ -20751,81 +20833,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8802] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(485), 1, - anon_sym_LT_GT, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1363), 1, - sym_parameter_association, - STATE(1445), 1, - sym_expression, - STATE(1485), 1, - sym_component_choice_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [8902] = 3, ACTIONS(3), 1, sym_comment, @@ -21200,63 +21207,63 @@ static const uint16_t ts_small_parse_table[] = { [9294] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, - ACTIONS(653), 1, + ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(786), 1, + STATE(507), 1, + sym_term, + STATE(800), 1, sym_null_exclusion, - STATE(913), 1, + STATE(911), 1, sym__subtype_indication, - STATE(1218), 1, - sym_parameter_specification, - STATE(1523), 1, + STATE(1276), 1, + sym_index_subtype_definition, + STATE(1481), 1, sym__simple_expression, - STATE(1617), 1, - sym__defining_identifier_list, - STATE(1623), 1, - sym_parameter_specification_list, - STATE(1876), 1, + STATE(1835), 1, + sym__index_subtype_definition_list, + STATE(1837), 1, + sym__discrete_subtype_definition_list, + STATE(1897), 1, sym_value_sequence, - STATE(1773), 2, + STATE(1279), 2, sym__discrete_subtype_definition, sym_range_g, ACTIONS(763), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(562), 5, + STATE(557), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21274,62 +21281,62 @@ static const uint16_t ts_small_parse_table[] = { [9393] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(427), 1, + sym_identifier, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, - ACTIONS(505), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1342), 1, - sym_pragma_argument_association, STATE(1452), 1, sym_expression, - STATE(1696), 1, - sym__aspect_mark, - STATE(1876), 1, + STATE(1453), 1, + sym__named_record_component_association, + STATE(1641), 1, + sym_component_choice_list, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21347,63 +21354,63 @@ static const uint16_t ts_small_parse_table[] = { [9490] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, - ACTIONS(499), 1, + ACTIONS(615), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(786), 1, + STATE(507), 1, + sym_term, + STATE(800), 1, sym_null_exclusion, - STATE(913), 1, + STATE(911), 1, sym__subtype_indication, - STATE(1240), 1, - sym_index_subtype_definition, - STATE(1523), 1, + STATE(1283), 1, + sym_parameter_specification, + STATE(1481), 1, sym__simple_expression, - STATE(1796), 1, - sym__index_subtype_definition_list, - STATE(1797), 1, - sym__discrete_subtype_definition_list, - STATE(1876), 1, + STATE(1549), 1, + sym__defining_identifier_list, + STATE(1554), 1, + sym__parameter_specification_list, + STATE(1897), 1, sym_value_sequence, - STATE(1242), 2, + STATE(1590), 2, sym__discrete_subtype_definition, sym_range_g, ACTIONS(765), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(554), 5, + STATE(549), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21421,61 +21428,61 @@ static const uint16_t ts_small_parse_table[] = { [9589] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(479), 1, + ACTIONS(427), 1, sym_identifier, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1560), 1, + STATE(1641), 1, sym_component_choice_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1233), 2, + STATE(1453), 2, sym_expression, sym__named_record_component_association, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21490,98 +21497,26 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9684] = 23, + [9684] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1560), 1, - sym_component_choice_list, - STATE(1876), 1, - sym_value_sequence, - STATE(1451), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9779] = 24, - ACTIONS(3), 1, - sym_comment, ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, @@ -21589,38 +21524,38 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(769), 1, anon_sym_SEMI, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1405), 1, + STATE(1386), 1, sym_extended_return_object_declaration, - STATE(1755), 1, + STATE(1673), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21635,65 +21570,139 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9876] = 24, + [9781] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(295), 1, + aux_sym_relation_membership_token1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(479), 1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(615), 1, sym_identifier, - ACTIONS(483), 1, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(800), 1, + sym_null_exclusion, + STATE(911), 1, + sym__subtype_indication, + STATE(1283), 1, + sym_parameter_specification, + STATE(1481), 1, + sym__simple_expression, + STATE(1549), 1, + sym__defining_identifier_list, + STATE(1554), 1, + sym__parameter_specification_list, + STATE(1897), 1, + sym_value_sequence, + STATE(1814), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(765), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(549), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9880] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + ACTIONS(505), 1, + sym_identifier, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1450), 1, + STATE(1351), 1, + sym_pragma_argument_association, + STATE(1361), 1, sym_expression, - STATE(1451), 1, - sym__named_record_component_association, - STATE(1560), 1, - sym_component_choice_list, - STATE(1876), 1, + STATE(1620), 1, + sym__aspect_mark, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21708,66 +21717,64 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9973] = 25, + [9977] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, - aux_sym_relation_membership_token1, - ACTIONS(305), 1, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(653), 1, + ACTIONS(427), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + STATE(505), 1, sym_unary_adding_operator, - STATE(786), 1, - sym_null_exclusion, - STATE(913), 1, - sym__subtype_indication, - STATE(1218), 1, - sym_parameter_specification, - STATE(1523), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1617), 1, - sym__defining_identifier_list, - STATE(1623), 1, - sym_parameter_specification_list, - STATE(1876), 1, + STATE(1641), 1, + sym_component_choice_list, + STATE(1897), 1, sym_value_sequence, - STATE(1675), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(763), 3, + STATE(1160), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(562), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21785,60 +21792,60 @@ static const uint16_t ts_small_parse_table[] = { [10072] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, ACTIONS(771), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, + aux_sym_positional_array_aggregate_token1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1662), 1, + STATE(1296), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21853,23 +21860,232 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10166] = 6, + [10166] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 1, - sym_tick, - ACTIONS(780), 1, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(773), 6, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(773), 1, + aux_sym_positional_array_aggregate_token1, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1296), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10260] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1140), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10354] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(777), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1449), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(783), 1, + anon_sym_DOT, + ACTIONS(779), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(775), 37, + ACTIONS(781), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -21877,7 +22093,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -21907,97 +22125,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [10226] = 23, + [10504] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(783), 1, - aux_sym_positional_array_aggregate_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1265), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10320] = 23, - ACTIONS(3), 1, - sym_comment, ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, @@ -22005,36 +22152,36 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(785), 1, anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1259), 1, + STATE(1482), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22049,560 +22196,63 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10414] = 23, + [10598] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, ACTIONS(787), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1364), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10508] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(789), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1372), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10602] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(791), 1, - aux_sym_positional_array_aggregate_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1265), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10696] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(793), 1, - aux_sym_positional_array_aggregate_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1265), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10790] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(795), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1471), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10884] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(797), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1479), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10978] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(799), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1661), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11072] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(801), 1, aux_sym_delay_until_statement_token2, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1718), 1, + STATE(1777), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22617,19 +22267,23 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11166] = 4, + [10692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 1, - anon_sym_DOT, - ACTIONS(803), 6, + ACTIONS(793), 1, + sym_tick, + ACTIONS(796), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(789), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(805), 39, + ACTIONS(791), 37, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -22637,9 +22291,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -22669,63 +22321,418 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, + [10752] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(799), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1667), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10846] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(645), 1, + aux_sym_positional_array_aggregate_token1, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1254), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10940] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(801), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1668), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11034] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1512), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11128] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(805), 1, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1340), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, [11222] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(575), 1, + ACTIONS(807), 1, aux_sym_positional_array_aggregate_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1239), 1, + STATE(1296), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22740,145 +22747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11316] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1018), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11407] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1574), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11498] = 3, + [11316] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(809), 6, @@ -22928,7 +22797,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11551] = 3, + [11369] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1776), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11460] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(813), 6, @@ -22978,57 +22916,214 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11604] = 3, + [11513] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(819), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [11657] = 3, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1646), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11604] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(817), 1, + aux_sym_expression_token4, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(595), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_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(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(819), 1, + aux_sym_expression_token2, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(601), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11786] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(821), 6, @@ -23078,7 +23173,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11710] = 3, + [11839] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1083), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11930] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1157), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(825), 6, @@ -23128,61 +23361,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11763] = 22, + [12074] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1643), 1, + STATE(1731), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23197,61 +23430,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11854] = 22, + [12165] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1114), 1, + STATE(1416), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23266,7 +23499,283 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11945] = 3, + [12256] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1084), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12347] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1534), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12438] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1536), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12529] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1770), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12620] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(829), 6, @@ -23316,111 +23825,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11998] = 3, + [12673] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(835), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [12051] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1822), 1, + STATE(1061), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23435,61 +23894,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12142] = 22, + [12764] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1772), 1, + STATE(1495), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23504,61 +23963,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12233] = 22, + [12855] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1385), 1, + STATE(956), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23573,61 +24032,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12324] = 22, + [12946] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + ACTIONS(835), 1, + aux_sym_loop_parameter_specification_token1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(800), 1, + sym_null_exclusion, + STATE(911), 1, + sym__subtype_indication, + STATE(1481), 1, sym__simple_expression, - STATE(1655), 1, - sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(493), 3, + STATE(997), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(833), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(532), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23642,61 +24102,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12415] = 22, + [13039] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1656), 1, + STATE(1552), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23711,61 +24171,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12506] = 22, + [13130] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1511), 1, + STATE(1702), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23780,7 +24240,145 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12597] = 3, + [13221] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1317), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13312] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1553), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(837), 6, @@ -23830,62 +24428,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12650] = 23, + [13456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(841), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - ACTIONS(293), 1, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(843), 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, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(301), 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_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - ACTIONS(305), 1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [13509] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(843), 1, - aux_sym_loop_parameter_specification_token1, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(786), 1, - sym_null_exclusion, - STATE(913), 1, - sym__subtype_indication, - STATE(1523), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1574), 1, + sym_expression, + STATE(1897), 1, sym_value_sequence, - STATE(991), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(841), 3, + ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(530), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23900,7 +24547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12743] = 3, + [13600] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(845), 6, @@ -23950,61 +24597,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12796] = 22, + [13653] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1476), 1, + STATE(1274), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24019,7 +24666,145 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12887] = 3, + [13744] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + STATE(1907), 1, + sym_expression, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13835] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1195), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13926] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(849), 6, @@ -24069,7 +24854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12940] = 3, + [13979] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(853), 6, @@ -24119,61 +24904,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12993] = 22, + [14032] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1477), 1, + STATE(1505), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24188,7 +24973,76 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13084] = 3, + [14123] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1804), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14214] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(857), 6, @@ -24238,7 +25092,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13137] = 3, + [14267] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1567), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14358] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(861), 6, @@ -24288,61 +25211,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13190] = 22, + [14411] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1650), 1, + STATE(1581), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24357,283 +25280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13281] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1266), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13372] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1165), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13463] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1509), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13554] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1726), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13645] = 3, + [14502] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(865), 6, @@ -24683,7 +25330,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13698] = 3, + [14555] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1741), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14646] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1678), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(869), 6, @@ -24733,145 +25518,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13751] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1715), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13842] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1564), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13933] = 3, + [14790] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(873), 6, @@ -24921,76 +25568,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13986] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1357), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14077] = 3, + [14843] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(877), 6, @@ -25040,569 +25618,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14130] = 22, + [14896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1498), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14221] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1649), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14312] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1037), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14403] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1253), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14494] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(881), 1, - aux_sym_expression_token4, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(596), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14585] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1265), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14676] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1343), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14767] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1671), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(883), 6, + ACTIONS(881), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(885), 39, + ACTIONS(883), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -25642,61 +25668,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14911] = 22, + [14949] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1757), 1, + STATE(1662), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25711,17 +25737,17 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15002] = 3, + [15040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(887), 6, + ACTIONS(885), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(889), 39, + ACTIONS(887), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -25761,61 +25787,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15055] = 22, + [15093] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1267), 1, + STATE(1571), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25830,199 +25856,180 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15146] = 22, + [15184] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(891), 1, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1661), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(889), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(891), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, aux_sym_expression_token2, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(594), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15237] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1786), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, [15328] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1492), 1, + STATE(1527), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26040,58 +26047,58 @@ static const uint16_t ts_small_parse_table[] = { [15419] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1603), 1, + STATE(1296), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26106,7 +26113,352 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15510] = 3, + [15510] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1355), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15601] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1603), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15692] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1405), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15783] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1821), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15874] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(297), 1, + aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(520), 1, + sym__simple_expression, + STATE(1780), 1, + sym_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(554), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15965] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(893), 6, @@ -26156,61 +26508,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15563] = 22, + [16018] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1306), 1, + STATE(1209), 1, sym_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(560), 3, + STATE(554), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26225,283 +26577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15654] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(945), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15745] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1804), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15836] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1638), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15927] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - STATE(1877), 1, - sym_expression, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16018] = 3, + [16109] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(897), 6, @@ -26551,265 +26627,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [16071] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_raise_expression_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(522), 1, - sym__simple_expression, - STATE(1467), 1, - sym_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(560), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [16162] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(301), 1, + ACTIONS(295), 1, aux_sym_relation_membership_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(786), 1, - sym_null_exclusion, - STATE(913), 1, - sym__subtype_indication, - STATE(1523), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - STATE(1321), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(763), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(562), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16252] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - aux_sym_relation_membership_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, STATE(507), 1, - sym_unary_adding_operator, - STATE(786), 1, - sym_null_exclusion, - STATE(1391), 1, - sym__subtype_indication, - STATE(1523), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - STATE(1447), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(763), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(562), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16342] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - aux_sym_relation_membership_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(913), 1, + STATE(911), 1, sym__subtype_indication, - STATE(1523), 1, + STATE(1481), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(989), 2, + STATE(1009), 2, sym__discrete_subtype_definition, sym_range_g, ACTIONS(901), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(532), 5, + STATE(528), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26824,38 +26695,38 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [16432] = 21, + [16252] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, @@ -26865,18 +26736,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26891,174 +26762,38 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [16520] = 22, + [16340] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - aux_sym_relation_membership_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(786), 1, - sym_null_exclusion, - STATE(913), 1, - sym__subtype_indication, - STATE(1523), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - STATE(1731), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(763), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(562), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16610] = 22, - ACTIONS(3), 1, - sym_comment, ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(301), 1, - aux_sym_relation_membership_token1, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(786), 1, - sym_null_exclusion, - STATE(913), 1, - sym__subtype_indication, - STATE(1523), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - STATE(1871), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(763), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(562), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16700] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, @@ -27068,18 +26803,290 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16428] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + aux_sym_relation_membership_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(800), 1, + sym_null_exclusion, + STATE(911), 1, + sym__subtype_indication, + STATE(1481), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + STATE(1782), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(765), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(549), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16518] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + aux_sym_relation_membership_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(800), 1, + sym_null_exclusion, + STATE(911), 1, + sym__subtype_indication, + STATE(1481), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + STATE(1352), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(765), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(549), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16608] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + aux_sym_relation_membership_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(800), 1, + sym_null_exclusion, + STATE(1421), 1, + sym__subtype_indication, + STATE(1481), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + STATE(1450), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(765), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(549), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16698] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + aux_sym_relation_membership_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(800), 1, + sym_null_exclusion, + STATE(911), 1, + sym__subtype_indication, + STATE(1481), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + STATE(1881), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(765), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(549), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27097,56 +27104,56 @@ static const uint16_t ts_small_parse_table[] = { [16788] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(297), 1, aux_sym_raise_expression_token1, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(522), 1, + STATE(507), 1, + sym_term, + STATE(520), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(595), 3, + STATE(596), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27209,235 +27216,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16927] = 3, + [16927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_identifier, - ACTIONS(907), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [16978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - sym_identifier, - ACTIONS(911), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17029] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(570), 1, - sym__simple_expression, - STATE(581), 1, - sym_membership_choice_list, - STATE(1876), 1, - sym_value_sequence, - STATE(573), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(915), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [17116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 1, - sym_identifier, - ACTIONS(917), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17167] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(927), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(488), 1, + STATE(493), 1, sym_index_constraint, - ACTIONS(921), 6, + ACTIONS(907), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(923), 33, + ACTIONS(909), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27471,12 +27268,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, - [17226] = 3, + [16986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, + ACTIONS(917), 1, sym_identifier, - ACTIONS(929), 42, + ACTIONS(915), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27519,12 +27316,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17277] = 3, + [17037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(933), 42, + ACTIONS(919), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27567,12 +27364,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17328] = 3, + [17088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(937), 42, + ACTIONS(923), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27615,7 +27412,287 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17379] = 3, + [17139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(929), 1, + sym_identifier, + ACTIONS(927), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17190] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(913), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + STATE(491), 1, + sym_index_constraint, + ACTIONS(931), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(933), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [17249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(937), 1, + sym_identifier, + ACTIONS(935), 42, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17300] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(568), 1, + sym__simple_expression, + STATE(573), 1, + sym_membership_choice_list, + STATE(1897), 1, + sym_value_sequence, + STATE(567), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(939), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [17387] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(568), 1, + sym__simple_expression, + STATE(576), 1, + sym_membership_choice_list, + STATE(1897), 1, + sym_value_sequence, + STATE(567), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(939), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [17474] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(943), 1, @@ -27663,7 +27740,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17430] = 3, + [17525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(947), 1, @@ -27711,124 +27788,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17481] = 21, + [17576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(951), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(570), 1, - sym__simple_expression, - STATE(575), 1, - sym_membership_choice_list, - STATE(1876), 1, - sym_value_sequence, - STATE(573), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(915), 3, + ACTIONS(949), 42, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [17568] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(927), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - STATE(494), 1, - sym_index_constraint, - ACTIONS(949), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(951), 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, + 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_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_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_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [17627] = 3, ACTIONS(3), 1, sym_comment, @@ -28206,53 +28213,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, [18027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(983), 1, - sym_identifier, - ACTIONS(981), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18077] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(987), 1, @@ -28299,7 +28259,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18127] = 3, + [18077] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(991), 1, @@ -28346,6 +28306,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [18127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(995), 1, + sym_identifier, + ACTIONS(993), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [18177] = 3, ACTIONS(3), 1, sym_comment, @@ -28394,53 +28401,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, [18227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(973), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18277] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(999), 1, @@ -28487,7 +28447,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18327] = 3, + [18277] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1003), 1, @@ -28534,7 +28494,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18377] = 3, + [18327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1007), 1, @@ -28581,7 +28541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18427] = 3, + [18377] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1011), 1, @@ -28628,7 +28588,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18477] = 3, + [18427] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(568), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + STATE(580), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(939), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [18511] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1015), 1, @@ -28675,71 +28699,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18527] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(570), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - STATE(580), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(915), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [18611] = 3, + [18561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1019), 1, @@ -28786,7 +28746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18661] = 3, + [18611] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1023), 1, @@ -28833,7 +28793,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18711] = 3, + [18661] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1027), 1, @@ -28880,12 +28840,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18761] = 3, + [18711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 1, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(1029), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1031), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [18767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 1, sym_identifier, - ACTIONS(1029), 41, + ACTIONS(1035), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28927,12 +28937,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18811] = 3, + [18817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1033), 41, + ACTIONS(1039), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28974,12 +28984,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18861] = 3, + [18867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 1, + ACTIONS(1045), 1, sym_identifier, - ACTIONS(1025), 41, + ACTIONS(1043), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29021,12 +29031,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18911] = 3, + [18917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(1049), 1, sym_identifier, - ACTIONS(1037), 41, + ACTIONS(1047), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29068,12 +29078,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18961] = 3, + [18967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(1053), 1, sym_identifier, - ACTIONS(1041), 41, + ACTIONS(1051), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29115,12 +29125,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19011] = 3, + [19017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, + ACTIONS(1057), 1, sym_identifier, - ACTIONS(1045), 41, + ACTIONS(1055), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29162,12 +29172,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19061] = 3, + [19067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, + ACTIONS(1061), 1, sym_identifier, - ACTIONS(1049), 41, + ACTIONS(1059), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29209,12 +29219,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19111] = 3, + [19117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(1065), 1, sym_identifier, - ACTIONS(1053), 41, + ACTIONS(1063), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29256,12 +29266,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19161] = 3, + [19167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 1, + ACTIONS(1069), 1, sym_identifier, - ACTIONS(1057), 41, + ACTIONS(1067), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29303,12 +29313,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19211] = 3, + [19217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 1, + ACTIONS(1073), 1, sym_identifier, - ACTIONS(1061), 41, + ACTIONS(1071), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29350,12 +29360,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19261] = 3, + [19267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(1065), 41, + ACTIONS(1075), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29397,12 +29407,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19311] = 3, + [19317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(1069), 41, + ACTIONS(1079), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29444,12 +29454,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19361] = 3, + [19367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1075), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1073), 41, + ACTIONS(1083), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29491,12 +29501,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19411] = 3, + [19417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 1, + ACTIONS(999), 1, sym_identifier, - ACTIONS(1077), 41, + ACTIONS(997), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29538,12 +29548,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19461] = 3, + [19467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 1, + ACTIONS(1089), 1, sym_identifier, - ACTIONS(1057), 41, + ACTIONS(1087), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29585,12 +29595,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19511] = 3, + [19517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 1, + ACTIONS(1093), 1, sym_identifier, - ACTIONS(1081), 41, + ACTIONS(1091), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29632,12 +29642,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19561] = 3, + [19567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(1097), 1, sym_identifier, - ACTIONS(1053), 41, + ACTIONS(1095), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29679,12 +29689,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19611] = 3, + [19617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1087), 1, + ACTIONS(1101), 1, sym_identifier, - ACTIONS(1085), 41, + ACTIONS(1099), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29726,12 +29736,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19661] = 3, + [19667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(1105), 1, sym_identifier, - ACTIONS(1089), 41, + ACTIONS(1103), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29773,12 +29783,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19711] = 3, + [19717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1095), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1093), 41, + ACTIONS(1107), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29820,12 +29830,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19761] = 3, + [19767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1099), 1, + ACTIONS(1113), 1, sym_identifier, - ACTIONS(1097), 41, + ACTIONS(1111), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29867,12 +29877,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19811] = 3, + [19817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1103), 1, + ACTIONS(1117), 1, sym_identifier, - ACTIONS(1101), 41, + ACTIONS(1115), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29914,12 +29924,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19861] = 3, + [19867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1107), 1, + ACTIONS(1121), 1, sym_identifier, - ACTIONS(1105), 41, + ACTIONS(1119), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -29961,12 +29971,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19911] = 3, + [19917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(1101), 1, sym_identifier, - ACTIONS(1109), 41, + ACTIONS(1099), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30008,12 +30018,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19961] = 3, + [19967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym_identifier, - ACTIONS(1113), 41, + ACTIONS(1123), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30055,12 +30065,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20011] = 3, + [20017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1119), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1117), 41, + ACTIONS(1127), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30102,12 +30112,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20061] = 3, + [20067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1133), 1, sym_identifier, - ACTIONS(1121), 41, + ACTIONS(1131), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30149,12 +30159,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20111] = 3, + [20117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1125), 41, + ACTIONS(1135), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30196,12 +30206,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20161] = 3, + [20167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1141), 1, sym_identifier, - ACTIONS(1129), 41, + ACTIONS(1139), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30243,12 +30253,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20211] = 3, + [20217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, + ACTIONS(1145), 1, sym_identifier, - ACTIONS(1133), 41, + ACTIONS(1143), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30290,148 +30300,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20261] = 3, + [20267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, - sym_identifier, - ACTIONS(1137), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 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, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, sym_identifier, - ACTIONS(1141), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20361] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1145), 41, - ts_builtin_sym_end, + anon_sym_LT_GT, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(637), 1, + sym_range_g, + STATE(1481), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(939), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20411] = 3, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [20353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1151), 1, @@ -30478,7 +30412,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20461] = 3, + [20403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1155), 1, @@ -30525,7 +30459,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20511] = 3, + [20453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 1, @@ -30572,7 +30506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20561] = 3, + [20503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1163), 1, @@ -30619,7 +30553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20611] = 3, + [20553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1167), 1, @@ -30666,7 +30600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20661] = 3, + [20603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1171), 1, @@ -30713,7 +30647,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20711] = 3, + [20653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1101), 1, + sym_identifier, + ACTIONS(1099), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1175), 1, @@ -30760,7 +30741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20761] = 3, + [20753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1179), 1, @@ -30807,7 +30788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20811] = 3, + [20803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1183), 1, @@ -30854,7 +30835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20861] = 3, + [20853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1187), 1, @@ -30901,54 +30882,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1157), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20961] = 3, + [20903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, @@ -30995,7 +30929,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21011] = 3, + [20953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1195), 1, @@ -31042,7 +30976,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21061] = 3, + [21003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1101), 1, + sym_identifier, + ACTIONS(1099), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1199), 1, @@ -31089,7 +31070,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21111] = 3, + [21103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1203), 1, @@ -31136,7 +31117,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21161] = 3, + [21153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1207), 1, @@ -31183,7 +31164,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21211] = 3, + [21203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1211), 1, @@ -31230,54 +31211,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1209), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21311] = 3, + [21253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1215), 1, @@ -31324,7 +31258,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21361] = 3, + [21303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1213), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1219), 1, @@ -31371,7 +31352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21411] = 3, + [21403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1223), 1, @@ -31418,7 +31399,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21461] = 3, + [21453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1227), 1, @@ -31465,7 +31446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21511] = 3, + [21503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1231), 1, @@ -31512,7 +31493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21561] = 3, + [21553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, @@ -31559,7 +31540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21611] = 3, + [21603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1239), 1, @@ -31606,7 +31587,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21661] = 3, + [21653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1243), 1, @@ -31653,7 +31634,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21711] = 3, + [21703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1247), 1, @@ -31700,7 +31681,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21761] = 3, + [21753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1209), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1251), 1, @@ -31747,7 +31775,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21811] = 3, + [21853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1255), 1, @@ -31794,7 +31822,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21861] = 3, + [21903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, @@ -31841,7 +31869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21911] = 3, + [21953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1263), 1, @@ -31888,7 +31916,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21961] = 3, + [22003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1267), 1, @@ -31935,7 +31963,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22011] = 3, + [22053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1271), 1, @@ -31982,12 +32010,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22061] = 3, + [22103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(1005), 41, + ACTIONS(1079), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -32029,54 +32057,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 1, - sym_identifier, - ACTIONS(1249), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22161] = 3, + [22153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1275), 1, @@ -32123,7 +32104,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22211] = 3, + [22203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1279), 1, @@ -32170,7 +32151,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22261] = 3, + [22253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1283), 1, @@ -32217,7 +32198,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22311] = 3, + [22303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1287), 1, @@ -32264,7 +32245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22361] = 3, + [22353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1291), 1, @@ -32311,7 +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, - [22411] = 3, + [22403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1295), 1, @@ -32358,7 +32339,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22461] = 3, + [22453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1299), 1, @@ -32405,54 +32386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 1, - sym_identifier, - ACTIONS(1185), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22561] = 3, + [22503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1303), 1, @@ -32499,7 +32433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22611] = 3, + [22553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1307), 1, @@ -32546,7 +32480,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22661] = 3, + [22603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1311), 1, @@ -32593,7 +32527,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22711] = 3, + [22653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1315), 1, @@ -32640,7 +32574,7 @@ 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, + [22703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1319), 1, @@ -32687,7 +32621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22811] = 3, + [22753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1323), 1, @@ -32734,7 +32668,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22861] = 3, + [22803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1327), 1, @@ -32781,7 +32715,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22911] = 3, + [22853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1331), 1, @@ -32828,7 +32762,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22961] = 3, + [22903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1335), 1, @@ -32875,7 +32809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23011] = 3, + [22953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1339), 1, @@ -32922,7 +32856,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23061] = 3, + [23003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1057), 1, + sym_identifier, + ACTIONS(1055), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1343), 1, @@ -32969,7 +32950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23111] = 3, + [23103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1347), 1, @@ -33016,7 +32997,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23161] = 3, + [23153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1321), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1351), 1, @@ -33063,7 +33091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23211] = 3, + [23253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1355), 1, @@ -33110,7 +33138,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23261] = 3, + [23303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1359), 1, @@ -33157,7 +33185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23311] = 3, + [23353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1363), 1, @@ -33204,7 +33232,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23361] = 3, + [23403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1367), 1, @@ -33251,7 +33279,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23411] = 3, + [23453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1371), 1, @@ -33298,7 +33326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23461] = 3, + [23503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1375), 1, @@ -33345,7 +33373,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23511] = 3, + [23553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, @@ -33392,7 +33420,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23561] = 3, + [23603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1383), 1, @@ -33439,7 +33467,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23611] = 3, + [23653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1387), 1, @@ -33486,7 +33514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23661] = 3, + [23703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, @@ -33533,7 +33561,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23711] = 3, + [23753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1395), 1, @@ -33580,7 +33608,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23761] = 3, + [23803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 1, + sym_identifier, + ACTIONS(1357), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1399), 1, @@ -33627,7 +33702,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23811] = 3, + [23903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1403), 1, @@ -33674,7 +33749,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23861] = 3, + [23953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1401), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1407), 1, @@ -33721,54 +33843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1401), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23961] = 3, + [24053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1411), 1, @@ -33815,7 +33890,7 @@ 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, + [24103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1415), 1, @@ -33862,7 +33937,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24061] = 3, + [24153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1419), 1, @@ -33909,7 +33984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24111] = 3, + [24203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1423), 1, @@ -33956,7 +34031,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24161] = 3, + [24253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1427), 1, @@ -34003,7 +34078,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24211] = 3, + [24303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1431), 1, @@ -34050,7 +34125,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24261] = 3, + [24353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1435), 1, @@ -34097,7 +34172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24311] = 3, + [24403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1439), 1, @@ -34144,7 +34219,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24361] = 3, + [24453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1443), 1, @@ -34191,54 +34266,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1395), 1, - sym_identifier, - ACTIONS(1393), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24461] = 3, + [24503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1447), 1, @@ -34285,7 +34313,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24511] = 3, + [24553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1451), 1, @@ -34332,7 +34360,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, + [24603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1455), 1, @@ -34379,7 +34407,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24611] = 3, + [24653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1459), 1, @@ -34426,7 +34454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24661] = 3, + [24703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1463), 1, @@ -34473,7 +34501,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24711] = 3, + [24753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1467), 1, @@ -34520,7 +34548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24761] = 3, + [24803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1471), 1, @@ -34567,7 +34595,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24811] = 3, + [24853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1475), 1, @@ -34614,7 +34642,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24861] = 3, + [24903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1479), 1, @@ -34661,7 +34689,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24911] = 3, + [24953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1483), 1, @@ -34708,7 +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, - [24961] = 3, + [25003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1487), 1, @@ -34755,7 +34783,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25011] = 3, + [25053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1491), 1, @@ -34802,7 +34830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25061] = 3, + [25103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1495), 1, @@ -34849,7 +34877,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25111] = 3, + [25153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1499), 1, @@ -34896,7 +34924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25161] = 3, + [25203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1503), 1, @@ -34943,7 +34971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25211] = 3, + [25253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1507), 1, @@ -34990,7 +35018,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25261] = 3, + [25303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1223), 1, + sym_identifier, + ACTIONS(1221), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1511), 1, @@ -35037,7 +35112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25311] = 3, + [25403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1515), 1, @@ -35084,7 +35159,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25361] = 3, + [25453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1519), 1, @@ -35131,7 +35206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25411] = 3, + [25503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1523), 1, @@ -35178,7 +35253,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25461] = 3, + [25553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1527), 1, @@ -35225,7 +35300,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25511] = 3, + [25603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1531), 1, @@ -35272,7 +35347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25561] = 3, + [25653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1535), 1, @@ -35319,7 +35394,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25611] = 3, + [25703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1539), 1, @@ -35366,7 +35441,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25661] = 3, + [25753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1543), 1, @@ -35413,7 +35488,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25711] = 3, + [25803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1547), 1, @@ -35460,7 +35535,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25761] = 3, + [25853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1551), 1, @@ -35507,54 +35582,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - sym_identifier, - ACTIONS(1545), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [25861] = 3, + [25903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1555), 1, @@ -35601,7 +35629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25911] = 3, + [25953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1559), 1, @@ -35648,7 +35676,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25961] = 3, + [26003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1563), 1, @@ -35695,7 +35723,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26011] = 3, + [26053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1567), 1, @@ -35742,7 +35770,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26061] = 3, + [26103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1571), 1, @@ -35789,7 +35817,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26111] = 3, + [26153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1575), 1, @@ -35836,7 +35864,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26161] = 3, + [26203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1503), 1, + sym_identifier, + ACTIONS(1501), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1579), 1, @@ -35883,7 +35958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26211] = 3, + [26303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1583), 1, @@ -35930,7 +36005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26261] = 3, + [26353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1587), 1, @@ -35977,7 +36052,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26311] = 3, + [26403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1591), 1, @@ -36024,7 +36099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26361] = 3, + [26453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1595), 1, @@ -36071,46 +36146,655 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26411] = 21, + [26503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(1599), 1, + sym_identifier, + ACTIONS(1597), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_LBRACK, - ACTIONS(305), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1603), 1, + sym_identifier, + ACTIONS(1601), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1607), 1, + sym_identifier, + ACTIONS(1605), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1611), 1, + sym_identifier, + ACTIONS(1609), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + sym_identifier, + ACTIONS(1613), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1617), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1623), 1, + sym_identifier, + ACTIONS(1621), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1569), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + sym_identifier, + ACTIONS(1625), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1631), 1, + sym_identifier, + ACTIONS(1629), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1633), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1639), 1, + sym_identifier, + ACTIONS(1637), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1643), 1, + sym_identifier, + ACTIONS(1641), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27153] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(1597), 1, - anon_sym_LT_GT, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(635), 1, + STATE(507), 1, + sym_term, + STATE(637), 1, sym_range_g, - STATE(1523), 1, + STATE(1481), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(915), 3, + ACTIONS(939), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -36121,7 +36805,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -36136,621 +36820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [26497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 1, - sym_identifier, - ACTIONS(1599), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, - sym_identifier, - ACTIONS(1603), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 1, - sym_identifier, - ACTIONS(1607), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 1, - sym_identifier, - ACTIONS(1611), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - sym_identifier, - ACTIONS(1615), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - sym_identifier, - ACTIONS(1619), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - sym_identifier, - ACTIONS(1545), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1625), 1, - sym_identifier, - ACTIONS(1623), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - sym_identifier, - ACTIONS(1545), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - sym_identifier, - ACTIONS(1627), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1633), 1, - sym_identifier, - ACTIONS(1631), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, - sym_identifier, - ACTIONS(1635), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27097] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(1639), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1641), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27153] = 3, + [27236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -36796,7 +36866,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27202] = 3, + [27285] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1651), 1, @@ -36842,7 +36912,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27251] = 3, + [27334] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1655), 1, @@ -36888,75 +36958,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27300] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(1657), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(1515), 1, - sym_chunk_specification, - STATE(1519), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [27383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(1659), 1, sym_identifier, - ACTIONS(1659), 40, + ACTIONS(1657), 40, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37000,9 +37007,9 @@ static const uint16_t ts_small_parse_table[] = { [27432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1663), 1, sym_identifier, - ACTIONS(1663), 40, + ACTIONS(1661), 40, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37043,7 +37050,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27481] = 3, + [27481] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(1665), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(1489), 1, + sym__simple_expression, + STATE(1491), 1, + sym_chunk_specification, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27564] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1669), 1, @@ -37089,69 +37159,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27530] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(635), 1, - sym_range_g, - STATE(1523), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(915), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [27613] = 3, ACTIONS(3), 1, sym_comment, @@ -37201,50 +37208,50 @@ static const uint16_t ts_small_parse_table[] = { [27662] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(583), 1, + STATE(507), 1, + sym_term, + STATE(607), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37259,14 +37266,441 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27742] = 7, + [27742] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 1, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(1372), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27822] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(609), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27902] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(1522), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27982] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(551), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28062] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(581), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28142] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(1728), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28222] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(283), 1, + anon_sym_PLUS, + ACTIONS(285), 1, + anon_sym_DASH, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(507), 1, + sym_term, + STATE(1864), 1, + sym__simple_expression, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(484), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28302] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1681), 1, anon_sym_SLASH, - STATE(472), 1, + STATE(480), 1, aux_sym_term_repeat1, - STATE(510), 1, + STATE(509), 1, sym_multiplying_operator, ACTIONS(1679), 3, anon_sym_STAR, @@ -37308,391 +37742,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27798] = 19, + [28358] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(1854), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27878] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(1722), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27958] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(1401), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28038] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(1503), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28118] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(551), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28198] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(609), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28278] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + ACTIONS(1690), 1, anon_sym_SLASH, - STATE(472), 1, + STATE(480), 1, aux_sym_term_repeat1, - STATE(510), 1, + STATE(509), 1, sym_multiplying_operator, - ACTIONS(1689), 3, + ACTIONS(1687), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1685), 4, + ACTIONS(1683), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1687), 30, + ACTIONS(1685), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -37723,117 +37791,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28334] = 22, + [28414] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1695), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1697), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1699), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1701), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1703), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1705), 1, - aux_sym_with_clause_token1, - ACTIONS(1707), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1713), 1, - aux_sym_allocator_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1719), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1721), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1723), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1727), 1, - aux_sym_interface_type_definition_token2, - STATE(1248), 1, - sym_null_exclusion, - STATE(1368), 1, - sym_record_definition, - ACTIONS(1715), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1246), 19, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - sym__type_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_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, - [28420] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(608), 1, + STATE(507), 1, + sym_term, + STATE(577), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37848,53 +37852,53 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28500] = 19, + [28494] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(1421), 1, + STATE(507), 1, + sym_term, + STATE(1779), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37909,53 +37913,53 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28580] = 19, + [28574] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(289), 1, + ACTIONS(283), 1, anon_sym_PLUS, - ACTIONS(291), 1, + ACTIONS(285), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(579), 1, + STATE(507), 1, + sym_term, + STATE(1454), 1, sym__simple_expression, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37970,86 +37974,25 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28660] = 19, + [28654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(289), 1, - anon_sym_PLUS, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(503), 1, - sym_term, - STATE(507), 1, - sym_unary_adding_operator, - STATE(1836), 1, - sym__simple_expression, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + ACTIONS(1681), 1, anon_sym_SLASH, STATE(479), 1, aux_sym_term_repeat1, - STATE(510), 1, + STATE(509), 1, sym_multiplying_operator, - ACTIONS(1689), 3, + ACTIONS(1679), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1729), 4, + ACTIONS(1693), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1731), 30, + ACTIONS(1695), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38080,17 +38023,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28796] = 3, + [28710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 6, + ACTIONS(1697), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1735), 33, + ACTIONS(1699), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38124,19 +38067,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28843] = 4, + [28757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1705), 1, anon_sym_STAR_STAR, - ACTIONS(1737), 6, + ACTIONS(1701), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1739), 32, + ACTIONS(1703), 32, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38169,17 +38112,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28892] = 3, + [28806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 6, + ACTIONS(1707), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(951), 33, + ACTIONS(1709), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38213,17 +38156,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28939] = 3, + [28853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 6, + ACTIONS(1711), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1745), 33, + ACTIONS(1713), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38257,17 +38200,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28986] = 3, + [28900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 6, + ACTIONS(1715), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1749), 33, + ACTIONS(1717), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38301,17 +38244,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29033] = 3, + [28947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1751), 6, + ACTIONS(1719), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1753), 33, + ACTIONS(1721), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38345,55 +38288,274 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29080] = 20, + [28994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1693), 1, + ACTIONS(907), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(909), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1723), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1725), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1729), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1731), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1733), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1737), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29227] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1739), 1, anon_sym_LPAREN, - ACTIONS(1695), 1, + ACTIONS(1741), 1, aux_sym_attribute_designator_token1, - ACTIONS(1697), 1, + ACTIONS(1743), 1, aux_sym_attribute_designator_token2, - ACTIONS(1699), 1, + ACTIONS(1745), 1, aux_sym_attribute_designator_token3, - ACTIONS(1701), 1, + ACTIONS(1747), 1, aux_sym_attribute_designator_token4, - ACTIONS(1707), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1727), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1755), 1, + ACTIONS(1749), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1751), 1, aux_sym_with_clause_token1, + ACTIONS(1753), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, ACTIONS(1757), 1, - aux_sym_allocator_token1, + aux_sym_primary_null_token1, ACTIONS(1759), 1, + aux_sym_allocator_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1765), 1, aux_sym_private_type_declaration_token1, - ACTIONS(1761), 1, + ACTIONS(1767), 1, aux_sym_private_type_declaration_token2, - STATE(1248), 1, - sym_null_exclusion, - STATE(1368), 1, - sym_record_definition, - ACTIONS(1715), 3, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1769), 1, aux_sym_private_extension_declaration_token1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1773), 1, + aux_sym_interface_type_definition_token2, + STATE(1131), 1, + sym_null_exclusion, + STATE(1399), 1, + sym_record_definition, + ACTIONS(1761), 2, + aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1161), 19, + STATE(1232), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, sym__type_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, + sym_array_type_definition, sym_enumeration_type_definition, sym__integer_type_definition, sym_modular_type_definition, @@ -38406,139 +38568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [29161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1765), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1769), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1773), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29302] = 3, + [29311] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1775), 5, @@ -38581,7 +38611,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, - [29348] = 3, + [29357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1779), 5, @@ -38624,122 +38654,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29394] = 3, + [29403] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1785), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1789), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29486] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1791), 1, + ACTIONS(1783), 1, sym_tick, - ACTIONS(1793), 1, + ACTIONS(1785), 1, aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, + ACTIONS(1787), 1, aux_sym_attribute_designator_token3, - ACTIONS(1797), 1, + ACTIONS(1789), 1, aux_sym_range_attribute_designator_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - ACTIONS(1639), 6, + ACTIONS(1029), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - STATE(617), 6, + STATE(623), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1641), 20, + ACTIONS(1031), 20, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38760,375 +38704,214 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [29546] = 22, + [29463] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1739), 1, + anon_sym_LPAREN, + ACTIONS(1741), 1, aux_sym_attribute_designator_token1, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1727), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1799), 1, - anon_sym_LPAREN, - ACTIONS(1801), 1, + ACTIONS(1743), 1, aux_sym_attribute_designator_token2, - ACTIONS(1803), 1, + ACTIONS(1745), 1, aux_sym_attribute_designator_token3, - ACTIONS(1805), 1, + ACTIONS(1747), 1, aux_sym_attribute_designator_token4, - ACTIONS(1807), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1809), 1, - aux_sym_with_clause_token1, - ACTIONS(1811), 1, + ACTIONS(1753), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1813), 1, - aux_sym_allocator_token1, - ACTIONS(1815), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1817), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1819), 1, - aux_sym_private_extension_declaration_token1, - STATE(1248), 1, - sym_null_exclusion, - STATE(1295), 1, - sym_interface_type_definition, - ACTIONS(1715), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1207), 3, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(1299), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1101), 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, - [29629] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1727), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1799), 1, - anon_sym_LPAREN, - ACTIONS(1801), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1803), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1805), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1807), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1809), 1, - aux_sym_with_clause_token1, - ACTIONS(1811), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1813), 1, - aux_sym_allocator_token1, - ACTIONS(1815), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1819), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1821), 1, - aux_sym_private_type_declaration_token2, - STATE(1248), 1, - sym_null_exclusion, - STATE(1295), 1, - sym_interface_type_definition, - ACTIONS(1715), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1207), 3, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(1299), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1065), 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, - [29712] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_DASH, - STATE(505), 1, - aux_sym__simple_expression_repeat1, - STATE(508), 1, - sym_binary_adding_operator, - ACTIONS(1827), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1823), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1825), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29764] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_DASH, - STATE(506), 1, - aux_sym__simple_expression_repeat1, - STATE(508), 1, - sym_binary_adding_operator, - ACTIONS(1827), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1831), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1833), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29816] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_DASH, - STATE(506), 1, - aux_sym__simple_expression_repeat1, - STATE(508), 1, - sym_binary_adding_operator, - ACTIONS(1827), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1835), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1837), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29868] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1846), 1, - anon_sym_DASH, - STATE(506), 1, - aux_sym__simple_expression_repeat1, - STATE(508), 1, - sym_binary_adding_operator, - ACTIONS(1843), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1839), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1841), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29920] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - sym_numeric_literal, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - aux_sym_factor_abs_token1, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(1757), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(509), 1, - sym_term, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(487), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29988] = 15, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1773), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1791), 1, + aux_sym_with_clause_token1, + ACTIONS(1793), 1, + aux_sym_allocator_token1, + ACTIONS(1795), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1797), 1, + aux_sym_private_type_declaration_token2, + STATE(1131), 1, + sym_null_exclusion, + STATE(1399), 1, + sym_record_definition, + ACTIONS(1761), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1217), 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, + [29542] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(1805), 1, + anon_sym_DASH, + STATE(503), 1, + aux_sym__simple_expression_repeat1, + STATE(504), 1, + sym_binary_adding_operator, + ACTIONS(1803), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1799), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1801), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29594] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(506), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1803), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1799), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1801), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29646] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(506), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1803), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1807), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1809), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29698] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, @@ -39136,24 +38919,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(511), 1, sym_term, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39168,88 +38951,45 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30056] = 7, + [29766] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_DASH, - STATE(504), 1, - aux_sym__simple_expression_repeat1, - STATE(508), 1, - sym_binary_adding_operator, - ACTIONS(1827), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1835), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1837), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30108] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, + ACTIONS(281), 1, sym_numeric_literal, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(305), 1, + ACTIONS(299), 1, aux_sym_factor_abs_token1, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(495), 1, aux_sym_relation_membership_token1, ACTIONS(499), 1, sym_identifier, - STATE(1876), 1, + STATE(501), 1, + sym_term, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(499), 4, + STATE(484), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(487), 14, + STATE(486), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39264,15 +39004,274 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30173] = 3, + [29834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 4, + ACTIONS(1818), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(506), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1811), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1813), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29886] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, + anon_sym_DASH, + STATE(502), 1, + aux_sym__simple_expression_repeat1, + STATE(504), 1, + sym_binary_adding_operator, + ACTIONS(1803), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1821), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29938] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1773), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1825), 1, + anon_sym_LPAREN, + ACTIONS(1827), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1829), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1831), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1833), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1835), 1, + aux_sym_with_clause_token1, + ACTIONS(1837), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1839), 1, + aux_sym_allocator_token1, + ACTIONS(1841), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1843), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1845), 1, + aux_sym_private_extension_declaration_token1, + STATE(1131), 1, + sym_null_exclusion, + STATE(1235), 1, + sym_array_type_definition, + STATE(1236), 1, + sym_interface_type_definition, + ACTIONS(1761), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1233), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1070), 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, + [30019] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + sym_numeric_literal, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(299), 1, + aux_sym_factor_abs_token1, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, + ACTIONS(495), 1, + aux_sym_relation_membership_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(497), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(486), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [30084] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1773), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1825), 1, + anon_sym_LPAREN, + ACTIONS(1827), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1829), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1831), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1833), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1835), 1, + aux_sym_with_clause_token1, + ACTIONS(1837), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1839), 1, + aux_sym_allocator_token1, + ACTIONS(1841), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1845), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1847), 1, + aux_sym_private_type_declaration_token2, + STATE(1131), 1, + sym_null_exclusion, + STATE(1235), 1, + sym_array_type_definition, + STATE(1236), 1, + sym_interface_type_definition, + ACTIONS(1761), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1233), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1016), 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, + [30165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1841), 30, + ACTIONS(1813), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39303,7 +39302,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, - [30215] = 5, + [30207] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1849), 1, @@ -39343,19 +39342,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [30260] = 6, + [30252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(1791), 1, + ACTIONS(1783), 1, sym_tick, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - ACTIONS(1639), 2, + ACTIONS(1029), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(1641), 27, + ACTIONS(1031), 27, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -39383,25 +39382,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30306] = 7, + [30298] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 1, + ACTIONS(783), 1, anon_sym_DOT, ACTIONS(1856), 1, anon_sym_EQ_GT, ACTIONS(1859), 1, anon_sym_PIPE, - STATE(1208), 1, + STATE(1289), 1, aux_sym_component_choice_list_repeat1, - ACTIONS(803), 6, + ACTIONS(779), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(805), 22, + ACTIONS(781), 22, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39424,25 +39423,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30354] = 7, + [30346] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 1, + ACTIONS(783), 1, anon_sym_DOT, ACTIONS(1862), 1, anon_sym_EQ_GT, ACTIONS(1864), 1, anon_sym_PIPE, - STATE(1208), 1, + STATE(1289), 1, aux_sym_component_choice_list_repeat1, - ACTIONS(803), 6, + ACTIONS(779), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(805), 21, + ACTIONS(781), 21, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39464,7 +39463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30401] = 3, + [30393] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1866), 1, @@ -39500,61 +39499,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [30440] = 5, + [30432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1870), 1, - sym_identifier, - ACTIONS(1872), 4, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - ACTIONS(1743), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1745), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - anon_sym_EQ_GT, - 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_PIPE, - [30482] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(807), 1, + ACTIONS(783), 1, anon_sym_DOT, - ACTIONS(1874), 1, + ACTIONS(1870), 1, anon_sym_COMMA, - ACTIONS(1876), 1, + ACTIONS(1872), 1, anon_sym_COLON, - STATE(1080), 1, + STATE(1255), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(803), 5, + ACTIONS(779), 5, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(805), 21, + ACTIONS(781), 21, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_LT_EQ, @@ -39576,111 +39538,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30528] = 11, + [30478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(295), 1, - anon_sym_LBRACK, - ACTIONS(309), 1, - aux_sym_allocator_token1, - ACTIONS(483), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(1878), 1, - sym_numeric_literal, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(1876), 4, sym_string_literal, sym_character_literal, sym_target_name, - STATE(461), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(497), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [30581] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_EQ_GT, - ACTIONS(1864), 1, - anon_sym_PIPE, - ACTIONS(1876), 1, - anon_sym_COLON, - ACTIONS(1880), 1, - anon_sym_DOT, - ACTIONS(1882), 1, - anon_sym_COMMA, - STATE(1080), 1, - aux_sym__defining_identifier_list_repeat1, - STATE(1208), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(803), 6, + anon_sym_LBRACK, + ACTIONS(1715), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(805), 16, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1717), 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_LPAREN, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, aux_sym_expression_token1, aux_sym_expression_token3, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [30632] = 11, + anon_sym_PIPE, + [30520] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, + ACTIONS(431), 1, + aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(1885), 1, + ACTIONS(1878), 1, sym_numeric_literal, - ACTIONS(1887), 1, - aux_sym_primary_null_token1, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -39701,24 +39617,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30685] = 7, + [30573] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1886), 1, aux_sym_chunk_specification_token1, - ACTIONS(1897), 1, + ACTIONS(1888), 1, aux_sym_relation_membership_token1, - STATE(471), 1, + STATE(481), 1, sym_relational_operator, - ACTIONS(1889), 3, + ACTIONS(1880), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1891), 3, + ACTIONS(1882), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1893), 20, + ACTIONS(1884), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -39739,34 +39655,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30730] = 11, + [30618] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(1862), 1, + anon_sym_EQ_GT, + ACTIONS(1864), 1, + anon_sym_PIPE, + ACTIONS(1872), 1, + anon_sym_COLON, + ACTIONS(1890), 1, + anon_sym_DOT, + ACTIONS(1892), 1, + anon_sym_COMMA, + STATE(1255), 1, + aux_sym__defining_identifier_list_repeat1, + STATE(1289), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(779), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(781), 16, + 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, - ACTIONS(295), 1, + 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, + [30669] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(1899), 1, + ACTIONS(1895), 1, sym_numeric_literal, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(461), 5, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(496), 14, + STATE(495), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39781,28 +39738,70 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30783] = 11, + [30722] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - ACTIONS(295), 1, + ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(309), 1, + ACTIONS(303), 1, aux_sym_allocator_token1, - ACTIONS(483), 1, + ACTIONS(431), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(1885), 1, + ACTIONS(1897), 1, sym_numeric_literal, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(493), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(461), 5, + STATE(294), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(494), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [30775] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(289), 1, + anon_sym_LBRACK, + ACTIONS(303), 1, + aux_sym_allocator_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1878), 1, + sym_numeric_literal, + ACTIONS(1899), 1, + aux_sym_primary_null_token1, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(294), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -39823,22 +39822,22 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30836] = 9, + [30828] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(927), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1793), 1, + ACTIONS(1785), 1, aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, + ACTIONS(1787), 1, aux_sym_attribute_designator_token3, - ACTIONS(1797), 1, + ACTIONS(1789), 1, aux_sym_range_attribute_designator_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(623), 6, + STATE(630), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, @@ -39861,7 +39860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30883] = 14, + [30875] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -39882,15 +39881,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1912), 1, + STATE(1789), 1, sym__defining_identifier_list, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(527), 12, + STATE(530), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -39903,61 +39902,19 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [30939] = 14, + [30931] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1911), 1, - sym_identifier, - ACTIONS(1914), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1917), 1, - aux_sym_package_specification_token3, - ACTIONS(1919), 1, - aux_sym_relation_membership_token1, - ACTIONS(1922), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1925), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1928), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1931), 1, - aux_sym_global_mode_token1, - ACTIONS(1934), 1, - aux_sym_pragma_g_token1, - STATE(915), 1, - sym_overriding_indicator, - STATE(1912), 1, - sym__defining_identifier_list, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(527), 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, - [30995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1937), 1, aux_sym_record_component_association_list_token1, - ACTIONS(1743), 6, + ACTIONS(1715), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1745), 19, + ACTIONS(1717), 19, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39977,82 +39934,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [31031] = 14, + [30967] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1939), 1, - aux_sym_package_specification_token3, - STATE(915), 1, - sym_overriding_indicator, - STATE(1912), 1, - sym__defining_identifier_list, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(526), 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, - [31087] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1791), 1, + ACTIONS(1783), 1, sym_tick, - ACTIONS(1793), 1, + ACTIONS(1785), 1, aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, + ACTIONS(1787), 1, aux_sym_attribute_designator_token3, - ACTIONS(1797), 1, + ACTIONS(1789), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1944), 1, + ACTIONS(1916), 1, aux_sym_iterator_filter_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1276), 1, + STATE(1215), 1, sym_iterator_filter, - ACTIONS(1639), 2, + ACTIONS(1029), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(1941), 3, + ACTIONS(1913), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - STATE(617), 6, + STATE(623), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1641), 7, + ACTIONS(1031), 7, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -40060,7 +39975,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [31141] = 14, + [31021] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + sym_identifier, + ACTIONS(1922), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1925), 1, + aux_sym_package_specification_token3, + ACTIONS(1927), 1, + aux_sym_relation_membership_token1, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1933), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1936), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1939), 1, + aux_sym_global_mode_token1, + ACTIONS(1942), 1, + aux_sym_pragma_g_token1, + STATE(936), 1, + sym_overriding_indicator, + STATE(1789), 1, + sym__defining_identifier_list, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(529), 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, + [31077] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40079,17 +40036,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1939), 1, + ACTIONS(1945), 1, aux_sym_package_specification_token3, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1912), 1, + STATE(1789), 1, sym__defining_identifier_list, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(527), 12, + STATE(529), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40102,40 +40059,82 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [31197] = 13, + [31133] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1903), 1, + sym_identifier, + ACTIONS(1905), 1, + aux_sym_package_specification_token3, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(936), 1, + sym_overriding_indicator, + STATE(1789), 1, + sym__defining_identifier_list, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(529), 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, + [31189] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1791), 1, + ACTIONS(1783), 1, sym_tick, - ACTIONS(1793), 1, + ACTIONS(1785), 1, aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, + ACTIONS(1787), 1, aux_sym_attribute_designator_token3, - ACTIONS(1797), 1, + ACTIONS(1789), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1944), 1, + ACTIONS(1916), 1, aux_sym_iterator_filter_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1171), 1, + STATE(1153), 1, sym_iterator_filter, - ACTIONS(1639), 2, + ACTIONS(1029), 2, anon_sym_DASH, anon_sym_STAR, ACTIONS(1947), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - STATE(617), 6, + STATE(623), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1641), 7, + ACTIONS(1031), 7, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -40143,7 +40142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [31251] = 14, + [31243] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40164,11 +40163,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, ACTIONS(1950), 1, aux_sym_package_specification_token3, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1912), 1, + STATE(1789), 1, sym__defining_identifier_list, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, @@ -40185,7 +40184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [31307] = 15, + [31299] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40208,15 +40207,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_package_specification_token3, ACTIONS(1956), 1, aux_sym_allocator_token1, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1606), 1, + STATE(1533), 1, sym_protected_definition, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(549), 10, + STATE(559), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40227,23 +40226,23 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31364] = 6, + [31356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_DOT, ACTIONS(1958), 1, sym_tick, ACTIONS(1961), 1, anon_sym_EQ_GT, - ACTIONS(803), 6, + ACTIONS(779), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(805), 16, + ACTIONS(781), 16, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40260,7 +40259,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [31403] = 15, + [31395] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40283,15 +40282,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_package_specification_token3, ACTIONS(1963), 1, aux_sym_allocator_token1, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1657), 1, + STATE(1723), 1, sym_protected_definition, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(549), 10, + STATE(559), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40302,7 +40301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31460] = 15, + [31452] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40325,15 +40324,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_package_specification_token3, ACTIONS(1965), 1, aux_sym_allocator_token1, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1499), 1, + STATE(1484), 1, sym_protected_definition, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(549), 10, + STATE(559), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40344,7 +40343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31517] = 15, + [31509] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40367,15 +40366,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_package_specification_token3, ACTIONS(1967), 1, aux_sym_allocator_token1, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1891), 1, + STATE(1872), 1, sym_protected_definition, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(549), 10, + STATE(559), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40386,7 +40385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31574] = 15, + [31566] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40409,15 +40408,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_package_specification_token3, ACTIONS(1969), 1, aux_sym_allocator_token1, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1890), 1, + STATE(1873), 1, sym_protected_definition, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(549), 10, + STATE(559), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40428,207 +40427,38 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31631] = 14, + [31623] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - STATE(915), 1, - sym_overriding_indicator, - STATE(1828), 1, - sym_protected_definition, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(549), 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, - [31685] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - STATE(915), 1, - sym_overriding_indicator, - STATE(1636), 1, - sym_protected_definition, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(549), 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, - [31739] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - STATE(915), 1, - sym_overriding_indicator, - STATE(1637), 1, - sym_protected_definition, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(549), 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, - [31793] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - STATE(915), 1, - sym_overriding_indicator, - STATE(1759), 1, - sym_protected_definition, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(549), 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, - [31847] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1890), 1, + anon_sym_DOT, ACTIONS(1971), 1, - aux_sym_package_specification_token3, - ACTIONS(1973), 1, - aux_sym_subunit_token1, - ACTIONS(1975), 1, - aux_sym_entry_declaration_token1, - STATE(992), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1038), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(548), 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, - [31901] = 14, + anon_sym_COLON, + ACTIONS(779), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(781), 17, + 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_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, + [31659] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40649,15 +40479,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(1954), 1, aux_sym_package_specification_token3, - STATE(915), 1, + STATE(936), 1, sym_overriding_indicator, - STATE(1472), 1, + STATE(1765), 1, sym_protected_definition, - STATE(1030), 3, + STATE(1064), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(549), 10, + STATE(559), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40668,12 +40498,172 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31955] = 3, + [31713] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1952), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1954), 1, + aux_sym_package_specification_token3, + STATE(936), 1, + sym_overriding_indicator, + STATE(1640), 1, + sym_protected_definition, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(559), 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, + [31767] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1952), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1954), 1, + aux_sym_package_specification_token3, + STATE(936), 1, + sym_overriding_indicator, + STATE(1639), 1, + sym_protected_definition, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(559), 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, + [31821] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1952), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1954), 1, + aux_sym_package_specification_token3, + STATE(936), 1, + sym_overriding_indicator, + STATE(1499), 1, + sym_protected_definition, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(559), 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, + [31875] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1952), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1954), 1, + aux_sym_package_specification_token3, + STATE(936), 1, + sym_overriding_indicator, + STATE(1836), 1, + sym_protected_definition, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(559), 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, + [31929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(1977), 23, + ACTIONS(1973), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -40697,38 +40687,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, - [31987] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_DOT, - ACTIONS(1981), 1, - anon_sym_COLON, - ACTIONS(803), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(805), 17, - 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_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, - [32023] = 13, + [31961] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40741,19 +40700,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1983), 1, + ACTIONS(1977), 1, aux_sym_package_specification_token3, - STATE(992), 1, + ACTIONS(1979), 1, + aux_sym_subunit_token1, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + STATE(964), 1, sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1038), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1011), 1, sym_procedure_specification, - STATE(557), 12, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1087), 1, + sym_function_specification, + STATE(548), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -40766,45 +40727,119 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [32074] = 13, + [32015] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, ACTIONS(53), 1, aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, ACTIONS(1907), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1950), 1, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1983), 1, aux_sym_package_specification_token3, - ACTIONS(1985), 1, - aux_sym_compilation_unit_token1, - STATE(915), 1, + STATE(964), 1, sym_overriding_indicator, - STATE(1030), 3, - sym_function_specification, + STATE(1011), 1, sym_procedure_specification, + STATE(1067), 1, sym__subprogram_specification, - STATE(561), 10, + STATE(1087), 1, + sym_function_specification, + STATE(552), 12, + sym_subprogram_body, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, + sym__protected_operation_item, + sym_entry_body, sym_enumeration_representation_clause, - sym_pragma_g, + sym_null_procedure_declaration, sym_record_representation_clause, sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32125] = 2, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [32066] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_LPAREN, + ACTIONS(1783), 1, + sym_tick, + ACTIONS(1785), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1787), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1789), 1, + aux_sym_range_attribute_designator_token1, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(1029), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(623), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1031), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32113] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + STATE(964), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1087), 1, + sym_function_specification, + STATE(548), 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, + [32164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1987), 23, @@ -40831,10 +40866,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32154] = 2, + [32193] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 23, + ACTIONS(1989), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1992), 1, + aux_sym_package_specification_token3, + ACTIONS(1994), 1, + aux_sym_relation_membership_token1, + ACTIONS(1997), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2000), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2003), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2006), 1, + aux_sym_global_mode_token1, + STATE(964), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1087), 1, + sym_function_specification, + STATE(552), 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, + [32244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2011), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2009), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32281] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 1, + aux_sym_expression_token1, + ACTIONS(2017), 1, + aux_sym_expression_token3, + ACTIONS(2019), 1, + aux_sym_expression_token5, + STATE(586), 1, + aux_sym_expression_repeat1, + STATE(587), 1, + aux_sym_expression_repeat2, + STATE(588), 1, + aux_sym_expression_repeat3, + ACTIONS(2013), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -40858,114 +40995,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, - [32183] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(1993), 1, - aux_sym_with_clause_token2, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(1991), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32220] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1999), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2001), 1, - aux_sym_component_definition_token1, - ACTIONS(2003), 1, - aux_sym_exception_declaration_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(953), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(957), 4, - sym_access_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32275] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(1791), 1, - sym_tick, - ACTIONS(1793), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, - aux_sym_attribute_designator_token3, - ACTIONS(2007), 1, - aux_sym_range_attribute_designator_token1, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(1639), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2005), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(617), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1641), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32322] = 13, + [32351] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40978,18 +41008,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2023), 1, + aux_sym_package_specification_token3, + STATE(964), 1, + sym_overriding_indicator, + STATE(1011), 1, + sym_procedure_specification, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1087), 1, + sym_function_specification, + STATE(552), 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, + [32402] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_LPAREN, + ACTIONS(1783), 1, + sym_tick, + ACTIONS(1785), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1787), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2025), 1, + aux_sym_range_attribute_designator_token1, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(1029), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(623), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1031), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32449] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2027), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2032), 1, + aux_sym_relation_membership_token1, + ACTIONS(2035), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2038), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2041), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2044), 1, + aux_sym_global_mode_token1, + ACTIONS(2047), 1, + aux_sym_pragma_g_token1, + STATE(936), 1, + sym_overriding_indicator, + ACTIONS(2030), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(558), 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, + [32498] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1950), 1, + aux_sym_package_specification_token3, + ACTIONS(2050), 1, + aux_sym_compilation_unit_token1, + STATE(936), 1, + sym_overriding_indicator, + STATE(1064), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(558), 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, + [32549] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1981), 1, aux_sym_entry_declaration_token1, ACTIONS(1983), 1, aux_sym_package_specification_token3, - STATE(992), 1, + STATE(964), 1, sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1038), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1011), 1, sym_procedure_specification, + STATE(1067), 1, + sym__subprogram_specification, + STATE(1087), 1, + sym_function_specification, STATE(556), 12, sym_subprogram_body, sym__aspect_clause, @@ -41003,86 +41182,10 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [32373] = 13, + [32600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2009), 1, - aux_sym_package_specification_token3, - STATE(992), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1038), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(557), 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, - [32424] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2014), 1, - aux_sym_package_specification_token3, - ACTIONS(2016), 1, - aux_sym_relation_membership_token1, - ACTIONS(2019), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2022), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2025), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2028), 1, - aux_sym_global_mode_token1, - STATE(992), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1038), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(557), 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, - [32475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 23, + ACTIONS(2052), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41106,267 +41209,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32504] = 13, + [32629] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1971), 1, - aux_sym_package_specification_token3, - ACTIONS(1975), 1, - aux_sym_entry_declaration_token1, - STATE(992), 1, - sym_overriding_indicator, - STATE(1020), 1, - sym_function_specification, - STATE(1038), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_procedure_specification, - STATE(548), 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, - [32555] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 1, - aux_sym_expression_token1, - ACTIONS(2037), 1, - aux_sym_expression_token3, - ACTIONS(2039), 1, - aux_sym_expression_token5, - STATE(586), 1, - aux_sym_expression_repeat3, - STATE(587), 1, - aux_sym_expression_repeat2, - STATE(588), 1, - aux_sym_expression_repeat1, - ACTIONS(2033), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32596] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2041), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2046), 1, - aux_sym_relation_membership_token1, - ACTIONS(2049), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2052), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2055), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2058), 1, - aux_sym_global_mode_token1, - ACTIONS(2061), 1, - aux_sym_pragma_g_token1, - STATE(915), 1, - sym_overriding_indicator, - ACTIONS(2044), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(1030), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(561), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32645] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(1791), 1, - sym_tick, - ACTIONS(1793), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1797), 1, - aux_sym_range_attribute_designator_token1, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(1639), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2005), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(617), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1641), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32692] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2054), 1, sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1999), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2001), 1, - aux_sym_component_definition_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(953), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(957), 4, - sym_access_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2066), 1, - anon_sym_PIPE, - STATE(564), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2064), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2057), 1, 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, + ACTIONS(2062), 1, 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, - [32775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2071), 1, - anon_sym_PIPE, - STATE(564), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2069), 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, - [32806] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(2073), 1, - aux_sym_package_specification_token1, - ACTIONS(2076), 1, - aux_sym_with_clause_token2, - ACTIONS(2078), 1, + ACTIONS(2065), 1, aux_sym_use_clause_token2, - ACTIONS(2080), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2083), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1764), 1, + ACTIONS(2068), 1, + aux_sym_pragma_g_token1, + STATE(1808), 1, sym__defining_identifier_list, - STATE(868), 2, + STATE(870), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - STATE(568), 10, + ACTIONS(2060), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(562), 10, sym_use_clause, sym__generic_formal_parameter_declaration, sym_formal_object_declaration, @@ -41377,170 +41242,228 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [32853] = 12, + [32672] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1903), 1, + sym_identifier, + ACTIONS(2071), 1, + aux_sym_package_specification_token1, + ACTIONS(2074), 1, + aux_sym_with_clause_token2, + ACTIONS(2076), 1, + aux_sym_use_clause_token2, + ACTIONS(2078), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2081), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1808), 1, + sym__defining_identifier_list, + STATE(870), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + STATE(564), 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, + [32719] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1903), 1, + sym_identifier, + ACTIONS(2074), 1, + aux_sym_with_clause_token2, + ACTIONS(2076), 1, + aux_sym_use_clause_token2, + STATE(1808), 1, + sym__defining_identifier_list, + STATE(870), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2084), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(562), 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, + [32762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2088), 1, + anon_sym_PIPE, + STATE(571), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2086), 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, + [32793] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - ACTIONS(2090), 1, + ACTIONS(2094), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2096), 1, + aux_sym_component_definition_token1, + ACTIONS(2098), 1, aux_sym_exception_declaration_token1, - STATE(691), 1, + STATE(687), 1, sym_null_exclusion, - STATE(1660), 1, - sym_access_definition, - STATE(1876), 1, + STATE(960), 1, + sym__subtype_indication, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2086), 3, + STATE(957), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - ACTIONS(2088), 5, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2088), 1, + anon_sym_PIPE, + STATE(565), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2100), 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, + [32877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_DOT_DOT, + ACTIONS(2102), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32906] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2110), 1, + aux_sym_exception_declaration_token1, + STATE(693), 1, + sym_null_exclusion, + STATE(1721), 1, + sym_access_definition, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2106), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + ACTIONS(2108), 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(1108), 5, + STATE(1095), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32900] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_with_clause_token2, - ACTIONS(2078), 1, - aux_sym_use_clause_token2, - STATE(1764), 1, - sym__defining_identifier_list, - STATE(868), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2092), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(571), 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, - [32943] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2094), 1, - aux_sym_general_access_modifier_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(946), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(972), 4, - sym_access_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_DOT_DOT, - ACTIONS(2096), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33021] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 1, - sym_identifier, - ACTIONS(2103), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2108), 1, - aux_sym_with_clause_token2, - ACTIONS(2111), 1, - aux_sym_use_clause_token2, - ACTIONS(2114), 1, - aux_sym_pragma_g_token1, - STATE(1764), 1, - sym__defining_identifier_list, - STATE(868), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2106), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(571), 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, - [33064] = 14, + [32953] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -41549,25 +41472,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(2119), 1, + ACTIONS(2114), 1, aux_sym_iterator_filter_token1, STATE(28), 1, sym_procedure_call_statement, - STATE(1062), 1, + STATE(1063), 1, sym__guard_select, - STATE(1178), 1, + STATE(1220), 1, sym_guard, - STATE(1415), 1, + STATE(1393), 1, sym_entry_call_alternative, - STATE(1741), 1, + STATE(1794), 1, sym_triggering_alternative, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2117), 3, + ACTIONS(2112), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(39), 3, + STATE(46), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, @@ -41577,14 +41500,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33115] = 4, + [33004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(2118), 1, anon_sym_PIPE, - STATE(565), 1, + STATE(571), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2121), 19, + ACTIONS(2116), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41604,89 +41527,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33146] = 14, + [33035] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(2125), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2127), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2129), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(641), 1, - sym_general_access_modifier, - STATE(786), 1, - sym_null_exclusion, - STATE(1273), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2123), 2, - aux_sym_use_clause_token1, - aux_sym_general_access_modifier_token1, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33222] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(927), 1, + ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1793), 1, + ACTIONS(1785), 1, aux_sym_attribute_designator_token2, - ACTIONS(1795), 1, + ACTIONS(1787), 1, aux_sym_attribute_designator_token3, - ACTIONS(1797), 1, + ACTIONS(1789), 1, aux_sym_range_attribute_designator_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(617), 6, + STATE(623), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(2005), 8, + ACTIONS(1985), 8, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, anon_sym_SEMI, @@ -41695,27 +41558,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - [33262] = 9, + [33075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, - sym_identifier, - ACTIONS(2135), 1, - anon_sym_LPAREN, - ACTIONS(2137), 1, - anon_sym_LBRACK, - ACTIONS(2141), 1, + ACTIONS(2121), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, aux_sym_range_attribute_designator_token1, - STATE(209), 1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33101] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + sym_identifier, + ACTIONS(2125), 1, + anon_sym_LPAREN, + ACTIONS(2127), 1, + anon_sym_LBRACK, + ACTIONS(2131), 1, + aux_sym_range_attribute_designator_token1, + STATE(222), 1, sym_attribute_designator, - STATE(558), 1, + STATE(561), 1, sym_range_attribute_designator, - ACTIONS(2139), 4, + ACTIONS(2129), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, aux_sym_attribute_designator_token4, - STATE(207), 10, + STATE(190), 10, sym__aggregate, sym__delta_aggregate, sym_extension_aggregate, @@ -41726,315 +41613,251 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [33302] = 12, + [33141] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1997), 1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(966), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(972), 4, - sym_access_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33426] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1725), 1, - aux_sym_unconstrained_array_definition_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(997), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(996), 4, - sym_access_definition, - sym__array_type_definition, - sym_unconstrained_array_definition, - sym_constrained_array_definition, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33498] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 1, - aux_sym_chunk_specification_token1, - ACTIONS(1897), 1, - aux_sym_relation_membership_token1, - ACTIONS(2098), 1, - anon_sym_DOT_DOT, - STATE(471), 1, - sym_relational_operator, - ACTIONS(1889), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1891), 3, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1893), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - anon_sym_PIPE, - [33535] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2149), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2151), 1, + ACTIONS(2096), 1, aux_sym_component_definition_token1, - STATE(718), 1, + ACTIONS(2133), 1, + aux_sym_general_access_modifier_token1, + STATE(687), 1, sym_null_exclusion, - STATE(1127), 1, + STATE(960), 1, sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - STATE(1103), 2, + STATE(957), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2137), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33243] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2141), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2143), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2145), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(651), 1, + sym_general_access_modifier, + STATE(800), 1, + sym_null_exclusion, + STATE(1189), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2139), 2, + aux_sym_use_clause_token1, + aux_sym_general_access_modifier_token1, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33293] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + STATE(687), 1, + sym_null_exclusion, + STATE(969), 1, + sym__subtype_indication, + STATE(1687), 1, + sym__assign_value, + STATE(1897), 1, + sym_value_sequence, + STATE(967), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33395] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2151), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2153), 1, + aux_sym_component_definition_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1264), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(1028), 2, sym_access_definition, sym__return_subtype_indication, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2039), 1, - aux_sym_expression_token5, - STATE(591), 1, - aux_sym_expression_repeat3, - ACTIONS(2153), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - aux_sym_expression_token3, - STATE(590), 1, - aux_sym_expression_repeat2, - ACTIONS(2153), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2035), 1, - aux_sym_expression_token1, - STATE(589), 1, - aux_sym_expression_repeat1, - ACTIONS(2153), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33669] = 4, + [33442] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2157), 1, - aux_sym_expression_token1, - STATE(589), 1, - aux_sym_expression_repeat1, + aux_sym_expression_token3, + STATE(583), 1, + aux_sym_expression_repeat2, ACTIONS(2155), 17, anon_sym_COMMA, anon_sym_RPAREN, @@ -42053,73 +41876,246 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33698] = 4, + [33471] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, - aux_sym_expression_token3, - STATE(590), 1, - aux_sym_expression_repeat2, - ACTIONS(2160), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2167), 1, - aux_sym_expression_token5, - STATE(591), 1, - aux_sym_expression_repeat3, - ACTIONS(2165), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33756] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - sym_identifier, - ACTIONS(2135), 1, - anon_sym_LPAREN, - ACTIONS(2137), 1, + ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1287), 1, + ACTIONS(291), 1, + aux_sym_chunk_specification_token1, + ACTIONS(313), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2162), 1, + aux_sym_component_definition_token1, + STATE(677), 1, + sym_non_empty_mode, + STATE(701), 1, + sym_null_exclusion, + STATE(943), 1, + sym_access_definition, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2160), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(822), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33520] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1888), 1, + aux_sym_relation_membership_token1, + ACTIONS(2104), 1, + anon_sym_DOT_DOT, + STATE(481), 1, + sym_relational_operator, + ACTIONS(1880), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1884), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + anon_sym_PIPE, + [33557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 1, + aux_sym_expression_token1, + STATE(591), 1, + aux_sym_expression_repeat1, + ACTIONS(2164), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 1, + aux_sym_expression_token3, + STATE(583), 1, + aux_sym_expression_repeat2, + ACTIONS(2164), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2019), 1, + aux_sym_expression_token5, + STATE(590), 1, + aux_sym_expression_repeat3, + ACTIONS(2164), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33644] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2166), 1, + aux_sym_general_access_modifier_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(953), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(967), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2170), 1, + aux_sym_expression_token5, + STATE(590), 1, + aux_sym_expression_repeat3, + ACTIONS(2168), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2175), 1, + aux_sym_expression_token1, + STATE(591), 1, + aux_sym_expression_repeat1, + ACTIONS(2173), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33749] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + sym_identifier, + ACTIONS(2125), 1, + anon_sym_LPAREN, + ACTIONS(2127), 1, + anon_sym_LBRACK, + STATE(222), 1, sym_attribute_designator, - ACTIONS(2139), 4, + ACTIONS(2129), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, aux_sym_attribute_designator_token4, - STATE(207), 10, + STATE(190), 10, sym__aggregate, sym__delta_aggregate, sym_extension_aggregate, @@ -42130,65 +42126,74 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [33790] = 13, + [33783] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - ACTIONS(2170), 1, - aux_sym_component_definition_token1, - STATE(718), 1, + STATE(687), 1, sym_null_exclusion, - STATE(982), 1, - sym_component_definition, - STATE(1057), 1, + STATE(1003), 1, sym__subtype_indication, - STATE(1060), 1, - sym_access_definition, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + STATE(1002), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33836] = 2, + [33827] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2178), 1, + aux_sym_general_access_modifier_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1264), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(1053), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2155), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42207,59 +42212,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33884] = 2, + [33895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33908] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - sym_identifier, - ACTIONS(2135), 1, - anon_sym_LPAREN, - ACTIONS(2137), 1, - anon_sym_LBRACK, - STATE(209), 1, - sym_attribute_designator, - ACTIONS(2139), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(207), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [33942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 18, + ACTIONS(2168), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42278,108 +42234,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33966] = 13, + [33919] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(291), 1, + aux_sym_chunk_specification_token1, + ACTIONS(313), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + STATE(627), 1, + sym_non_empty_mode, + STATE(683), 1, + sym_null_exclusion, + STATE(983), 1, + sym_access_definition, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2180), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(845), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2182), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33989] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(1771), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - ACTIONS(2170), 1, + STATE(687), 1, + sym_null_exclusion, + STATE(969), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(967), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34033] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2184), 1, aux_sym_component_definition_token1, - STATE(718), 1, + STATE(687), 1, sym_null_exclusion, - STATE(1057), 1, - sym__subtype_indication, - STATE(1060), 1, - sym_access_definition, - STATE(1099), 1, + STATE(976), 1, sym_component_definition, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34012] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2170), 1, - aux_sym_component_definition_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(1057), 1, + STATE(1094), 1, sym__subtype_indication, - STATE(1060), 1, + STATE(1096), 1, sym_access_definition, - STATE(1095), 1, - sym_component_definition, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34058] = 12, + [34079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2174), 1, - aux_sym_general_access_modifier_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(1127), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - STATE(1068), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2176), 18, + ACTIONS(2173), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42398,167 +42376,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34126] = 13, + [34103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_chunk_specification_token1, - ACTIONS(319), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(629), 1, - sym_non_empty_mode, - STATE(684), 1, - sym_null_exclusion, - STATE(950), 1, - sym_access_definition, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2178), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(828), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34172] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(1127), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - STATE(1110), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34213] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(1127), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - STATE(1069), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34254] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(718), 1, - sym_null_exclusion, - STATE(1347), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - STATE(1348), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34295] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2182), 1, + ACTIONS(2186), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34127] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, ACTIONS(2184), 1, + aux_sym_component_definition_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1090), 1, + sym_component_definition, + STATE(1094), 1, + sym__subtype_indication, + STATE(1096), 1, + sym_access_definition, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34173] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2184), 1, + aux_sym_component_definition_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1086), 1, + sym_component_definition, + STATE(1094), 1, + sym__subtype_indication, + STATE(1096), 1, + sym_access_definition, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34219] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + sym_identifier, + ACTIONS(2125), 1, + anon_sym_LPAREN, + ACTIONS(2127), 1, + anon_sym_LBRACK, + STATE(1150), 1, + sym_attribute_designator, + ACTIONS(2129), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(190), 10, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [34253] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2190), 1, + anon_sym_SEMI, + ACTIONS(2192), 1, aux_sym_with_clause_token2, STATE(1251), 1, sym_subprogram_default, - STATE(1594), 1, + STATE(1634), 1, sym_aspect_specification, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2186), 2, + ACTIONS(2194), 2, aux_sym_primary_null_token1, anon_sym_LT_GT, - ACTIONS(2180), 3, + ACTIONS(2188), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(960), 5, + STATE(963), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34336] = 4, + [34294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 1, + ACTIONS(1789), 1, aux_sym_range_attribute_designator_token1, - STATE(637), 1, + STATE(639), 1, sym_range_constraint, - ACTIONS(2188), 15, + ACTIONS(2196), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -42574,112 +42544,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - aux_sym_range_attribute_designator_token1, - STATE(627), 1, - sym_range_constraint, - ACTIONS(2190), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34390] = 12, + [34321] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1456), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(1457), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_range_attribute_designator_token1, + STATE(631), 1, + sym_range_constraint, + ACTIONS(2198), 15, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_chunk_specification_token1, - ACTIONS(319), 1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34389] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1264), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(1017), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34430] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + STATE(687), 1, + sym_null_exclusion, + STATE(1264), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + STATE(1055), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34471] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(291), 1, + aux_sym_chunk_specification_token1, + ACTIONS(313), 1, aux_sym_non_empty_mode_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(2194), 1, - aux_sym_component_definition_token1, - STATE(666), 1, + STATE(667), 1, sym_non_empty_mode, - STATE(803), 1, + STATE(762), 1, sym_null_exclusion, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2192), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(877), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34433] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(2198), 1, - anon_sym_LPAREN, - STATE(493), 1, - sym__subtype_indication_paren_constraint, - STATE(643), 1, - sym_subpool_specification, - STATE(777), 1, - sym_null_exclusion, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2196), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(265), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34473] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2202), 1, - aux_sym_package_specification_token3, - ACTIONS(2204), 1, - aux_sym_at_clause_token1, - STATE(653), 1, - sym_mod_clause, - STATE(1876), 1, - sym_value_sequence, - STATE(645), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, ACTIONS(2200), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1097), 5, + STATE(824), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -42692,23 +42693,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - ACTIONS(2090), 1, - aux_sym_exception_declaration_token1, - STATE(691), 1, + STATE(687), 1, sym_null_exclusion, - STATE(1660), 1, + STATE(1010), 1, + sym__subtype_indication, + STATE(1015), 1, sym_access_definition, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2086), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1108), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -42725,19 +42726,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2206), 1, + ACTIONS(2202), 1, aux_sym_package_specification_token1, - ACTIONS(2208), 1, + ACTIONS(2204), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2210), 1, + ACTIONS(2206), 1, aux_sym_interface_type_definition_token1, - STATE(973), 1, + STATE(1001), 1, sym_overriding_indicator, - STATE(1179), 3, + STATE(1280), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(466), 5, + STATE(467), 5, sym__proper_body, sym_subprogram_body, sym_package_body, @@ -42748,25 +42749,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_chunk_specification_token1, - ACTIONS(319), 1, - aux_sym_non_empty_mode_token1, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(682), 1, - sym_non_empty_mode, - STATE(762), 1, + ACTIONS(2210), 1, + anon_sym_LPAREN, + STATE(490), 1, + sym__subtype_indication_paren_constraint, + STATE(655), 1, + sym_subpool_specification, + STATE(775), 1, sym_null_exclusion, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2212), 3, + ACTIONS(2208), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(888), 5, + STATE(266), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -42779,48 +42780,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - STATE(718), 1, + ACTIONS(2110), 1, + aux_sym_exception_declaration_token1, + STATE(693), 1, sym_null_exclusion, - STATE(1036), 1, - sym__subtype_indication, - STATE(1039), 1, + STATE(1721), 1, sym_access_definition, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2106), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(1095), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34671] = 2, + [34671] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34692] = 9, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2214), 1, + aux_sym_package_specification_token3, + ACTIONS(2216), 1, + aux_sym_at_clause_token1, + STATE(663), 1, + sym_mod_clause, + STATE(1897), 1, + sym_value_sequence, + STATE(660), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2212), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1128), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34709] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -42831,13 +42841,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2216), 1, - aux_sym_compilation_unit_token1, ACTIONS(2218), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2220), 1, aux_sym_package_specification_token3, - STATE(1627), 1, + STATE(1587), 1, sym_overriding_indicator, - STATE(630), 8, + STATE(636), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -42846,7 +42856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34727] = 10, + [34744] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -42854,26 +42864,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(499), 1, sym_identifier, ACTIONS(2222), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2224), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2226), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2228), 1, - aux_sym_general_access_modifier_token1, - STATE(1876), 1, + aux_sym_private_type_declaration_token1, + STATE(1204), 1, + sym_subprogram_default, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2220), 3, + ACTIONS(2194), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2188), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(663), 5, + STATE(963), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34764] = 9, + [34779] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -42884,12 +42893,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2230), 1, + ACTIONS(2224), 1, aux_sym_allocator_token1, - STATE(1602), 1, - sym_task_definition, - STATE(1627), 1, + STATE(1587), 1, sym_overriding_indicator, + STATE(1660), 1, + sym_task_definition, STATE(618), 8, sym__aspect_clause, sym_at_clause, @@ -42899,63 +42908,64 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34799] = 9, + [34814] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1903), 1, + sym_identifier, + ACTIONS(2226), 1, + aux_sym_primary_null_token1, + ACTIONS(2228), 1, + aux_sym_case_expression_token1, + STATE(674), 1, + aux_sym_component_list_repeat1, + STATE(1385), 1, + sym_component_list, + STATE(1398), 1, + sym_variant_part, + STATE(1789), 1, + sym__defining_identifier_list, + STATE(934), 7, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + [34851] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2232), 1, - aux_sym_private_type_declaration_token1, - STATE(1314), 1, - sym_subprogram_default, - STATE(1876), 1, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + STATE(693), 1, + sym_null_exclusion, + STATE(1721), 1, + sym_access_definition, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2186), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2180), 3, + ACTIONS(2106), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(960), 5, + STATE(1095), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34834] = 10, + [34888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(2238), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1195), 1, - sym_exception_choice, - STATE(1876), 1, - sym_value_sequence, - STATE(1896), 1, - sym_exception_choice_list, - STATE(1898), 1, - sym_choice_parameter_specification, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(978), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2240), 15, + ACTIONS(2230), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -42971,78 +42981,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34892] = 10, + [34909] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - STATE(741), 1, + STATE(707), 1, sym_null_exclusion, - STATE(1098), 1, + STATE(817), 1, sym_access_definition, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2242), 3, + ACTIONS(2232), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(886), 5, + STATE(681), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34929] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(2244), 1, - aux_sym_primary_null_token1, - ACTIONS(2246), 1, - aux_sym_case_expression_token1, - STATE(665), 1, - aux_sym_component_list_repeat1, - STATE(1440), 1, - sym_variant_part, - STATE(1911), 1, - sym_component_list, - STATE(1912), 1, - sym__defining_identifier_list, - STATE(938), 7, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - [34966] = 10, + [34946] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2250), 1, + ACTIONS(2236), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2252), 1, + ACTIONS(2238), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2254), 1, + ACTIONS(2240), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2256), 1, + ACTIONS(2242), 1, aux_sym_general_access_modifier_token1, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2248), 3, + ACTIONS(2234), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -43052,10 +43035,117 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35003] = 2, + [34983] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 15, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2246), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2248), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2250), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2252), 1, + aux_sym_general_access_modifier_token1, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2244), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(675), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35020] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + ACTIONS(2092), 1, + aux_sym_attribute_designator_token1, + STATE(741), 1, + sym_null_exclusion, + STATE(968), 1, + sym_access_definition, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2254), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(849), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35057] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2256), 1, + sym_identifier, + ACTIONS(2260), 1, + aux_sym_positional_array_aggregate_token1, + STATE(1314), 1, + sym_exception_choice, + STATE(1843), 1, + sym_choice_parameter_specification, + STATE(1844), 1, + sym_exception_choice_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2258), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1005), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35094] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2262), 1, + aux_sym_allocator_token1, + STATE(1587), 1, + sym_overriding_indicator, + STATE(1917), 1, + sym_task_definition, + STATE(618), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -43071,26 +43161,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35024] = 10, + [35150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2266), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35171] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2268), 1, + aux_sym_allocator_token1, + STATE(1493), 1, + sym_task_definition, + STATE(1587), 1, + sym_overriding_indicator, + STATE(618), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35206] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, ACTIONS(1903), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2226), 1, aux_sym_primary_null_token1, - ACTIONS(2246), 1, + ACTIONS(2228), 1, aux_sym_case_expression_token1, - STATE(665), 1, + STATE(674), 1, aux_sym_component_list_repeat1, - STATE(1349), 1, - sym_component_list, - STATE(1440), 1, + STATE(1398), 1, sym_variant_part, - STATE(1912), 1, + STATE(1789), 1, sym__defining_identifier_list, - STATE(938), 7, + STATE(1795), 1, + sym_component_list, + STATE(934), 7, sym__component_item, sym_component_declaration, sym__aspect_clause, @@ -43098,50 +43233,76 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_definition_clause, sym_enumeration_representation_clause, sym_record_representation_clause, - [35061] = 10, + [35243] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2270), 1, + aux_sym_allocator_token1, + STATE(1587), 1, + sym_overriding_indicator, + STATE(1919), 1, + sym_task_definition, + STATE(618), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35278] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, + ACTIONS(2092), 1, aux_sym_attribute_designator_token1, - STATE(743), 1, + STATE(740), 1, sym_null_exclusion, - STATE(970), 1, + STATE(1107), 1, sym_access_definition, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2260), 3, + ACTIONS(2272), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(859), 5, + STATE(889), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35098] = 8, + [35315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2274), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2267), 1, + ACTIONS(2279), 1, aux_sym_relation_membership_token1, - ACTIONS(2270), 1, + ACTIONS(2282), 1, aux_sym_entry_declaration_token1, - ACTIONS(2273), 1, + ACTIONS(2285), 1, aux_sym_global_mode_token1, - STATE(1627), 1, + STATE(1587), 1, sym_overriding_indicator, - ACTIONS(2265), 2, + ACTIONS(2277), 2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, - STATE(630), 8, + STATE(636), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -43150,114 +43311,10 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35131] = 9, + [35348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2276), 1, - aux_sym_allocator_token1, - STATE(1490), 1, - sym_task_definition, - STATE(1627), 1, - sym_overriding_indicator, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35166] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2278), 1, - aux_sym_allocator_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(1856), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35201] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2280), 1, - aux_sym_allocator_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(1859), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35236] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2282), 1, - aux_sym_allocator_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(1658), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2284), 15, + ACTIONS(2288), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -43273,37 +43330,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35292] = 10, + [35369] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(691), 1, - sym_null_exclusion, - STATE(1660), 1, - sym_access_definition, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2086), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1108), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35329] = 2, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2290), 1, + aux_sym_allocator_token1, + STATE(1586), 1, + sym_task_definition, + STATE(1587), 1, + sym_overriding_indicator, + STATE(618), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 15, + ACTIONS(2292), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -43319,34 +43375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35350] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token1, - STATE(692), 1, - sym_null_exclusion, - STATE(815), 1, - sym_access_definition, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2288), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(669), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35387] = 8, + [35425] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43357,9 +43386,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1627), 1, + STATE(1587), 1, sym_overriding_indicator, - STATE(1838), 1, + STATE(1671), 1, sym_task_definition, STATE(618), 8, sym__aspect_clause, @@ -43370,156 +43399,329 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35419] = 9, + [35457] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1046), 1, + STATE(1030), 1, sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35453] = 9, + [35491] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1151), 1, + STATE(1068), 1, sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35487] = 9, + [35525] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1446), 1, + STATE(1125), 1, sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35521] = 9, + [35559] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - STATE(495), 1, - sym__subtype_indication_paren_constraint, - STATE(777), 1, - sym_null_exclusion, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2196), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(265), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35555] = 9, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1587), 1, + sym_overriding_indicator, + STATE(1784), 1, + sym_task_definition, + STATE(618), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35591] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2292), 1, - aux_sym_use_clause_token1, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + STATE(800), 1, + sym_null_exclusion, + STATE(1458), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35625] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1587), 1, + sym_overriding_indicator, + STATE(1848), 1, + sym_task_definition, + STATE(618), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35657] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + STATE(800), 1, + sym_null_exclusion, + STATE(1370), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35691] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2260), 1, + aux_sym_positional_array_aggregate_token1, + STATE(1314), 1, + sym_exception_choice, + STATE(1498), 1, + sym_exception_choice_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2258), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1005), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35725] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + STATE(800), 1, + sym_null_exclusion, + STATE(1100), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35759] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + STATE(800), 1, + sym_null_exclusion, + STATE(1124), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35793] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + STATE(800), 1, + sym_null_exclusion, + STATE(1137), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35827] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(1755), 1, + aux_sym_relation_membership_token1, + STATE(800), 1, + sym_null_exclusion, + STATE(1226), 1, + sym__subtype_indication, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2090), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(572), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35861] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, ACTIONS(2294), 1, - aux_sym_use_clause_token2, - STATE(1827), 1, - sym__name_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2290), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35589] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2296), 1, aux_sym_package_specification_token3, - STATE(1876), 1, - sym_value_sequence, - STATE(655), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2200), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1097), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35621] = 8, + STATE(1587), 1, + sym_overriding_indicator, + STATE(636), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35893] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43530,10 +43732,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(1776), 1, + STATE(1486), 1, sym_task_definition, + STATE(1587), 1, + sym_overriding_indicator, STATE(618), 8, sym__aspect_clause, sym_at_clause, @@ -43543,81 +43745,80 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35653] = 9, + [35925] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(786), 1, + STATE(492), 1, + sym__subtype_indication_paren_constraint, + STATE(775), 1, sym_null_exclusion, - STATE(1105), 1, - sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2208), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(266), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35687] = 8, + [35959] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2296), 1, + aux_sym_package_specification_token3, + STATE(1897), 1, + sym_value_sequence, + STATE(657), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2212), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1128), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, ACTIONS(2298), 1, - aux_sym_package_specification_token3, - STATE(1627), 1, - sym_overriding_indicator, - STATE(630), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35719] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - STATE(786), 1, - sym_null_exclusion, - STATE(1071), 1, - sym__subtype_indication, - STATE(1876), 1, + ACTIONS(2304), 1, + anon_sym_LBRACK, + ACTIONS(2307), 1, + aux_sym_package_specification_token3, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + STATE(657), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2301), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(1128), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35753] = 8, + [36023] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43628,10 +43829,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1483), 1, - sym_task_definition, - STATE(1627), 1, + STATE(1587), 1, sym_overriding_indicator, + STATE(1672), 1, + sym_task_definition, STATE(618), 8, sym__aspect_clause, sym_at_clause, @@ -43641,130 +43842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35785] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - STATE(786), 1, - sym_null_exclusion, - STATE(1414), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35819] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - STATE(786), 1, - sym_null_exclusion, - STATE(1118), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35853] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2296), 1, - aux_sym_package_specification_token3, - STATE(1876), 1, - sym_value_sequence, - STATE(656), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2200), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1097), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35885] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - STATE(786), 1, - sym_null_exclusion, - STATE(1115), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35919] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2306), 1, - anon_sym_LBRACK, - ACTIONS(2309), 1, - aux_sym_package_specification_token3, - STATE(1876), 1, - sym_value_sequence, - STATE(655), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2303), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1097), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35951] = 8, + [36055] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -43772,197 +43850,168 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(499), 1, sym_identifier, ACTIONS(2311), 1, - aux_sym_package_specification_token3, - STATE(1876), 1, + aux_sym_use_clause_token1, + ACTIONS(2313), 1, + aux_sym_use_clause_token2, + STATE(1862), 1, + sym__name_list, + STATE(1897), 1, sym_value_sequence, - STATE(655), 2, + ACTIONS(2309), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(925), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36089] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2315), 1, + aux_sym_package_specification_token3, + STATE(1897), 1, + sym_value_sequence, + STATE(657), 2, sym_component_clause, aux_sym_record_representation_clause_repeat1, - ACTIONS(2200), 3, + ACTIONS(2212), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1097), 5, + STATE(1128), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35983] = 9, + [36121] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1148), 1, + STATE(1415), 1, sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36017] = 9, + [36155] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2238), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1195), 1, - sym_exception_choice, - STATE(1482), 1, - sym_exception_choice_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(978), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36051] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(786), 1, + STATE(800), 1, sym_null_exclusion, - STATE(1397), 1, + STATE(1099), 1, sym__subtype_indication, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2090), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, + STATE(572), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36085] = 8, + [36189] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2315), 1, + aux_sym_package_specification_token3, + STATE(1897), 1, + sym_value_sequence, + STATE(656), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2212), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1128), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 1, + sym_identifier, + ACTIONS(2320), 1, aux_sym_iterated_element_association_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(1666), 1, - sym_task_definition, - STATE(618), 8, + STATE(1789), 1, + sym__defining_identifier_list, + ACTIONS(2323), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(664), 8, + sym__component_item, + sym_component_declaration, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, - sym_entry_declaration, sym_enumeration_representation_clause, - sym__task_item, sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36117] = 8, + aux_sym_component_list_repeat1, + [36248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(1665), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36149] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(1709), 1, - aux_sym_relation_membership_token1, - STATE(786), 1, - sym_null_exclusion, - STATE(1076), 1, - sym__subtype_indication, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(1995), 3, + ACTIONS(2329), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2327), 11, sym_string_literal, sym_character_literal, sym_target_name, - STATE(576), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36183] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(2313), 10, + anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_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, - [36208] = 3, + aux_sym_relation_membership_token1, + [36271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 2, + ACTIONS(2331), 2, sym_identifier, anon_sym_DASH, - ACTIONS(2317), 11, + ACTIONS(2333), 11, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -43974,120 +44023,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [36229] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1903), 1, - sym_identifier, - STATE(1912), 1, - sym__defining_identifier_list, - ACTIONS(2319), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(680), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36256] = 8, + [36292] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(762), 1, + STATE(797), 1, sym_null_exclusion, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2212), 3, + ACTIONS(2335), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(888), 5, + STATE(821), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36287] = 4, + [36323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(287), 1, anon_sym_LPAREN, - STATE(817), 2, - sym_formal_part, - sym__non_empty_parameter_profile, - ACTIONS(2323), 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, - [36310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(2127), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2238), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1423), 1, - sym_exception_choice, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(978), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36341] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(2325), 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, - [36366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(2137), 1, - anon_sym_LBRACK, - STATE(1201), 11, + STATE(1239), 11, sym__parenthesized_expression, sym__aggregate, sym__delta_aggregate, @@ -44099,39 +44065,17 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [36389] = 7, + [36346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2327), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - STATE(1834), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - ACTIONS(2329), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1078), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_DOT, - ACTIONS(2331), 1, + ACTIONS(2337), 1, aux_sym_chunk_specification_token1, - ACTIONS(803), 2, + ACTIONS(779), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(805), 9, + ACTIONS(781), 9, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -44141,92 +44085,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - [36443] = 5, + [36371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 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(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1587), 1, + sym_overriding_indicator, + STATE(653), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - ACTIONS(2333), 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, - [36468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(2137), 1, - anon_sym_LBRACK, - STATE(1196), 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, - [36491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(2335), 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, - [36516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - STATE(814), 2, - sym_formal_part, - sym__non_empty_parameter_profile, - ACTIONS(2337), 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, - [36539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - STATE(816), 2, - sym_formal_part, - sym__non_empty_parameter_profile, ACTIONS(2339), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -44238,36 +44127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36562] = 7, + [36425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1627), 1, - sym_overriding_indicator, - STATE(648), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, ACTIONS(2341), 10, anon_sym_RPAREN, @@ -44280,19 +44147,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36616] = 6, + [36450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, - sym_identifier, - ACTIONS(2346), 1, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2343), 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, + [36475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1912), 1, + ACTIONS(1903), 1, + sym_identifier, + STATE(1789), 1, sym__defining_identifier_list, - ACTIONS(2349), 2, + ACTIONS(2345), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - STATE(680), 8, + STATE(664), 8, sym__component_item, sym_component_declaration, sym__aspect_clause, @@ -44301,434 +44188,928 @@ static const uint16_t ts_small_parse_table[] = { sym_enumeration_representation_clause, sym_record_representation_clause, aux_sym_component_list_repeat1, - [36643] = 8, + [36502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2347), 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, + [36527] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2351), 1, aux_sym_iterator_filter_token1, - ACTIONS(2355), 1, + ACTIONS(2353), 1, anon_sym_SEMI, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2351), 3, + ACTIONS(2349), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(958), 5, + STATE(952), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36674] = 8, + [36558] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(1709), 1, + ACTIONS(1755), 1, aux_sym_relation_membership_token1, - STATE(782), 1, + STATE(762), 1, sym_null_exclusion, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, + ACTIONS(2200), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(824), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36589] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2260), 1, + aux_sym_positional_array_aggregate_token1, + STATE(1427), 1, + sym_exception_choice, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2258), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1005), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36620] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + STATE(1866), 2, + sym_loop_parameter_specification, + sym_iterator_specification, ACTIONS(2357), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(881), 5, + STATE(1051), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36705] = 7, + [36649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_LPAREN, + ACTIONS(2127), 1, + anon_sym_LBRACK, + STATE(1194), 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, + [36672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2359), 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, + [36697] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2363), 1, + ACTIONS(2365), 1, anon_sym_SEMI, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2361), 3, + ACTIONS(2363), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1015), 5, + STATE(1108), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36733] = 7, + [36725] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2367), 1, aux_sym_attribute_designator_token1, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2260), 3, + ACTIONS(2254), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(859), 5, + STATE(849), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36761] = 7, + [36753] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1639), 1, + STATE(1501), 1, + sym__name_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2309), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(925), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36781] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + STATE(1925), 1, sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36789] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - STATE(1894), 1, - sym__interface_list, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1782), 1, - sym_reduction_specification, - STATE(1876), 1, - sym_value_sequence, ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1028), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36845] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1824), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36873] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1345), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36901] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1659), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36929] = 7, + [36809] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2365), 1, - aux_sym_attribute_designator_token1, - STATE(1876), 1, + ACTIONS(2373), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1897), 1, sym_value_sequence, ACTIONS(2371), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1063), 5, + STATE(844), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36957] = 7, + [36837] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2367), 1, aux_sym_attribute_designator_token1, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2373), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(679), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36985] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2377), 1, - anon_sym_SEMI, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(2375), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1019), 5, + STATE(525), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37013] = 7, + [36865] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1672), 1, + STATE(1753), 1, sym__interface_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37041] = 7, + [36893] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1204), 1, - sym__interface_list, - STATE(1876), 1, + STATE(1824), 1, + sym_reduction_specification, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2377), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(1026), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37069] = 7, + [36921] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2381), 1, - anon_sym_SEMI, - STATE(1876), 1, + STATE(1345), 1, + sym_index_subtype_definition, + STATE(1897), 1, sym_value_sequence, ACTIONS(2379), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1083), 5, + STATE(1059), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37097] = 7, + [36949] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1665), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36977] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1432), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37005] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, + ACTIONS(2367), 1, + aux_sym_attribute_designator_token1, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2381), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1118), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37033] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1703), 1, + sym__name_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2309), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(925), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37061] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1688), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1709), 1, + sym__name_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2309), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(925), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1149), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37145] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1854), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, ACTIONS(2385), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1876), 1, + anon_sym_SEMI, + STATE(1897), 1, sym_value_sequence, ACTIONS(2383), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(867), 5, + STATE(1098), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37125] = 7, + [37201] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1124), 1, + STATE(1433), 1, sym__interface_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37153] = 7, + [37229] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(499), 1, sym_identifier, - STATE(1400), 1, - sym__interface_list, - STATE(1876), 1, + ACTIONS(2367), 1, + aux_sym_attribute_designator_token1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2200), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(824), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37181] = 7, + [37257] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1530), 1, + STATE(1856), 1, sym__name_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2290), 3, + ACTIONS(2309), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(932), 5, + STATE(925), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37209] = 2, + [37285] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 12, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2389), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2387), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1031), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37313] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2393), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2391), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1052), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37341] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2397), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2395), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1060), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37369] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2401), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2399), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1004), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37397] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(2367), 1, + aux_sym_attribute_designator_token1, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2403), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(671), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37425] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1791), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37453] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1327), 1, + sym__name_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2405), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37481] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1490), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37509] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(818), 1, + sym_formal_part, + ACTIONS(2409), 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, + [37531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_formal_part, + ACTIONS(2411), 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, + [37553] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1477), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37581] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1859), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37609] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2415), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2413), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1023), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37637] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2419), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2417), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1018), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37665] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2423), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2421), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1014), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(819), 1, + sym_formal_part, + ACTIONS(2425), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [37715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -44741,712 +45122,333 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [37227] = 7, + [37733] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2391), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2389), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1040), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37255] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1634), 1, - sym__name_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2290), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1402), 1, + STATE(1357), 1, sym__interface_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37311] = 7, + [37761] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2395), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2393), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1011), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37339] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1747), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37367] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1330), 1, - sym_index_subtype_definition, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2397), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1117), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37395] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1418), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37423] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1550), 1, - sym__name_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2290), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37451] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2401), 1, - aux_sym_package_body_token1, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2399), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(879), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37479] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1625), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37507] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1813), 1, - sym__name_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2290), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37535] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1668), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37563] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2405), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2403), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1072), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37591] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2409), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2407), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1074), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37619] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1631), 1, - sym__name_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2290), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37647] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1484), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37675] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2365), 1, - aux_sym_attribute_designator_token1, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2411), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37703] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1374), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37731] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1844), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37759] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2415), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2413), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(998), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37787] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2419), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2417), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1086), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37815] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2423), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2421), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1029), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37843] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1618), 1, - sym__name_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2290), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37871] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2427), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2425), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1035), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37899] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, ACTIONS(2431), 1, anon_sym_SEMI, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, ACTIONS(2429), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1100), 5, + STATE(1065), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37927] = 7, + [37789] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1861), 1, + STATE(1674), 1, sym__interface_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37955] = 7, + [37817] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1682), 1, + STATE(1628), 1, sym__interface_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37983] = 7, + [37845] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1346), 1, - sym__name_list, - STATE(1876), 1, + ACTIONS(2435), 1, + anon_sym_SEMI, + STATE(1897), 1, sym_value_sequence, ACTIONS(2433), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(940), 5, + STATE(1039), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38011] = 7, + [37873] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1607), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38039] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1604), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38067] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2437), 1, + ACTIONS(2439), 1, anon_sym_SEMI, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2435), 3, + ACTIONS(2437), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1092), 5, + STATE(1073), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38095] = 7, + [37901] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2441), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2439), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1012), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38123] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(2443), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1076), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37929] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2447), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(2445), 10, + STATE(1727), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37957] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1669), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37985] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1363), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2327), 11, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, aux_sym_iterator_filter_token1, aux_sym_attribute_designator_token1, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38145] = 7, + [38033] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, + sym_identifier, + STATE(1371), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38061] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2447), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2445), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1116), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1696), 1, + sym__name_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2309), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(925), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, sym_identifier, ACTIONS(2451), 1, - anon_sym_SEMI, - STATE(1876), 1, + aux_sym_package_body_token1, + STATE(1897), 1, sym_value_sequence, ACTIONS(2449), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1093), 5, + STATE(881), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38145] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2453), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1126), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45457,17 +45459,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2455), 1, - anon_sym_SEMI, - STATE(1876), 1, + STATE(1726), 1, + sym__interface_list, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2453), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1090), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45478,17 +45480,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(499), 1, sym_identifier, - STATE(1783), 1, - sym__interface_list, - STATE(1876), 1, + ACTIONS(2459), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, + ACTIONS(2457), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(862), 5, + STATE(833), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45499,17 +45501,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(499), 1, sym_identifier, - ACTIONS(2459), 1, - anon_sym_SEMI, - STATE(1876), 1, + ACTIONS(2463), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2457), 3, + ACTIONS(2461), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1008), 5, + STATE(855), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45520,17 +45522,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2463), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1876), 1, + STATE(1480), 1, + sym__name_list, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2461), 3, + ACTIONS(2309), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(846), 5, + STATE(925), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45543,15 +45545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2467), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1876), 1, + ACTIONS(2367), 1, + aux_sym_attribute_designator_token1, + STATE(1897), 1, sym_value_sequence, ACTIONS(2465), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(844), 5, + STATE(885), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45564,15 +45566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(499), 1, sym_identifier, - ACTIONS(2365), 1, + ACTIONS(2367), 1, aux_sym_attribute_designator_token1, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2469), 3, + ACTIONS(2467), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(875), 5, + STATE(859), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, @@ -45583,1137 +45585,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1487), 1, + STATE(1832), 1, sym__interface_list, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38369] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2365), 1, - aux_sym_attribute_designator_token1, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2471), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(845), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38397] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1404), 1, - sym__interface_list, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2367), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38425] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - ACTIONS(2475), 1, - anon_sym_SEMI, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2473), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1082), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38453] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2477), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2479), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(921), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38478] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2481), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(675), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2483), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1088), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38528] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(961), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 10, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - 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, - [38572] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2491), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38597] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1041), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2495), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(891), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2497), 1, - sym_identifier, - ACTIONS(2499), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [38666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 1, - sym_identifier, - ACTIONS(2445), 10, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - 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, - [38685] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2501), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(177), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38710] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2503), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(904), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2505), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(936), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2507), 1, - sym_identifier, - ACTIONS(2509), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [38779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(937), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2513), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1023), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2357), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(881), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38854] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2248), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(673), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38879] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2515), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(848), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2517), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(819), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38929] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2479), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(921), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38954] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2519), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(917), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38979] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(903), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39004] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2523), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(934), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39029] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(907), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39054] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2527), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(896), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2529), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(897), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39104] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2531), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(883), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39129] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2533), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1121), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(895), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39179] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2537), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(894), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39204] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(272), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39229] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2541), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(830), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39254] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2543), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(818), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2545), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(924), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39304] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2547), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(865), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2549), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(884), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2551), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1067), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39379] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2553), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1022), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2555), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(882), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2411), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 1, - sym_identifier, - ACTIONS(2559), 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, - [39473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2561), 1, - sym_identifier, - ACTIONS(2563), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [39492] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2565), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(850), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2567), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(923), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39542] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2569), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1025), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39567] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2571), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(929), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39592] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2576), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2578), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2581), 1, - aux_sym_interface_type_definition_token1, - STATE(1646), 1, - sym__defining_identifier_list, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(793), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [39621] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2329), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1078), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39646] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2586), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(552), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2399), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(879), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39696] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2588), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(933), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - sym_identifier, - ACTIONS(2592), 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, - [39740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2594), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(941), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39765] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2596), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(920), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - sym_identifier, - ACTIONS(2600), 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, - [39809] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2602), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -46723,94 +45601,849 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39834] = 6, + [38369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2471), 11, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_membership_token1, + [38389] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1876), 1, + STATE(1404), 1, + sym__interface_list, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2212), 3, + ACTIONS(2369), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(888), 5, + STATE(837), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39859] = 8, + [38417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, sym_identifier, - ACTIONS(2606), 1, + STATE(1642), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2473), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1097), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38473] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2479), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2477), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1122), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38501] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + ACTIONS(2483), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2481), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1092), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38529] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1222), 1, + sym__interface_list, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2369), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38557] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2485), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(918), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 1, + sym_identifier, + ACTIONS(2489), 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, + [38601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2491), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(944), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38626] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2449), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(881), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38651] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2493), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(886), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38676] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2495), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(945), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2497), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(902), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2499), 1, + sym_identifier, + ACTIONS(2501), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + sym_identifier, + ACTIONS(2505), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2507), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(183), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2509), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1072), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38814] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2511), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(848), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2335), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(821), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38864] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2513), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(946), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38889] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2515), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(866), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38914] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2517), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(869), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 1, + sym_identifier, + ACTIONS(2521), 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, + [38958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2523), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(931), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38983] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2525), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(854), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2527), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(949), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2529), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(905), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39058] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2531), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(903), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39083] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2533), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(951), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2535), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(672), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39133] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + sym_identifier, + ACTIONS(2539), 1, aux_sym_subprogram_body_token1, - ACTIONS(2608), 1, + ACTIONS(2541), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2610), 1, + ACTIONS(2543), 1, aux_sym_interface_type_definition_token1, - STATE(1646), 1, + STATE(1563), 1, sym__defining_identifier_list, - STATE(326), 2, + STATE(453), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(793), 4, + STATE(796), 4, sym__declare_item, sym_object_declaration, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [39888] = 6, + [39162] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2612), 3, + ACTIONS(2545), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1106), 5, + STATE(261), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39913] = 6, + [39187] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2614), 3, + ACTIONS(2547), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(878), 5, + STATE(917), 5, sym__name, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39938] = 6, + [39212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 1, + sym_identifier, + ACTIONS(2551), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [39231] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2616), 3, + ACTIONS(2553), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(887), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39256] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2555), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(932), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2557), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1033), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2559), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(896), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39331] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2561), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(947), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2563), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(826), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2565), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(553), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2567), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(863), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39431] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2569), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1071), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2571), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -46820,94 +46453,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39963] = 6, + [39481] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym_identifier, - STATE(1876), 1, + STATE(1897), 1, sym_value_sequence, - ACTIONS(2618), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(926), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2620), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(943), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2622), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(834), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40038] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2604), 1, - sym_identifier, - ACTIONS(2608), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2610), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2624), 1, - aux_sym_subprogram_body_token1, - STATE(1646), 1, - sym__defining_identifier_list, - STATE(326), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(804), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [40067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - sym_identifier, - STATE(1876), 1, - sym_value_sequence, - ACTIONS(2626), 3, + ACTIONS(2573), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -46917,49 +46472,483 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [40092] = 2, + [39506] = 6, ACTIONS(3), 1, sym_comment, - 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, - [40108] = 2, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2575), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(921), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 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, - [40124] = 2, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2577), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1046), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 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, - [40140] = 2, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2244), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(675), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2579), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(895), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2581), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1048), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + sym_identifier, + ACTIONS(2585), 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, + [39650] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 1, + sym_identifier, + ACTIONS(2590), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2592), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2595), 1, + aux_sym_interface_type_definition_token1, + STATE(1563), 1, + sym__defining_identifier_list, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(795), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [39679] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + sym_identifier, + ACTIONS(2541), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2543), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2598), 1, + aux_sym_subprogram_body_token1, + STATE(1563), 1, + sym__defining_identifier_list, + STATE(453), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(795), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [39708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2600), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(823), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39733] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2602), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(961), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2604), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2357), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1051), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39783] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2375), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2606), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(883), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39833] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2608), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1074), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2610), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(924), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39883] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2612), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(884), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2614), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(930), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2616), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(939), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2618), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1037), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [39983] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2620), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(937), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2622), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(898), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2624), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40058] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2626), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2513), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(946), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40083] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2628), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2361), 1, + sym_identifier, + STATE(1897), 1, + sym_value_sequence, + ACTIONS(2630), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(847), 5, + sym__name, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [40133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2632), 10, @@ -46973,10 +46962,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [40156] = 2, + [40149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 10, + ACTIONS(2634), 1, + sym_identifier, + ACTIONS(2636), 9, + 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, + [40167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -46987,178 +46991,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [40172] = 7, + [40183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2638), 1, - aux_sym_package_specification_token2, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1033), 2, - sym_formal_part, - sym__non_empty_parameter_profile, - ACTIONS(2636), 3, + ACTIONS(2640), 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, - [40197] = 7, + aux_sym_accept_statement_token2, + [40199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2641), 1, - aux_sym_package_specification_token2, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1033), 2, - sym_formal_part, - sym__non_empty_parameter_profile, - ACTIONS(2636), 3, + ACTIONS(2425), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, - [40222] = 3, + aux_sym_accept_statement_token2, + [40215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, - sym_identifier, - ACTIONS(2646), 8, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, + ACTIONS(2411), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [40239] = 8, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [40231] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1874), 1, + ACTIONS(1870), 1, anon_sym_COMMA, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2642), 1, anon_sym_COLON, - ACTIONS(2651), 1, - anon_sym_SEMI, - ACTIONS(2654), 1, + ACTIONS(2645), 1, aux_sym_object_renaming_declaration_token1, - STATE(1080), 1, + STATE(1255), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(805), 3, + ACTIONS(781), 4, sym_tick, anon_sym_LPAREN, - anon_sym_COLON_EQ, - [40266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2656), 1, - sym_identifier, - ACTIONS(2658), 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, - [40282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2660), 1, - sym_identifier, - ACTIONS(2662), 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, - [40298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 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, - [40314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2668), 1, - sym_identifier, - ACTIONS(2670), 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, - [40330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(2674), 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, - [40346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 1, - sym_identifier, - ACTIONS(2678), 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, - [40362] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2680), 1, anon_sym_SEMI, - ACTIONS(2682), 1, anon_sym_COLON_EQ, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1286), 1, - sym__assign_value, - STATE(1829), 1, - sym_aspect_specification, - [40390] = 3, + [40256] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 1, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1080), 1, + sym__assign_value, + STATE(1413), 1, + sym_aspect_specification, + ACTIONS(2647), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40285] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1113), 1, + sym__assign_value, + STATE(1442), 1, + sym_aspect_specification, + ACTIONS(2649), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40314] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1035), 1, + sym__assign_value, + STATE(1333), 1, + sym_aspect_specification, + ACTIONS(2651), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40343] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1038), 1, + sym__assign_value, + STATE(1375), 1, + sym_aspect_specification, + ACTIONS(2653), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2655), 1, sym_identifier, - ACTIONS(2686), 7, + ACTIONS(2657), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47166,320 +47144,364 @@ 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, - [40406] = 8, + [40388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(2634), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2688), 1, - aux_sym_package_specification_token2, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - STATE(214), 1, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1351), 1, + STATE(1309), 1, + sym_iterator_filter, + ACTIONS(2659), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [40412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2663), 1, + sym_identifier, + ACTIONS(2665), 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, + [40428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 1, + sym_identifier, + ACTIONS(2669), 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, + [40444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 1, + sym_identifier, + ACTIONS(2673), 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, + [40460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + sym_identifier, + ACTIONS(2677), 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, + [40476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 1, + sym_identifier, + ACTIONS(2681), 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, + [40492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 1, + sym_identifier, + ACTIONS(2685), 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, + [40508] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1266), 1, + sym_iterator_filter, + ACTIONS(2687), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [40532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2689), 1, + anon_sym_LPAREN, + ACTIONS(2691), 1, + anon_sym_LBRACK, + ACTIONS(2693), 1, + aux_sym_record_component_association_list_token1, + STATE(1502), 1, + sym_enumeration_aggregate, + STATE(1508), 4, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [40554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + sym_identifier, + ACTIONS(2697), 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, + [40570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 1, + sym_identifier, + ACTIONS(2701), 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, + [40586] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2705), 1, + aux_sym_expression_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(990), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2703), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [40610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + sym_identifier, + ACTIONS(2709), 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, + [40626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + sym_identifier, + ACTIONS(2713), 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, + [40642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 1, + sym_identifier, + ACTIONS(2717), 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, + [40658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + sym_identifier, + ACTIONS(2721), 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, + [40674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2725), 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, + [40690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + sym_identifier, + ACTIONS(2729), 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, + [40706] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1153), 1, + sym_iterator_filter, + ACTIONS(2731), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [40730] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2733), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1246), 1, + sym__assign_value, + STATE(1886), 1, + sym_aspect_specification, + [40758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + sym_identifier, + ACTIONS(2737), 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, + [40774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(2739), 1, + anon_sym_LPAREN, + ACTIONS(2741), 1, + aux_sym_package_specification_token2, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1392), 1, sym_formal_part, - STATE(1087), 2, + STATE(1044), 2, sym__parameter_and_result_profile, sym_result_profile, - [40432] = 3, + [40800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - sym_identifier, - ACTIONS(2694), 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, - [40448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - sym_identifier, - ACTIONS(2698), 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, - [40464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 1, - sym_identifier, - ACTIONS(2702), 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, - [40480] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(2739), 1, anon_sym_LPAREN, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1269), 1, - sym_iterator_filter, - ACTIONS(2704), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2708), 1, - sym_identifier, - ACTIONS(2710), 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, - [40520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(2714), 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, - [40536] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1268), 1, - sym_iterator_filter, - ACTIONS(2704), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2716), 1, - sym_identifier, - ACTIONS(2718), 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, - [40576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - sym_identifier, - ACTIONS(2722), 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, - [40592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - sym_identifier, - ACTIONS(2726), 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, - [40608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 1, - sym_identifier, - ACTIONS(2730), 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, - [40624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(2734), 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, - [40640] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(2738), 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, - [40656] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1243), 1, - sym_iterator_filter, - ACTIONS(2740), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40680] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(2742), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1298), 1, - sym__assign_value, - STATE(1528), 1, - sym_aspect_specification, - [40708] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1244), 1, - sym_iterator_filter, - ACTIONS(2740), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - sym_identifier, - ACTIONS(2746), 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, - [40748] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - ACTIONS(2748), 1, + ACTIONS(2747), 1, aux_sym_package_specification_token2, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1351), 1, + STATE(1045), 1, sym_formal_part, - STATE(1087), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [40774] = 3, + ACTIONS(2745), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [40824] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(2750), 1, - sym_identifier, - ACTIONS(2752), 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, - [40790] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1033), 2, - sym_formal_part, - sym__non_empty_parameter_profile, - ACTIONS(2636), 3, anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - [40812] = 3, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1284), 1, + sym__assign_value, + STATE(1611), 1, + sym_aspect_specification, + [40852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2756), 7, + ACTIONS(2754), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47487,12 +47509,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, - [40828] = 3, + [40868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2760), 7, + ACTIONS(2758), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47500,12 +47522,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, - [40844] = 3, + [40884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2760), 1, sym_identifier, - ACTIONS(2764), 7, + ACTIONS(2762), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47513,12 +47535,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, - [40860] = 3, + [40900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, + ACTIONS(2764), 1, sym_identifier, - ACTIONS(2768), 7, + ACTIONS(2766), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47526,7 +47548,41 @@ 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, - [40876] = 3, + [40916] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1215), 1, + sym_iterator_filter, + ACTIONS(2768), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [40940] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1263), 1, + sym_iterator_filter, + ACTIONS(2687), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [40964] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2770), 1, @@ -47539,7 +47595,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40892] = 3, + [40980] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2774), 1, @@ -47552,7 +47608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40908] = 3, + [40996] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2778), 1, @@ -47565,12 +47621,31 @@ 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, - [40924] = 3, + [41012] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(2782), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1243), 1, + sym__assign_value, + STATE(1531), 1, + sym_aspect_specification, + [41040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2784), 7, + ACTIONS(2786), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47578,26 +47653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40940] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(2786), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1284), 1, - sym__assign_value, - STATE(1580), 1, - sym_aspect_specification, - [40968] = 3, + [41056] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2788), 1, @@ -47610,7 +47666,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40984] = 3, + [41072] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2792), 1, @@ -47623,378 +47679,403 @@ 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, - [41000] = 7, + [41088] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2798), 1, - aux_sym_expression_token1, - STATE(214), 1, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(215), 1, sym_actual_parameter_part, - STATE(976), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2796), 3, - anon_sym_SEMI, + STATE(1311), 1, + sym_iterator_filter, + ACTIONS(2659), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [41112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2796), 1, + sym_identifier, + ACTIONS(2798), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [41024] = 6, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [41128] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2800), 1, + sym_identifier, + ACTIONS(2802), 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, + [41144] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(2739), 1, anon_sym_LPAREN, - ACTIONS(2802), 1, - anon_sym_LBRACK, ACTIONS(2804), 1, - aux_sym_record_component_association_list_token1, - STATE(1527), 1, - sym_enumeration_aggregate, - STATE(1524), 4, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [41046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 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, - [41062] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1171), 1, - sym_iterator_filter, - ACTIONS(2810), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 1, - sym_identifier, - ACTIONS(2814), 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, - [41102] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1276), 1, - sym_iterator_filter, - ACTIONS(2816), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2818), 1, - sym_identifier, - ACTIONS(2820), 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, - [41142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, - sym_identifier, - ACTIONS(2824), 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, - [41158] = 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, - [41174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2830), 1, - sym_identifier, - ACTIONS(2832), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2834), 1, - sym_identifier, - ACTIONS(2836), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [41235] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1370), 1, - sym__assign_value, - ACTIONS(2844), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2846), 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, - [41271] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1441), 1, - sym__assign_value, - ACTIONS(2848), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41294] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2852), 1, - aux_sym_with_clause_token2, - ACTIONS(2855), 1, - aux_sym_expression_token1, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(2850), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [41317] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2857), 1, aux_sym_package_specification_token2, - ACTIONS(2859), 1, - aux_sym_object_renaming_declaration_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1620), 1, - sym_aspect_specification, - [41342] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2861), 1, - anon_sym_LPAREN, - ACTIONS(2863), 1, - aux_sym_iterator_filter_token1, - STATE(1113), 1, - sym_non_empty_entry_body_formal_part, - STATE(1435), 1, - sym_aspect_specification, - STATE(1436), 1, + STATE(1045), 1, sym_formal_part, - STATE(1470), 1, - sym_entry_barrier, - [41367] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1386), 1, - sym__assign_value, - ACTIONS(2865), 2, - anon_sym_RPAREN, + ACTIONS(2745), 3, anon_sym_SEMI, - [41390] = 7, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [41168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(2807), 1, + sym_identifier, + ACTIONS(2809), 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, + [41184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2811), 1, + sym_identifier, + ACTIONS(2813), 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, + [41200] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, sym_tick, - ACTIONS(2634), 1, + ACTIONS(2739), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2743), 1, aux_sym_result_profile_token1, - STATE(214), 1, + ACTIONS(2815), 1, + aux_sym_package_specification_token2, + STATE(215), 1, sym_actual_parameter_part, - STATE(1351), 1, + STATE(1392), 1, sym_formal_part, - STATE(1087), 2, + STATE(1044), 2, sym__parameter_and_result_profile, sym_result_profile, - [41413] = 5, + [41226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, + ACTIONS(2817), 1, + sym_identifier, + ACTIONS(2819), 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, + [41242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2821), 1, + sym_identifier, + ACTIONS(2823), 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, + [41258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + sym_identifier, + ACTIONS(2827), 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, + [41274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 1, + sym_identifier, + ACTIONS(2831), 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, + [41290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, + sym_identifier, + ACTIONS(2835), 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, + [41306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2837), 1, + sym_identifier, + ACTIONS(2839), 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, + [41322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2843), 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, + [41338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2845), 1, + sym_identifier, + ACTIONS(2847), 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, + [41354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2849), 1, anon_sym_LPAREN, - STATE(214), 1, + ACTIONS(2851), 1, + anon_sym_SEMI, + ACTIONS(2853), 1, + aux_sym_package_specification_token2, + ACTIONS(2855), 1, + aux_sym_expression_token3, + STATE(1282), 3, + sym__discriminant_part, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [41375] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + anon_sym_DOT, + ACTIONS(2857), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2859), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2862), 1, + anon_sym_COLON, + ACTIONS(2864), 1, + aux_sym_iterator_specification_token1, + ACTIONS(781), 2, + sym_tick, + anon_sym_LPAREN, + [41398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2866), 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, + [41411] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2868), 1, + aux_sym_package_specification_token2, + ACTIONS(2870), 1, + aux_sym_object_renaming_declaration_token1, + STATE(215), 1, sym_actual_parameter_part, - ACTIONS(2867), 4, + STATE(1697), 1, + sym_aspect_specification, + [41436] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2872), 1, + anon_sym_LPAREN, + ACTIONS(2874), 1, + aux_sym_iterator_filter_token1, + STATE(1105), 1, + sym_non_empty_entry_body_formal_part, + STATE(1436), 1, + sym_aspect_specification, + STATE(1437), 1, + sym_formal_part, + STATE(1503), 1, + sym_entry_barrier, + [41461] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + aux_sym_with_clause_token2, + ACTIONS(2881), 1, + aux_sym_expression_token1, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2876), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [41484] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + aux_sym_with_clause_token2, + ACTIONS(2888), 1, + aux_sym_expression_token1, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2883), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [41507] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1347), 1, + sym__assign_value, + ACTIONS(2890), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41530] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(2739), 1, + anon_sym_LPAREN, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1392), 1, + sym_formal_part, + STATE(1044), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [41553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2892), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token1, aux_sym_expression_token3, - [41432] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1339), 1, - sym__assign_value, - ACTIONS(2869), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41455] = 6, + [41572] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1907), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(1909), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2871), 1, + ACTIONS(2894), 1, aux_sym_package_specification_token1, - STATE(1708), 1, + STATE(1761), 1, sym_package_specification, - STATE(1294), 3, + STATE(1169), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [41476] = 7, + [41593] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2682), 1, + ACTIONS(2147), 1, anon_sym_COLON_EQ, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, STATE(1388), 1, sym__assign_value, - ACTIONS(2873), 2, + ACTIONS(2896), 2, anon_sym_RPAREN, anon_sym_SEMI, - [41499] = 2, + [41616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 7, + ACTIONS(2898), 7, aux_sym_iterated_element_association_token1, aux_sym_package_specification_token3, aux_sym_relation_membership_token1, @@ -48002,41 +48083,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [41512] = 7, + [41629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(2900), 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, + [41642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 1, sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1411), 1, - sym__assign_value, - ACTIONS(2877), 2, + ACTIONS(1961), 6, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - [41535] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym_LPAREN, - ACTIONS(2881), 1, - anon_sym_SEMI, - ACTIONS(2883), 1, aux_sym_package_specification_token2, - ACTIONS(2885), 1, - aux_sym_expression_token3, - STATE(1147), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [41556] = 2, + [41657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 7, + ACTIONS(2904), 7, aux_sym_iterated_element_association_token1, aux_sym_package_specification_token3, aux_sym_relation_membership_token1, @@ -48044,7561 +48117,7625 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [41569] = 7, + [41670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(2906), 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, + [41683] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2891), 1, + ACTIONS(2910), 1, aux_sym_with_clause_token2, - ACTIONS(2894), 1, + ACTIONS(2913), 1, aux_sym_expression_token1, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - ACTIONS(2889), 2, + ACTIONS(2908), 2, anon_sym_SEMI, aux_sym_expression_token3, - [41592] = 2, + [41706] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 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, - [41605] = 7, + ACTIONS(911), 1, + sym_tick, + ACTIONS(2739), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1045), 1, + sym_formal_part, + ACTIONS(2745), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [41727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1880), 1, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2915), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2917), 1, + aux_sym_allocator_token1, + ACTIONS(2919), 1, + aux_sym_interface_type_definition_token2, + STATE(1410), 1, + sym_record_definition, + [41749] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2921), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1858), 1, + sym_aspect_specification, + [41771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2923), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(2925), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, anon_sym_DOT, - ACTIONS(2898), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2900), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2903), 1, + ACTIONS(2927), 1, anon_sym_COLON, - ACTIONS(2905), 1, - aux_sym_iterator_specification_token1, - ACTIONS(805), 2, + ACTIONS(781), 4, sym_tick, anon_sym_LPAREN, - [41628] = 7, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2909), 1, - aux_sym_with_clause_token2, - ACTIONS(2912), 1, - aux_sym_expression_token1, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(2907), 2, + ACTIONS(2931), 1, + anon_sym_EQ_GT, + ACTIONS(2929), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_expression_token3, - [41651] = 7, + aux_sym_package_specification_token2, + [41817] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(2914), 1, + ACTIONS(2933), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1848), 1, + STATE(1763), 1, sym_aspect_specification, - [41673] = 7, + [41839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(2916), 1, + ACTIONS(2935), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1736), 1, + STATE(1682), 1, sym_aspect_specification, - [41695] = 7, + [41861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2918), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1734), 1, - sym_aspect_specification, - [41717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 1, + ACTIONS(2937), 1, sym_identifier, - ACTIONS(1872), 5, + ACTIONS(2939), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [41875] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2941), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1725), 1, + sym_aspect_specification, + [41897] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2943), 1, + anon_sym_LPAREN, + ACTIONS(2945), 1, + anon_sym_SEMI, + ACTIONS(2947), 1, + aux_sym_package_specification_token2, + STATE(1036), 1, + sym_known_discriminant_part, + STATE(1331), 1, + sym_aspect_specification, + [41919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1876), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [41731] = 5, + [41933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(2920), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2922), 1, + ACTIONS(2949), 1, + anon_sym_COMMA, + ACTIONS(2951), 1, + anon_sym_RBRACK, + ACTIONS(2955), 1, + aux_sym_with_clause_token2, + STATE(1321), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2953), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2957), 1, + sym_identifier, + ACTIONS(2959), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, aux_sym_package_specification_token3, - STATE(922), 3, + [41967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2961), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2964), 1, + aux_sym_package_specification_token3, + ACTIONS(2966), 1, + aux_sym_pragma_g_token1, + STATE(910), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [41749] = 7, + [41985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(235), 1, - aux_sym_subprogram_body_token1, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2924), 1, - aux_sym_declare_expression_token1, - ACTIONS(2926), 1, - aux_sym_loop_statement_token1, - STATE(1703), 1, - sym_iteration_scheme, - [41771] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2928), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2930), 1, - aux_sym_with_clause_token1, - ACTIONS(2932), 1, - aux_sym_allocator_token1, - ACTIONS(2934), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(2936), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(2938), 1, - aux_sym_private_extension_declaration_token1, - [41793] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2940), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2942), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2944), 1, - aux_sym_entry_declaration_token1, - STATE(948), 1, - sym__subprogram_specification, - STATE(1102), 1, - sym_function_specification, - STATE(1104), 1, - sym_procedure_specification, - [41815] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2946), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1737), 1, - sym_aspect_specification, - [41837] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2948), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1793), 1, - sym_aspect_specification, - [41859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym_identifier, - ACTIONS(2956), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41887] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2958), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1789), 1, - sym_aspect_specification, - [41909] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_DOT, - ACTIONS(2960), 1, - anon_sym_COLON, - ACTIONS(805), 4, - sym_tick, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON_EQ, - [41925] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym_LPAREN, - ACTIONS(2962), 1, - anon_sym_SEMI, - ACTIONS(2964), 1, - aux_sym_package_specification_token2, - STATE(1375), 1, - sym_known_discriminant_part, - STATE(1383), 2, - sym__discriminant_part, - sym_unknown_discriminant_part, - [41945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, - anon_sym_COMMA, - ACTIONS(2968), 1, - anon_sym_RPAREN, - ACTIONS(2972), 1, - aux_sym_with_clause_token2, - STATE(1412), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2970), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41965] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(2928), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2974), 1, - anon_sym_SEMI, - ACTIONS(2976), 1, - aux_sym_with_clause_token1, - STATE(1335), 1, - sym_record_definition, - [41987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2978), 1, - sym_tick, - ACTIONS(1961), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2980), 6, + ACTIONS(2969), 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, - [42013] = 3, + [41997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 1, - sym_identifier, - ACTIONS(2984), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [42027] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2944), 1, - aux_sym_entry_declaration_token1, - STATE(1049), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [42045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2986), 1, - aux_sym_package_specification_token1, - STATE(1007), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [42063] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2988), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1754), 1, - sym_aspect_specification, - [42085] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(2990), 1, - anon_sym_SEMI, - STATE(1094), 1, - sym_actual_parameter_part, - STATE(1711), 1, - sym__assign_value, - [42107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [42121] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2996), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1570), 1, - sym_aspect_specification, - [42143] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2998), 1, - aux_sym_package_specification_token2, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1537), 1, - sym_aspect_specification, - [42165] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3000), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3003), 1, - aux_sym_package_specification_token3, - ACTIONS(3005), 1, - aux_sym_pragma_g_token1, - STATE(922), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [42183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3008), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1514), 1, - sym_aspect_specification, - [42205] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3010), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1513), 1, - sym_aspect_specification, - [42227] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3012), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1135), 1, - aux_sym__name_list_repeat1, - [42249] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(3016), 3, + ACTIONS(2971), 1, anon_sym_COMMA, + ACTIONS(2973), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [42267] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(297), 1, - aux_sym_chunk_specification_token1, - ACTIONS(317), 1, - aux_sym_global_mode_token1, - ACTIONS(319), 1, - aux_sym_non_empty_mode_token1, - STATE(729), 1, - sym_global_mode, - STATE(820), 1, - sym_non_empty_mode, - STATE(1457), 1, - sym_global_aspect_element, - [42289] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_DOT, - ACTIONS(3018), 1, - anon_sym_COLON, - ACTIONS(805), 4, - sym_tick, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [42305] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2975), 1, aux_sym_with_clause_token2, - ACTIONS(3020), 1, - aux_sym_package_specification_token2, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1620), 1, - sym_aspect_specification, - [42327] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3022), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, - anon_sym_SEMI, - ACTIONS(3026), 1, - aux_sym_package_specification_token2, - STATE(1070), 1, - sym_known_discriminant_part, - STATE(1422), 1, - sym_aspect_specification, - [42349] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, - anon_sym_COMMA, - ACTIONS(2972), 1, - aux_sym_with_clause_token2, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(1412), 1, + STATE(1335), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2970), 2, + ACTIONS(2953), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [42369] = 7, + [42017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(3012), 1, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(2977), 3, anon_sym_COMMA, - ACTIONS(3030), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(214), 1, + [42035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, sym_actual_parameter_part, - STATE(1198), 1, + STATE(1143), 1, aux_sym__name_list_repeat1, - [42391] = 7, + ACTIONS(2979), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3032), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1717), 1, - sym_aspect_specification, - [42413] = 7, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2981), 1, + aux_sym_package_specification_token1, + STATE(1024), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [42073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(2983), 1, + sym_identifier, + STATE(1293), 1, + sym_quantifier, + ACTIONS(2985), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1424), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [42091] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3034), 1, + ACTIONS(2987), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1595), 1, + STATE(1785), 1, sym_aspect_specification, - [42435] = 7, + [42113] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2989), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1788), 1, + sym_aspect_specification, + [42135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + anon_sym_DOT, + ACTIONS(2991), 1, + anon_sym_COLON, + ACTIONS(781), 4, + sym_tick, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON_EQ, + [42151] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1903), 1, sym_identifier, - ACTIONS(3036), 1, + ACTIONS(2993), 1, aux_sym_iterated_element_association_token1, - STATE(1218), 1, + STATE(1283), 1, sym_parameter_specification, - STATE(1617), 1, + STATE(1549), 1, sym__defining_identifier_list, - STATE(1623), 1, - sym_parameter_specification_list, - STATE(1642), 1, + STATE(1554), 1, + sym__parameter_specification_list, + STATE(1645), 1, sym_entry_index_specification, - [42457] = 7, + [42173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3038), 1, + ACTIONS(2995), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1583), 1, + STATE(1790), 1, sym_aspect_specification, - [42479] = 7, + [42195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, + ACTIONS(291), 1, + aux_sym_chunk_specification_token1, + ACTIONS(311), 1, + aux_sym_global_mode_token1, + ACTIONS(313), 1, + aux_sym_non_empty_mode_token1, + STATE(709), 1, + sym_global_mode, + STATE(815), 1, + sym_non_empty_mode, + STATE(1429), 1, + sym_global_aspect_element, + [42217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2849), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2997), 1, + anon_sym_SEMI, + ACTIONS(2999), 1, + aux_sym_package_specification_token2, + STATE(1406), 1, + sym_known_discriminant_part, + STATE(1408), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [42237] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3001), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1758), 1, + sym_aspect_specification, + [42259] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2979), 1, + anon_sym_SEMI, + ACTIONS(3003), 1, + anon_sym_COMMA, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1187), 1, + aux_sym__name_list_repeat1, + [42281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3005), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3007), 1, + anon_sym_COMMA, + STATE(927), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3010), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2923), 1, + anon_sym_COMMA, + STATE(927), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3012), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2971), 1, + anon_sym_COMMA, + ACTIONS(2975), 1, + aux_sym_with_clause_token2, + ACTIONS(3014), 1, + anon_sym_RPAREN, + STATE(1335), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2953), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42345] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1573), 1, + sym_aspect_specification, + [42367] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3018), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1492), 1, + sym_aspect_specification, + [42389] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3020), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1649), 1, + sym_aspect_specification, + [42411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + sym_identifier, + ACTIONS(3024), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [42425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2228), 1, + aux_sym_case_expression_token1, + ACTIONS(3026), 1, + sym_identifier, + STATE(1465), 1, + sym_variant_part, + ACTIONS(3028), 3, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [42443] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(3030), 1, + anon_sym_SEMI, + STATE(1093), 1, + sym_actual_parameter_part, + STATE(1764), 1, + sym__assign_value, + [42465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3032), 1, + aux_sym_entry_declaration_token1, + STATE(1054), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [42483] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3003), 1, + anon_sym_COMMA, + ACTIONS(3034), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1302), 1, + aux_sym__name_list_repeat1, + [42505] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2915), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3036), 1, + anon_sym_SEMI, + ACTIONS(3038), 1, + aux_sym_with_clause_token1, + STATE(1410), 1, + sym_record_definition, + [42527] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, aux_sym_with_clause_token2, ACTIONS(3040), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1584), 1, + STATE(1800), 1, sym_aspect_specification, - [42501] = 5, + [42549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, - aux_sym_case_expression_token1, ACTIONS(3042), 1, sym_identifier, - STATE(1459), 1, - sym_variant_part, - ACTIONS(3044), 3, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, + ACTIONS(3044), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, aux_sym_package_specification_token3, - [42519] = 6, + [42563] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(321), 1, + aux_sym_subprogram_body_token1, + ACTIONS(399), 1, + aux_sym_iterated_element_association_token1, ACTIONS(3046), 1, - anon_sym_COMMA, + aux_sym_declare_expression_token1, ACTIONS(3048), 1, - anon_sym_RBRACK, + aux_sym_loop_statement_token1, + STATE(1754), 1, + sym_iteration_scheme, + [42585] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + aux_sym_entry_declaration_token1, ACTIONS(3050), 1, - aux_sym_with_clause_token2, - STATE(1180), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2970), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [42539] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1142), 1, - aux_sym__name_list_repeat1, - ACTIONS(3030), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42559] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, + aux_sym_access_to_subprogram_definition_token2, ACTIONS(3052), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - STATE(1853), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1007), 1, + sym__subprogram_specification, + STATE(1111), 1, + sym_procedure_specification, + STATE(1123), 1, + sym_function_specification, + [42607] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(1114), 1, + sym__assign_value, + STATE(1444), 1, sym_aspect_specification, - [42581] = 5, + ACTIONS(3054), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, - sym_identifier, - STATE(1206), 1, - sym_quantifier, - ACTIONS(3056), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - STATE(1409), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [42599] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2184), 1, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3056), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1615), 1, + sym_aspect_specification, + [42649] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, aux_sym_with_clause_token2, ACTIONS(3058), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - STATE(1676), 1, + STATE(1619), 1, sym_aspect_specification, - [42621] = 7, + [42671] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(2928), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3060), 1, - aux_sym_allocator_token1, - ACTIONS(3062), 1, - aux_sym_interface_type_definition_token2, - STATE(1335), 1, - sym_record_definition, - [42643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3064), 1, - anon_sym_RPAREN, - ACTIONS(3066), 1, - aux_sym_expression_token4, - ACTIONS(3068), 1, - aux_sym_elsif_expression_item_token1, - STATE(949), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3070), 1, - anon_sym_SEMI, - STATE(1237), 1, - sym__assign_value, - STATE(1792), 1, - sym_aspect_specification, - [42679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - STATE(1705), 1, - sym_delay_alternative, - STATE(32), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - [42694] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3072), 1, - anon_sym_SEMI, - ACTIONS(3074), 1, - aux_sym_package_specification_token2, - ACTIONS(3076), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1387), 1, - sym_aspect_specification, - [42713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3068), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3078), 1, - anon_sym_RPAREN, - ACTIONS(3080), 1, - aux_sym_expression_token4, - STATE(983), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3082), 1, - anon_sym_SEMI, - STATE(1283), 1, - sym__assign_value, - STATE(1826), 1, - sym_aspect_specification, - [42749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3084), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3086), 1, - aux_sym_with_clause_token1, - STATE(1448), 1, - sym_record_definition, - [42768] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3090), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3088), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - STATE(952), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [42783] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3093), 1, - anon_sym_SEMI, - STATE(1174), 1, - sym__assign_value, - STATE(1732), 1, - sym_aspect_specification, - [42802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 1, - aux_sym_package_specification_token3, - ACTIONS(3097), 1, - aux_sym_expression_token4, - ACTIONS(3099), 1, - aux_sym_elsif_expression_item_token1, - STATE(979), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [42819] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3060), 1, + aux_sym_package_specification_token2, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1478), 1, + sym_aspect_specification, + [42693] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3062), 1, + aux_sym_package_specification_token2, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1697), 1, + sym_aspect_specification, + [42715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(3064), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3066), 1, + aux_sym_package_specification_token3, + STATE(910), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [42733] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3068), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1797), 1, + sym_aspect_specification, + [42755] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2915), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3070), 1, + aux_sym_with_clause_token1, + ACTIONS(3072), 1, + aux_sym_allocator_token1, + ACTIONS(3074), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3076), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3078), 1, + aux_sym_private_extension_declaration_token1, + [42777] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3080), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + STATE(1541), 1, + sym_aspect_specification, + [42799] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3084), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [42818] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3086), 1, + anon_sym_SEMI, + STATE(1271), 1, + sym__assign_value, + STATE(1834), 1, + sym_aspect_specification, + [42837] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + sym_identifier, + ACTIONS(3090), 1, + anon_sym_LT_GT, + STATE(1182), 1, + sym_discriminant_specification, + STATE(1494), 1, + sym_discriminant_specification_list, + STATE(1511), 1, + sym__defining_identifier_list, + [42856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2743), 1, aux_sym_result_profile_token1, - STATE(1351), 1, + STATE(1392), 1, sym_formal_part, - STATE(1220), 2, + STATE(814), 2, sym__parameter_and_result_profile, sym_result_profile, - [42836] = 4, + [42873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - STATE(1220), 1, - sym_formal_part, - ACTIONS(3101), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42851] = 6, + ACTIONS(3092), 1, + anon_sym_RPAREN, + ACTIONS(3094), 1, + aux_sym_expression_token4, + ACTIONS(3096), 1, + aux_sym_elsif_expression_item_token1, + STATE(994), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, + ACTIONS(2147), 1, anon_sym_COLON_EQ, - ACTIONS(3103), 1, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3098), 1, anon_sym_SEMI, - STATE(1176), 1, + STATE(1206), 1, sym__assign_value, - STATE(1735), 1, + STATE(1693), 1, sym_aspect_specification, - [42870] = 6, + [42909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(1890), 1, + anon_sym_DOT, + ACTIONS(3100), 1, + aux_sym_package_specification_token2, + ACTIONS(781), 3, sym_tick, - ACTIONS(1643), 1, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [42924] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3103), 1, anon_sym_LPAREN, ACTIONS(3105), 1, - aux_sym_iterator_filter_token1, + anon_sym_SEMI, + STATE(1196), 1, + sym_formal_part, + STATE(1705), 1, + sym_aspect_specification, + [42943] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(3107), 1, anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [42889] = 6, + STATE(1208), 1, + sym__assign_value, + STATE(1692), 1, + sym_aspect_specification, + [42962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3062), 1, - aux_sym_interface_type_definition_token2, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, ACTIONS(3109), 1, - aux_sym_allocator_token1, - STATE(1335), 1, - sym_record_definition, - [42908] = 5, + anon_sym_SEMI, + ACTIONS(3111), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + [42981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, + ACTIONS(2407), 1, anon_sym_LPAREN, - STATE(214), 1, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(1392), 1, + sym_formal_part, + STATE(1136), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, sym_actual_parameter_part, - ACTIONS(3111), 2, + ACTIONS(3113), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [42925] = 6, + [43015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3113), 1, - anon_sym_SEMI, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1089), 1, + sym__subprogram_specification, + STATE(1111), 1, + sym_procedure_specification, + STATE(1123), 1, + sym_function_specification, + [43034] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(3115), 1, - aux_sym_with_clause_token2, - STATE(214), 1, - sym_actual_parameter_part, - [42944] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3117), 1, anon_sym_SEMI, + ACTIONS(3117), 1, + aux_sym_package_specification_token2, ACTIONS(3119), 1, - aux_sym_package_specification_token2, - ACTIONS(3121), 1, aux_sym_object_renaming_declaration_token1, - STATE(1852), 1, + STATE(1451), 1, sym_aspect_specification, - [42963] = 6, + [43053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2321), 1, - anon_sym_LPAREN, - ACTIONS(3123), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym_formal_part, - STATE(1597), 1, - sym_aspect_specification, - [42982] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3072), 1, - anon_sym_SEMI, - ACTIONS(3076), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3125), 1, - aux_sym_package_specification_token2, - STATE(1709), 1, - sym_aspect_specification, - [43001] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2940), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2942), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(964), 1, - sym__subprogram_specification, - STATE(1102), 1, - sym_function_specification, - STATE(1104), 1, - sym_procedure_specification, - [43020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3127), 1, - anon_sym_SEMI, - STATE(1250), 1, - sym__assign_value, - STATE(1801), 1, - sym_aspect_specification, - [43039] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, - anon_sym_COMMA, - ACTIONS(1876), 1, - anon_sym_SEMI, - ACTIONS(2654), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3129), 1, - anon_sym_COLON, - STATE(1080), 1, - aux_sym__defining_identifier_list_repeat1, - [43058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3132), 1, - aux_sym_expression_token1, - STATE(968), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2867), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43073] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3117), 1, - anon_sym_SEMI, - ACTIONS(3121), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3135), 1, - aux_sym_package_specification_token2, - STATE(1425), 1, - sym_aspect_specification, - [43092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3137), 1, - anon_sym_SEMI, - STATE(1285), 1, - sym__assign_value, - STATE(1581), 1, - sym_aspect_specification, - [43111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_COMMA, - ACTIONS(3048), 1, - anon_sym_RBRACK, - STATE(1180), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2970), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [43128] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3139), 1, - anon_sym_SEMI, - STATE(1247), 1, - sym__assign_value, - STATE(1800), 1, - sym_aspect_specification, - [43147] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1158), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [43162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_COMMA, - STATE(985), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3143), 3, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2321), 1, - anon_sym_LPAREN, - ACTIONS(3145), 1, - anon_sym_SEMI, - STATE(1125), 1, - sym_formal_part, - STATE(1572), 1, - sym_aspect_specification, - [43196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2798), 1, - aux_sym_expression_token1, - STATE(968), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3147), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43211] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2940), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2942), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(948), 1, - sym__subprogram_specification, - STATE(1102), 1, - sym_function_specification, - STATE(1104), 1, - sym_procedure_specification, - [43230] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - STATE(214), 1, - sym_actual_parameter_part, - ACTIONS(3149), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [43247] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3151), 1, - aux_sym_package_specification_token3, - ACTIONS(3153), 1, - aux_sym_expression_token4, - STATE(952), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [43264] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - STATE(1351), 1, - sym_formal_part, - STATE(816), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43281] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - STATE(1150), 1, - sym_formal_part, - ACTIONS(3155), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3157), 1, - anon_sym_SEMI, - STATE(1221), 1, - sym__assign_value, - STATE(1614), 1, - sym_aspect_specification, - [43315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3159), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(983), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [43330] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - STATE(1351), 1, - sym_formal_part, - STATE(1150), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3164), 1, - anon_sym_COMMA, - STATE(985), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3167), 3, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 5, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3171), 1, - anon_sym_LPAREN, - ACTIONS(3173), 1, - anon_sym_SEMI, - STATE(1197), 1, - sym_formal_part, - STATE(1748), 1, - sym_aspect_specification, - [43392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_DOT, - ACTIONS(3175), 1, - aux_sym_package_specification_token2, - ACTIONS(805), 3, - sym_tick, - anon_sym_LPAREN, - aux_sym_with_clause_token2, - [43407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(1169), 1, - sym_iterator_filter, - ACTIONS(3178), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [43422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 1, - sym_identifier, - ACTIONS(3182), 1, - anon_sym_LT_GT, - STATE(1312), 1, - sym_discriminant_specification, - STATE(1552), 1, - sym__defining_identifier_list, - STATE(1553), 1, - sym_discriminant_specification_list, - [43441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2706), 1, - aux_sym_iterator_filter_token1, - STATE(1278), 1, - sym_iterator_filter, - ACTIONS(3184), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [43456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1056), 1, - sym__subprogram_specification, - STATE(1102), 1, - sym_function_specification, - STATE(1104), 1, - sym_procedure_specification, - [43475] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3186), 1, - anon_sym_LPAREN, - ACTIONS(3188), 1, - anon_sym_SEMI, - STATE(1300), 1, - sym_formal_part, - STATE(1531), 1, - sym_aspect_specification, - [43494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_COMMA, - STATE(974), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3190), 3, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3194), 1, - anon_sym_EQ_GT, - ACTIONS(3192), 4, - anon_sym_COMMA, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43522] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3196), 1, - anon_sym_SEMI, - STATE(1302), 1, - sym__assign_value, - STATE(1546), 1, - sym_aspect_specification, - [43541] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - ACTIONS(3198), 1, - anon_sym_SEMI, - STATE(1304), 1, - sym__assign_value, - STATE(1538), 1, - sym_aspect_specification, - [43560] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3200), 1, - anon_sym_SEMI, - ACTIONS(3202), 1, - aux_sym_with_clause_token2, - STATE(214), 1, - sym_actual_parameter_part, - [43579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2088), 5, + ACTIONS(2108), 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, - [43590] = 5, + [43064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3121), 1, + anon_sym_SEMI, + STATE(1286), 1, + sym__assign_value, + STATE(1838), 1, + sym_aspect_specification, + [43083] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3123), 1, + anon_sym_SEMI, + STATE(1285), 1, + sym__assign_value, + STATE(1613), 1, + sym_aspect_specification, + [43102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3125), 1, + anon_sym_SEMI, + STATE(1297), 1, + sym__assign_value, + STATE(1839), 1, + sym_aspect_specification, + [43121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - STATE(1351), 1, + STATE(1136), 1, sym_formal_part, - STATE(817), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43607] = 4, + ACTIONS(3127), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43136] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(2920), 1, + ACTIONS(3064), 1, aux_sym_iterator_filter_token1, - STATE(899), 3, + STATE(948), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [43622] = 6, + [43151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3022), 1, - anon_sym_LPAREN, - ACTIONS(3204), 1, + ACTIONS(3129), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, aux_sym_package_specification_token2, - STATE(1155), 1, - sym_known_discriminant_part, - STATE(1612), 1, - sym_aspect_specification, - [43641] = 5, + [43162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - STATE(1351), 1, + ACTIONS(3131), 1, + anon_sym_SEMI, + STATE(1315), 1, sym_formal_part, - STATE(814), 2, + STATE(1575), 1, + sym_aspect_specification, + [43181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(3133), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_formal_part, + STATE(1652), 1, + sym_aspect_specification, + [43200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3135), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(1275), 1, + sym__assign_value, + STATE(1617), 1, + sym_aspect_specification, + [43230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3139), 1, + aux_sym_package_specification_token3, + ACTIONS(3141), 1, + aux_sym_expression_token4, + ACTIONS(3143), 1, + aux_sym_elsif_expression_item_token1, + STATE(1006), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [43247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3145), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3147), 1, + aux_sym_with_clause_token1, + STATE(1462), 1, + sym_record_definition, + [43266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(1392), 1, + sym_formal_part, + STATE(819), 2, sym__parameter_and_result_profile, sym_result_profile, - [43658] = 4, + [43283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3010), 5, anon_sym_COMMA, - STATE(1004), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(3209), 2, - anon_sym_COLON, - anon_sym_SEMI, - [43672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3211), 1, - aux_sym_compilation_unit_token1, - STATE(1413), 1, - sym_record_definition, - [43688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_COMMA, - STATE(1006), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3216), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - [43702] = 5, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3218), 1, + ACTIONS(3149), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - ACTIONS(3220), 1, aux_sym_package_specification_token2, - STATE(1683), 1, + [43305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + STATE(1636), 1, + sym_delay_alternative, + STATE(49), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + [43320] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3151), 1, + anon_sym_SEMI, + STATE(1252), 1, + sym__assign_value, + STATE(1884), 1, sym_aspect_specification, - [43718] = 5, + [43339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3222), 1, + ACTIONS(3153), 1, + aux_sym_expression_token1, + STATE(984), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2892), 3, anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [43734] = 2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 4, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(2943), 1, + anon_sym_LPAREN, + ACTIONS(3156), 1, + aux_sym_package_specification_token2, + STATE(1268), 1, + sym_known_discriminant_part, + STATE(1514), 1, + sym_aspect_specification, + [43373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3052), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1007), 1, + sym__subprogram_specification, + STATE(1111), 1, + sym_procedure_specification, + STATE(1123), 1, + sym_function_specification, + [43392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3115), 1, + anon_sym_SEMI, + ACTIONS(3119), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3158), 1, + aux_sym_package_specification_token2, + STATE(1752), 1, + sym_aspect_specification, + [43411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3052), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1000), 1, + sym__subprogram_specification, + STATE(1111), 1, + sym_procedure_specification, + STATE(1123), 1, + sym_function_specification, + [43430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43441] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2705), 1, + aux_sym_expression_token1, + STATE(984), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3162), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3166), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3164), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(991), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [43471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2949), 1, + anon_sym_COMMA, + ACTIONS(2951), 1, + anon_sym_RBRACK, + STATE(1321), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(2953), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [43488] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(1228), 1, + sym_formal_part, + ACTIONS(3169), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3171), 1, + anon_sym_RPAREN, + ACTIONS(3173), 1, + aux_sym_expression_token4, + STATE(991), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [43520] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(2919), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3175), 1, + aux_sym_allocator_token1, + STATE(1410), 1, + sym_record_definition, + [43539] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3177), 1, + anon_sym_LPAREN, + ACTIONS(3179), 1, + anon_sym_SEMI, + STATE(1303), 1, + sym_formal_part, + STATE(1597), 1, + sym_aspect_specification, + [43558] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(1151), 1, + sym_iterator_filter, + ACTIONS(3181), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [43573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3143), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3183), 1, + aux_sym_package_specification_token3, + ACTIONS(3185), 1, + aux_sym_expression_token4, + STATE(977), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [43590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(1392), 1, + sym_formal_part, + STATE(1228), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43607] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3187), 1, + anon_sym_SEMI, + ACTIONS(3189), 1, + aux_sym_package_specification_token2, + ACTIONS(3191), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1760), 1, + sym_aspect_specification, + [43626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1909), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1156), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [43641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3193), 1, + anon_sym_SEMI, + STATE(1312), 1, + sym__assign_value, + STATE(1584), 1, + sym_aspect_specification, + [43660] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3195), 1, + anon_sym_SEMI, + STATE(1130), 1, + sym__assign_value, + STATE(1578), 1, + sym_aspect_specification, + [43679] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3197), 1, + anon_sym_SEMI, + ACTIONS(3199), 1, + aux_sym_with_clause_token2, + STATE(215), 1, + sym_actual_parameter_part, + [43698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_actual_parameter_part, + ACTIONS(3201), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [43715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3203), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + STATE(1006), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [43730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3187), 1, + anon_sym_SEMI, + ACTIONS(3191), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3208), 1, + aux_sym_package_specification_token2, + STATE(1412), 1, + sym_aspect_specification, + [43749] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(1392), 1, + sym_formal_part, + STATE(818), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2661), 1, + aux_sym_iterator_filter_token1, + STATE(1213), 1, + sym_iterator_filter, + ACTIONS(3210), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [43781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3216), 1, + aux_sym_package_specification_token2, + ACTIONS(3214), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [43803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3219), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3221), 1, + aux_sym_package_specification_token3, + STATE(1109), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3223), 1, + aux_sym_compilation_unit_token1, + STATE(1403), 1, + sym_record_definition, + [43833] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3225), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [43849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3227), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3229), 1, + anon_sym_SEMI, + ACTIONS(3231), 1, + aux_sym_expression_token3, + STATE(1521), 1, + sym_aspect_specification, + [43875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + STATE(1362), 1, + sym__assign_value, + ACTIONS(3233), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [43889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [43905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3237), 1, + aux_sym_object_renaming_declaration_token1, + STATE(215), 1, + sym_actual_parameter_part, + [43921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3239), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3243), 1, + aux_sym_with_clause_token1, + ACTIONS(3245), 1, + aux_sym_expression_token3, + [43937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3247), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [43953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3249), 1, + aux_sym_compilation_unit_token1, + STATE(1403), 1, + sym_record_definition, + [43969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3251), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [43985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3253), 1, + anon_sym_SEMI, + ACTIONS(3255), 1, + aux_sym_package_specification_token2, + STATE(1609), 1, + sym_aspect_specification, + [44001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3257), 1, + aux_sym_compilation_unit_token1, + STATE(1403), 1, + sym_record_definition, + [44017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(215), 1, + sym_actual_parameter_part, + [44033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3261), 1, + anon_sym_SEMI, + ACTIONS(3263), 1, + aux_sym_package_specification_token2, + STATE(1350), 1, + sym_aspect_specification, + [44049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + STATE(1328), 1, + sym__assign_value, + ACTIONS(3265), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3267), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3269), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3271), 1, + anon_sym_SEMI, + ACTIONS(3273), 1, + aux_sym_with_clause_token2, + ACTIONS(3276), 1, + aux_sym_expression_token1, + STATE(1366), 1, + sym_record_extension_part, + [44091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3278), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44107] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3280), 1, + aux_sym_with_clause_token1, + STATE(1410), 1, + sym_record_definition, + [44123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3282), 1, + aux_sym_object_renaming_declaration_token1, + STATE(215), 1, + sym_actual_parameter_part, + [44139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 1, + anon_sym_COMMA, + STATE(1056), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3286), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(1378), 1, + sym_aspect_specification, + ACTIONS(3288), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44167] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3290), 1, + anon_sym_SEMI, + ACTIONS(3292), 1, + aux_sym_package_specification_token2, + STATE(1431), 1, + sym_aspect_specification, + [44183] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3294), 1, + aux_sym_object_renaming_declaration_token1, + STATE(215), 1, + sym_actual_parameter_part, + [44199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(1418), 1, + sym_aspect_specification, + ACTIONS(3296), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3298), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3302), 1, + aux_sym_allocator_token1, + ACTIONS(3304), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3300), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [44243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3308), 1, + aux_sym_package_specification_token3, + STATE(1119), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [44257] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3312), 1, + aux_sym_expression_token3, + STATE(1042), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3310), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + [44271] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + ACTIONS(3315), 1, + anon_sym_SEMI, + ACTIONS(3317), 1, + aux_sym_accept_statement_token2, + STATE(1332), 1, + sym_formal_part, + [44287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3321), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3323), 1, + anon_sym_RPAREN, + STATE(215), 1, + sym_actual_parameter_part, + [44323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 1, + anon_sym_COMMA, + ACTIONS(2645), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3325), 1, + anon_sym_COLON, + STATE(1255), 1, + aux_sym__defining_identifier_list_repeat1, + [44339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3328), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3145), 1, + aux_sym_compilation_unit_token1, + STATE(1462), 1, + sym_record_definition, + [44371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3030), 1, + anon_sym_SEMI, + STATE(1093), 1, + sym_actual_parameter_part, + [44387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3330), 1, + sym_tick, + ACTIONS(3332), 1, + aux_sym_iterated_element_association_token2, + STATE(215), 1, + sym_actual_parameter_part, + [44403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3334), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + STATE(1342), 1, + sym__assign_value, + ACTIONS(3336), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44433] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3187), 1, + anon_sym_SEMI, + ACTIONS(3189), 1, + aux_sym_package_specification_token2, + STATE(1760), 1, + sym_aspect_specification, + [44449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_COLON_EQ, + STATE(1344), 1, + sym__assign_value, + ACTIONS(3336), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3284), 1, + anon_sym_COMMA, + STATE(1069), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3338), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3340), 1, + aux_sym_package_specification_token3, + ACTIONS(3342), 1, + aux_sym_expression_token3, + ACTIONS(3344), 1, + aux_sym_expression_token4, + STATE(1042), 1, + aux_sym_selective_accept_repeat1, + [44493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 1, + anon_sym_COMMA, + ACTIONS(2645), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3346), 1, + anon_sym_COLON, + STATE(1255), 1, + aux_sym__defining_identifier_list_repeat1, + [44509] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3349), 1, + aux_sym_range_attribute_designator_token1, + STATE(215), 1, + sym_actual_parameter_part, + [44525] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3351), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3353), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_accept_statement_token2, + [44551] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + sym_identifier, + STATE(1182), 1, + sym_discriminant_specification, + STATE(1494), 1, + sym_discriminant_specification_list, + STATE(1511), 1, + sym__defining_identifier_list, + [44567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 1, + aux_sym_expression_token3, + ACTIONS(3355), 1, + aux_sym_package_specification_token3, + ACTIONS(3357), 1, + aux_sym_expression_token4, + STATE(1057), 1, + aux_sym_selective_accept_repeat1, + [44583] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3115), 1, + anon_sym_SEMI, + ACTIONS(3158), 1, + aux_sym_package_specification_token2, + STATE(1752), 1, + sym_aspect_specification, + [44599] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44615] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_LPAREN, + ACTIONS(3363), 1, + anon_sym_SEMI, + ACTIONS(3365), 1, + aux_sym_accept_statement_token2, + STATE(1349), 1, + sym_formal_part, + [44631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3115), 1, + anon_sym_SEMI, + ACTIONS(3367), 1, + aux_sym_package_specification_token2, + STATE(1451), 1, + sym_aspect_specification, + [44647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3369), 1, + anon_sym_SEMI, + ACTIONS(3371), 1, + aux_sym_with_clause_token2, + ACTIONS(3374), 1, + aux_sym_expression_token1, + STATE(1468), 1, + sym_record_extension_part, + [44663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + anon_sym_COMMA, + STATE(1069), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3379), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3381), 1, + anon_sym_SEMI, + ACTIONS(3383), 1, + aux_sym_expression_token3, + STATE(1621), 1, + sym_aspect_specification, + [44693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3385), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3387), 1, + anon_sym_RPAREN, + STATE(215), 1, + sym_actual_parameter_part, + [44725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3389), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3391), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44757] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3393), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3395), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [44789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3239), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3243), 1, + aux_sym_with_clause_token1, + ACTIONS(3397), 1, + anon_sym_SEMI, + ACTIONS(3399), 1, + aux_sym_expression_token3, + [44805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + aux_sym_expression_token1, + ACTIONS(3401), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, + aux_sym_allocator_token1, + ACTIONS(3409), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3405), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [44831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(1334), 1, + sym_aspect_specification, + ACTIONS(3411), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 1, + aux_sym_expression_token1, + ACTIONS(3413), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44857] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + anon_sym_DOT, + ACTIONS(2859), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(781), 2, + sym_tick, + anon_sym_LPAREN, + [44871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3419), 1, + aux_sym_range_attribute_designator_token1, + STATE(1471), 1, + sym_real_range_specification, + ACTIONS(3417), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [44885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3419), 1, + aux_sym_range_attribute_designator_token1, + STATE(1348), 1, + sym_real_range_specification, + ACTIONS(3421), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [44899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3423), 1, + aux_sym_compilation_unit_token1, + STATE(1403), 1, + sym_record_definition, + [44915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3425), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3427), 1, + aux_sym_package_specification_token2, + ACTIONS(3214), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3219), 1, + aux_sym_iterator_filter_token1, + STATE(1612), 1, + sym_variant_list, + STATE(1012), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [44951] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3187), 1, + anon_sym_SEMI, + ACTIONS(3430), 1, + aux_sym_package_specification_token2, + STATE(1412), 1, + sym_aspect_specification, + [44967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 1, + aux_sym_allocator_token1, + ACTIONS(3078), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3434), 1, + aux_sym_with_clause_token1, + ACTIONS(3436), 1, + aux_sym_private_type_declaration_token2, + [44993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [45009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3440), 1, + anon_sym_SEMI, + ACTIONS(839), 3, + sym_tick, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [45021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [45031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + aux_sym_object_renaming_declaration_token1, + STATE(215), 1, + sym_actual_parameter_part, + [45047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3447), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [45057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [45073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [45089] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3271), 1, + anon_sym_SEMI, + ACTIONS(3453), 1, + aux_sym_with_clause_token2, + ACTIONS(3456), 1, + aux_sym_expression_token1, + STATE(1366), 1, + sym_record_extension_part, + [45105] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3458), 1, + anon_sym_SEMI, + ACTIONS(3460), 1, + aux_sym_with_clause_token2, + ACTIONS(3463), 1, + aux_sym_expression_token1, + STATE(1325), 1, + sym_record_extension_part, + [45121] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + sym_identifier, + STATE(1283), 1, + sym_parameter_specification, + STATE(1549), 1, + sym__defining_identifier_list, + STATE(1554), 1, + sym__parameter_specification_list, + [45137] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1181), 1, + sym__enumeration_literal_specification, + STATE(1766), 1, + sym__enumeration_literal_list, + ACTIONS(3465), 2, + sym_identifier, + sym_character_literal, + [45151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 4, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43744] = 5, + [45161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, - sym_identifier, - STATE(1218), 1, - sym_parameter_specification, - STATE(1617), 1, - sym__defining_identifier_list, - STATE(1623), 1, - sym_parameter_specification_list, - [43760] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3226), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [43776] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3228), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [43792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3230), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3232), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43804] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3234), 1, + ACTIONS(3469), 1, anon_sym_COMMA, - STATE(1014), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3237), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43818] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3239), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [43834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3243), 1, - aux_sym_expression_token1, - ACTIONS(3241), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43846] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 1, - anon_sym_COMMA, - ACTIONS(3247), 1, + ACTIONS(3471), 1, anon_sym_RPAREN, STATE(1211), 1, aux_sym_record_component_association_list_repeat1, STATE(1212), 1, aux_sym_positional_array_aggregate_repeat1, - [43862] = 4, + [45177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, - aux_sym_range_attribute_designator_token1, - STATE(1429), 1, - sym_real_range_specification, - ACTIONS(3250), 2, - anon_sym_SEMI, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - [43876] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3254), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [43892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3258), 1, - aux_sym_package_specification_token2, - ACTIONS(3256), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43904] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3261), 1, - aux_sym_object_renaming_declaration_token1, - STATE(214), 1, - sym_actual_parameter_part, - [43920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3263), 1, - anon_sym_RPAREN, - STATE(214), 1, - sym_actual_parameter_part, - [43936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3265), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [43952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3267), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [43968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3269), 1, - aux_sym_object_renaming_declaration_token1, - STATE(214), 1, - sym_actual_parameter_part, - [43984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3273), 1, - aux_sym_expression_token1, - ACTIONS(3271), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43996] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - ACTIONS(3275), 1, - anon_sym_SEMI, - ACTIONS(3277), 1, - aux_sym_accept_statement_token2, - STATE(1324), 1, - sym_formal_part, - [44012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3279), 1, - anon_sym_COMMA, - STATE(214), 1, - sym_actual_parameter_part, - [44028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3281), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44044] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3117), 1, - anon_sym_SEMI, - ACTIONS(3119), 1, - aux_sym_package_specification_token2, - STATE(1852), 1, + ACTIONS(2874), 1, + aux_sym_iterator_filter_token1, + STATE(1401), 1, sym_aspect_specification, - [44060] = 5, + STATE(1647), 1, + sym_entry_barrier, + [45193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3283), 1, - anon_sym_SEMI, - ACTIONS(3285), 1, - aux_sym_package_specification_token2, - STATE(1325), 1, - sym_aspect_specification, - [44076] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 1, - sym_identifier, - STATE(1312), 1, - sym_discriminant_specification, - STATE(1552), 1, - sym__defining_identifier_list, - STATE(1553), 1, - sym_discriminant_specification_list, - [44092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3289), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3291), 1, - aux_sym_package_specification_token3, - STATE(1061), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44116] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3293), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3252), 1, - aux_sym_range_attribute_designator_token1, - STATE(1371), 1, - sym_real_range_specification, - ACTIONS(3297), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [44156] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3117), 1, - anon_sym_SEMI, - ACTIONS(3299), 1, - aux_sym_package_specification_token2, - STATE(1425), 1, - sym_aspect_specification, - [44172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44182] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3303), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44198] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44214] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3307), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [44230] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3309), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [44246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3311), 1, - aux_sym_package_specification_token2, - ACTIONS(3256), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44258] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, + ACTIONS(3474), 1, anon_sym_COMMA, - ACTIONS(2654), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3314), 1, - anon_sym_COLON, - STATE(1080), 1, - aux_sym__defining_identifier_list_repeat1, - [44274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_SEMI, - ACTIONS(3319), 1, - aux_sym_with_clause_token2, - ACTIONS(3322), 1, - aux_sym_expression_token1, - STATE(1395), 1, - sym_record_extension_part, - [44290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3324), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3327), 1, - aux_sym_package_specification_token3, - STATE(1047), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [44304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_DOT, - ACTIONS(2900), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(805), 2, - sym_tick, - anon_sym_LPAREN, - [44318] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3072), 1, - anon_sym_SEMI, - ACTIONS(3125), 1, - aux_sym_package_specification_token2, - STATE(1709), 1, - sym_aspect_specification, - [44334] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(2990), 1, - anon_sym_SEMI, - STATE(1094), 1, - sym_actual_parameter_part, - [44350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3289), 1, - aux_sym_iterator_filter_token1, - STATE(1609), 1, - sym_variant_list, - STATE(1034), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44364] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_COMMA, - STATE(1006), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3331), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3333), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [44394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3167), 4, - anon_sym_COMMA, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44404] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3335), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3337), 1, - anon_sym_SEMI, - ACTIONS(3339), 1, - aux_sym_with_clause_token1, - ACTIONS(3341), 1, - aux_sym_expression_token3, - [44420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3072), 1, - anon_sym_SEMI, - ACTIONS(3343), 1, - aux_sym_package_specification_token2, - STATE(1387), 1, - sym_aspect_specification, - [44436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 4, - anon_sym_COMMA, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 4, - anon_sym_COMMA, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3351), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3353), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3356), 1, - aux_sym_package_specification_token3, - STATE(1061), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_package_specification_token3, - ACTIONS(3360), 1, - aux_sym_expression_token3, - ACTIONS(3362), 1, - aux_sym_expression_token4, - STATE(1119), 1, - aux_sym_selective_accept_repeat1, - [44506] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3364), 1, - aux_sym_object_renaming_declaration_token1, - STATE(214), 1, - sym_actual_parameter_part, - [44522] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3366), 1, - aux_sym_with_clause_token1, - STATE(1335), 1, - sym_record_definition, - [44538] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3368), 1, - anon_sym_SEMI, - ACTIONS(3370), 1, - aux_sym_expression_token3, - STATE(1518), 1, - sym_aspect_specification, - [44554] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3372), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [44570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3374), 1, - anon_sym_RPAREN, - STATE(214), 1, - sym_actual_parameter_part, - [44586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(1334), 1, - sym__assign_value, - ACTIONS(3376), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(1337), 1, - sym__assign_value, - ACTIONS(3376), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3378), 1, - anon_sym_SEMI, - ACTIONS(3380), 1, - aux_sym_package_specification_token2, - STATE(1336), 1, - sym_aspect_specification, - [44630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_SEMI, - ACTIONS(3382), 1, - aux_sym_with_clause_token2, - ACTIONS(3385), 1, - aux_sym_expression_token1, - STATE(1395), 1, - sym_record_extension_part, - [44646] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3387), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2938), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3060), 1, - aux_sym_allocator_token1, - ACTIONS(3389), 1, - aux_sym_with_clause_token1, - ACTIONS(3391), 1, - aux_sym_private_type_declaration_token2, - [44678] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44694] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3395), 1, - aux_sym_object_renaming_declaration_token1, - STATE(214), 1, - sym_actual_parameter_part, - [44710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - anon_sym_SEMI, - ACTIONS(3399), 1, - aux_sym_with_clause_token2, - ACTIONS(3402), 1, - aux_sym_expression_token1, - STATE(1399), 1, - sym_record_extension_part, - [44726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 1, - anon_sym_COMMA, - STATE(1412), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2970), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3406), 1, - sym_tick, - ACTIONS(3408), 1, - aux_sym_iterated_element_association_token2, - STATE(214), 1, - sym_actual_parameter_part, - [44756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3410), 4, - anon_sym_COMMA, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, - anon_sym_COMMA, - STATE(1004), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(3412), 2, - anon_sym_COLON, - anon_sym_SEMI, - [44780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3414), 1, - anon_sym_COMMA, - STATE(1081), 1, + STATE(1106), 1, aux_sym__name_list_repeat1, - ACTIONS(3016), 2, + ACTIONS(2977), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44794] = 5, + [45207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3417), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_COMMA, - STATE(1052), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3421), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44840] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3423), 1, - anon_sym_LPAREN, - ACTIONS(3425), 1, - anon_sym_SEMI, - ACTIONS(3427), 1, - aux_sym_accept_statement_token2, - STATE(1453), 1, - sym_formal_part, - [44856] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44882] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44898] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 4, - anon_sym_COMMA, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [44908] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44924] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3441), 1, - aux_sym_expression_token3, - STATE(1091), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3439), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - [44938] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3444), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3446), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [44970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, - anon_sym_SEMI, - ACTIONS(859), 3, - sym_tick, - anon_sym_LPAREN, + ACTIONS(2147), 1, anon_sym_COLON_EQ, - [44982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - aux_sym_allocator_token1, - ACTIONS(3457), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3453), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [45006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - aux_sym_at_clause_token1, - STATE(214), 1, - sym_actual_parameter_part, - [45022] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(1328), 1, + STATE(1389), 1, sym__assign_value, - ACTIONS(3461), 2, + ACTIONS(3477), 2, anon_sym_RPAREN, anon_sym_SEMI, - [45036] = 2, + [45221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [45046] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, + ACTIONS(911), 1, sym_tick, - ACTIONS(1643), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [45062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3467), 1, - anon_sym_SEMI, - ACTIONS(3469), 1, - aux_sym_expression_token3, - STATE(1585), 1, - sym_aspect_specification, - [45078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 1, - aux_sym_package_specification_token2, - ACTIONS(3256), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [45090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(1353), 1, - sym__assign_value, - ACTIONS(3474), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [45104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - aux_sym_package_specification_token2, - ACTIONS(3256), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [45116] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - anon_sym_SEMI, ACTIONS(3479), 1, - aux_sym_with_clause_token2, - ACTIONS(3482), 1, - aux_sym_expression_token1, - STATE(1399), 1, - sym_record_extension_part, - [45132] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3484), 1, anon_sym_SEMI, - STATE(214), 1, + STATE(215), 1, sym_actual_parameter_part, - [45148] = 5, + [45237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(3481), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3484), 1, + aux_sym_package_specification_token3, + STATE(1109), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [45251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, aux_sym_primary_null_token1, - ACTIONS(1717), 1, + ACTIONS(1763), 1, aux_sym_record_component_association_list_token1, ACTIONS(3486), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, + aux_sym_with_clause_token1, + STATE(1462), 1, sym_record_definition, - [45164] = 5, + [45267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, ACTIONS(3488), 1, - aux_sym_object_renaming_declaration_token1, - STATE(214), 1, - sym_actual_parameter_part, - [45180] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3084), 1, - aux_sym_compilation_unit_token1, - STATE(1448), 1, - sym_record_definition, - [45196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(1332), 1, - sym__assign_value, - ACTIONS(3490), 2, + aux_sym_package_specification_token2, + ACTIONS(3214), 3, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [45210] = 4, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [45279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3492), 1, + ACTIONS(3491), 1, + sym_identifier, + STATE(899), 1, + sym_aspect_association, + STATE(901), 1, + sym__aspect_mark, + STATE(1120), 1, + sym_aspect_mark_list, + [45295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(1376), 1, + sym_aspect_specification, + ACTIONS(3493), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [45309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + STATE(1379), 1, + sym_aspect_specification, + ACTIONS(3495), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [45323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 1, + anon_sym_COMMA, + STATE(1115), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3500), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45337] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3502), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [45353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3504), 1, + aux_sym_compilation_unit_token1, + STATE(1414), 1, + sym_record_definition, + [45369] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3506), 1, + aux_sym_object_renaming_declaration_token1, + STATE(215), 1, + sym_actual_parameter_part, + [45385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3508), 1, aux_sym_iterator_filter_token1, - ACTIONS(3494), 1, + ACTIONS(3511), 1, aux_sym_package_specification_token3, - STATE(1047), 2, + STATE(1119), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [45224] = 5, + [45399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3339), 1, - aux_sym_with_clause_token1, - ACTIONS(3496), 1, - anon_sym_SEMI, - ACTIONS(3498), 1, - aux_sym_expression_token3, - [45240] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(2863), 1, - aux_sym_iterator_filter_token1, - STATE(1406), 1, - sym_aspect_specification, - STATE(1644), 1, - sym_entry_barrier, - [45256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3500), 4, + ACTIONS(3513), 4, anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [45266] = 5, + aux_sym_package_specification_token2, + [45409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym_SEMI, - ACTIONS(3504), 1, - aux_sym_with_clause_token2, - ACTIONS(3507), 1, - aux_sym_expression_token1, - STATE(1461), 1, - sym_record_extension_part, - [45282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3511), 1, - aux_sym_allocator_token1, - ACTIONS(3513), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3509), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [45296] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, ACTIONS(3515), 1, - aux_sym_range_attribute_designator_token1, - STATE(214), 1, - sym_actual_parameter_part, - [45312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym_SEMI, - ACTIONS(3517), 1, - aux_sym_with_clause_token2, - ACTIONS(3520), 1, - aux_sym_expression_token1, - STATE(1461), 1, - sym_record_extension_part, - [45328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, - aux_sym_expression_token3, - ACTIONS(3522), 1, - aux_sym_package_specification_token3, - ACTIONS(3524), 1, - aux_sym_expression_token4, - STATE(1091), 1, - aux_sym_selective_accept_repeat1, - [45344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3526), 1, - aux_sym_with_clause_token1, - STATE(1448), 1, - sym_record_definition, - [45360] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - sym_tick, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(3528), 1, - anon_sym_SEMI, - STATE(214), 1, - sym_actual_parameter_part, - [45376] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1275), 1, - sym__enumeration_literal_specification, - STATE(1860), 1, - sym__enumeration_literal_list, - ACTIONS(3530), 2, - sym_identifier, - sym_character_literal, - [45390] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3532), 1, - sym_identifier, - STATE(994), 1, - sym_aspect_association, - STATE(995), 1, - sym__aspect_mark, - STATE(1232), 1, - sym_aspect_mark_list, - [45406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3534), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3536), 1, - anon_sym_SEMI, - STATE(1714), 1, - sym_aspect_specification, - [45428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3538), 1, - anon_sym_SEMI, - STATE(1699), 1, - sym_aspect_specification, - [45441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3540), 3, - anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [45450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3542), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3544), 1, anon_sym_COMMA, - ACTIONS(3546), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym_actual_parameter_part_repeat1, - [45472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3548), 1, - anon_sym_COMMA, - ACTIONS(3550), 1, - anon_sym_RPAREN, - STATE(1281), 1, - aux_sym_pragma_g_repeat1, - [45485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2119), 1, - aux_sym_iterator_filter_token1, - STATE(1149), 1, - sym__guard_select, - STATE(1178), 1, - sym_guard, - [45507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [45516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3556), 1, - aux_sym_expression_token2, - ACTIONS(3558), 2, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - anon_sym_COMMA, - ACTIONS(3560), 1, - anon_sym_SEMI, - STATE(1081), 1, - aux_sym__name_list_repeat1, - [45540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 1, - anon_sym_COMMA, - ACTIONS(3565), 1, - anon_sym_RPAREN, - STATE(1136), 1, - aux_sym_global_aspect_definition_repeat1, - [45553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 1, - anon_sym_COMMA, - ACTIONS(3570), 1, - anon_sym_RPAREN, - STATE(1137), 1, - aux_sym_record_component_association_list_repeat1, - [45566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3572), 1, - anon_sym_SEMI, - STATE(1469), 1, - sym_aspect_specification, - [45579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3574), 1, - anon_sym_COMMA, - ACTIONS(3577), 1, - anon_sym_RPAREN, - STATE(1139), 1, - aux_sym_index_constraint_repeat1, - [45592] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1206), 1, - sym_quantifier, - ACTIONS(3056), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [45603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_RPAREN, - ACTIONS(3581), 1, - anon_sym_SEMI, - STATE(1141), 1, - aux_sym_discriminant_specification_list_repeat1, - [45616] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1081), 1, - aux_sym__name_list_repeat1, - ACTIONS(3584), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3586), 1, - anon_sym_RPAREN, - STATE(1129), 1, - aux_sym_actual_parameter_part_repeat1, - [45640] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1319), 1, - sym__enumeration_literal_specification, - ACTIONS(3588), 2, - sym_identifier, - sym_character_literal, - [45651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - anon_sym_COMMA, - ACTIONS(3592), 1, - anon_sym_RPAREN, - STATE(1223), 1, - aux_sym__enumeration_literal_list_repeat1, - [45664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym_COMMA, - ACTIONS(3596), 1, - anon_sym_RPAREN, - STATE(1177), 1, - aux_sym_case_expression_repeat1, - [45677] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_SEMI, - ACTIONS(3600), 1, - aux_sym_package_specification_token2, - ACTIONS(3602), 1, - aux_sym_expression_token3, - [45690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3604), 1, - anon_sym_SEMI, - STATE(1802), 1, - sym_aspect_specification, - [45703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3439), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3606), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3608), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - STATE(1448), 1, - sym_record_definition, - [45752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3610), 1, - anon_sym_SEMI, - STATE(1729), 1, - sym_aspect_specification, - [45765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3612), 1, - aux_sym_package_specification_token2, - STATE(1882), 1, - sym_aspect_specification, - [45778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3614), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3616), 1, - anon_sym_SEMI, - ACTIONS(3618), 1, - aux_sym_with_clause_token1, - [45800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3620), 1, - aux_sym_package_specification_token2, - STATE(1481), 1, - sym_aspect_specification, - [45813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3622), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 1, - aux_sym_allocator_token1, - ACTIONS(3624), 1, - aux_sym_with_clause_token1, - ACTIONS(3626), 1, - aux_sym_private_type_declaration_token2, - [45835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3628), 1, - anon_sym_SEMI, - STATE(1686), 1, - sym_aspect_specification, - [45848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3630), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3632), 1, - anon_sym_SEMI, - STATE(1762), 1, - sym_aspect_specification, - [45870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, - anon_sym_EQ_GT, - ACTIONS(3636), 1, - anon_sym_PIPE, - STATE(1168), 1, - aux_sym_exception_choice_list_repeat1, - [45883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45892] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, - sym_identifier, - ACTIONS(3642), 1, - aux_sym_use_clause_token2, - ACTIONS(3644), 1, - aux_sym_package_body_token1, - [45905] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3648), 1, - aux_sym_use_clause_token2, - ACTIONS(3650), 1, - aux_sym_package_body_token1, - [45918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3652), 1, - anon_sym_EQ_GT, - ACTIONS(3654), 1, - anon_sym_PIPE, - STATE(1168), 1, - aux_sym_exception_choice_list_repeat1, - [45931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3657), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [45949] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3209), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [45967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3663), 1, - aux_sym_package_specification_token2, - STATE(1674), 1, - sym_aspect_specification, - [45980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3665), 1, - anon_sym_SEMI, - STATE(1788), 1, - sym_aspect_specification, - [45993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3667), 1, - aux_sym_package_specification_token2, - STATE(1616), 1, - sym_aspect_specification, - [46006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3139), 1, - anon_sym_SEMI, - STATE(1800), 1, - sym_aspect_specification, - [46019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3672), 1, - anon_sym_RPAREN, - STATE(1177), 1, - aux_sym_case_expression_repeat1, - [46032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - STATE(30), 1, - sym_accept_statement, - STATE(1131), 1, - sym__select_alternative, - [46045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3674), 1, - aux_sym_package_specification_token2, - STATE(1681), 1, - sym_aspect_specification, - [46058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3676), 1, - anon_sym_COMMA, - ACTIONS(3678), 1, - anon_sym_RBRACK, - STATE(1014), 1, + STATE(1335), 1, aux_sym_positional_array_aggregate_repeat1, - [46071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2898), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2903), 1, - anon_sym_COLON, - ACTIONS(2905), 1, - aux_sym_iterator_specification_token1, - [46084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3680), 1, - anon_sym_SEMI, - STATE(1810), 1, - sym_aspect_specification, - [46097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3682), 1, - anon_sym_SEMI, - STATE(1815), 1, - sym_aspect_specification, - [46110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - aux_sym_primary_null_token1, - ACTIONS(1717), 1, - aux_sym_record_component_association_list_token1, - STATE(1413), 1, - sym_record_definition, - [46123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3684), 1, + ACTIONS(2953), 2, anon_sym_EQ_GT, - ACTIONS(3686), 1, anon_sym_PIPE, - STATE(1261), 1, - aux_sym_discrete_choice_list_repeat1, - [46136] = 4, + [45423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [45439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3519), 1, + aux_sym_package_specification_token2, + ACTIONS(3214), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [45451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3458), 1, + anon_sym_SEMI, + ACTIONS(3522), 1, + aux_sym_with_clause_token2, + ACTIONS(3525), 1, + aux_sym_expression_token1, + STATE(1325), 1, + sym_record_extension_part, + [45467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3369), 1, + anon_sym_SEMI, + ACTIONS(3527), 1, + aux_sym_with_clause_token2, + ACTIONS(3530), 1, + aux_sym_expression_token1, + STATE(1468), 1, + sym_record_extension_part, + [45483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3532), 1, + anon_sym_SEMI, + STATE(215), 1, + sym_actual_parameter_part, + [45499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, aux_sym_primary_null_token1, - ACTIONS(1717), 1, + ACTIONS(1763), 1, aux_sym_record_component_association_list_token1, + ACTIONS(3534), 1, + aux_sym_compilation_unit_token1, STATE(1403), 1, sym_record_definition, - [46149] = 2, + [45515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3688), 3, - anon_sym_SEMI, + ACTIONS(911), 1, + sym_tick, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(3536), 1, + aux_sym_at_clause_token1, + STATE(215), 1, + sym_actual_parameter_part, + [45531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3538), 1, + aux_sym_compilation_unit_token1, + STATE(1403), 1, + sym_record_definition, + [45547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46158] = 4, + ACTIONS(3540), 1, + anon_sym_SEMI, + STATE(1564), 1, + sym_aspect_specification, + [45560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_COMMA, - ACTIONS(3692), 1, + ACTIONS(1741), 1, + aux_sym_attribute_designator_token1, + STATE(1230), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [45571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, anon_sym_RPAREN, - STATE(1249), 1, - aux_sym_record_component_association_list_repeat2, - [46171] = 4, + ACTIONS(3544), 1, + anon_sym_SEMI, + STATE(1132), 1, + aux_sym_discriminant_specification_list_repeat1, + [45584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3547), 1, + anon_sym_SEMI, + STATE(1718), 1, + sym_aspect_specification, + [45597] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1391), 1, + sym__enumeration_literal_specification, + ACTIONS(3549), 2, sym_identifier, - STATE(1367), 1, - sym__named_record_component_association, - STATE(1560), 1, - sym_component_choice_list, - [46184] = 4, + sym_character_literal, + [45608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3696), 1, - anon_sym_SEMI, - STATE(1819), 1, - sym_aspect_specification, - [46197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3698), 1, - anon_sym_SEMI, - STATE(1621), 1, - sym_aspect_specification, - [46210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3700), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [46219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3706), 1, - anon_sym_RPAREN, - ACTIONS(3708), 1, - anon_sym_SEMI, - STATE(1194), 1, - aux_sym_parameter_specification_list_repeat1, - [46243] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3636), 1, - anon_sym_PIPE, - ACTIONS(3711), 1, - anon_sym_EQ_GT, - STATE(1164), 1, - aux_sym_exception_choice_list_repeat1, - [46256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3713), 1, - anon_sym_SEMI, - STATE(1743), 1, - sym_aspect_specification, - [46269] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3715), 1, - anon_sym_SEMI, - STATE(1770), 1, - sym_aspect_specification, - [46282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, + ACTIONS(3551), 1, anon_sym_COMMA, - ACTIONS(3584), 1, - anon_sym_SEMI, - STATE(1081), 1, - aux_sym__name_list_repeat1, - [46295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3717), 1, - anon_sym_SEMI, - STATE(1900), 1, - sym_aspect_specification, - [46308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym_COMMA, - ACTIONS(3719), 1, + ACTIONS(3553), 1, anon_sym_RPAREN, - STATE(1146), 1, - aux_sym_case_expression_repeat1, - [46321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3721), 1, - anon_sym_SEMI, - STATE(1769), 1, - sym_aspect_specification, - [46334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3723), 1, - anon_sym_SEMI, - STATE(1763), 1, - sym_aspect_specification, - [46347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3725), 1, - anon_sym_SEMI, - STATE(1605), 1, - sym_aspect_specification, - [46360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_COMMA, - ACTIONS(3731), 1, - anon_sym_RPAREN, - STATE(1139), 1, - aux_sym_index_constraint_repeat1, - [46382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - sym_identifier, - STATE(1878), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [46393] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46402] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1864), 1, - anon_sym_PIPE, - ACTIONS(3737), 1, - anon_sym_EQ_GT, - STATE(1229), 1, - aux_sym_component_choice_list_repeat1, - [46415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3739), 1, - anon_sym_SEMI, - STATE(1753), 1, - sym_aspect_specification, - [46428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3741), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_aspect_specification, - [46441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, - anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_RPAREN, - STATE(1137), 1, - aux_sym_record_component_association_list_repeat1, - [46454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 1, - anon_sym_COMMA, - ACTIONS(3749), 1, - anon_sym_RPAREN, - STATE(1014), 1, - aux_sym_positional_array_aggregate_repeat1, - [46467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 1, - sym_identifier, - STATE(1410), 1, - sym_parameter_specification, - STATE(1617), 1, - sym__defining_identifier_list, - [46480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3751), 1, - anon_sym_COMMA, - ACTIONS(2970), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [46491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3753), 1, - anon_sym_SEMI, - STATE(1749), 1, - sym_aspect_specification, - [46504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [46513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3757), 1, - anon_sym_RPAREN, - ACTIONS(3759), 1, - anon_sym_SEMI, - STATE(1194), 1, - aux_sym_parameter_specification_list_repeat1, - [46526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_SEMI, - ACTIONS(3761), 1, - anon_sym_RPAREN, - STATE(1217), 1, - aux_sym_parameter_specification_list_repeat1, - [46539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3765), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(1742), 1, - sym_aspect_specification, - [46570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3769), 1, - anon_sym_SEMI, - STATE(1756), 1, - sym_aspect_specification, - [46583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RPAREN, - STATE(1223), 1, + STATE(1231), 1, aux_sym__enumeration_literal_list_repeat1, - [46596] = 4, + [45621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3776), 1, + ACTIONS(3169), 3, anon_sym_SEMI, - STATE(1771), 1, - sym_aspect_specification, - [46609] = 4, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(3555), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3778), 1, + aux_sym_expression_token3, + [45639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 1, + anon_sym_EQ_GT, + ACTIONS(3559), 1, + anon_sym_PIPE, + STATE(1138), 1, + aux_sym_discrete_choice_list_repeat1, + [45652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3562), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3564), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3566), 1, anon_sym_SEMI, STATE(1774), 1, sym_aspect_specification, - [46622] = 4, + [45683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3780), 1, - anon_sym_SEMI, - STATE(1787), 1, - sym_aspect_specification, - [46635] = 4, + ACTIONS(3175), 1, + aux_sym_allocator_token1, + ACTIONS(3568), 1, + aux_sym_with_clause_token1, + ACTIONS(3570), 1, + aux_sym_private_type_declaration_token2, + [45696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1874), 1, + STATE(1106), 1, + aux_sym__name_list_repeat1, + ACTIONS(3572), 2, anon_sym_COMMA, - ACTIONS(1876), 1, - anon_sym_COLON, - STATE(1080), 1, - aux_sym__defining_identifier_list_repeat1, - [46648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_EQ_GT, - ACTIONS(3786), 1, - anon_sym_PIPE, - STATE(1229), 1, - aux_sym_component_choice_list_repeat1, - [46670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_COMMA, - ACTIONS(3789), 1, anon_sym_RPAREN, - STATE(1205), 1, - aux_sym_index_constraint_repeat1, - [46683] = 2, + [45707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 3, - anon_sym_SEMI, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 3, - aux_sym_iterator_filter_token1, + ACTIONS(3574), 1, anon_sym_SEMI, - aux_sym_package_specification_token2, - [46701] = 4, + STATE(1818), 1, + sym_aspect_specification, + [45720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(3379), 3, anon_sym_COMMA, - ACTIONS(3795), 1, anon_sym_RPAREN, - STATE(1211), 1, - aux_sym_record_component_association_list_repeat1, - [46714] = 2, + anon_sym_RBRACK, + [45729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 3, - anon_sym_SEMI, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3799), 1, + ACTIONS(3576), 1, anon_sym_SEMI, - STATE(1733), 1, + STATE(1518), 1, sym_aspect_specification, - [46736] = 4, + [45742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3532), 1, - sym_identifier, - STATE(995), 1, - sym__aspect_mark, - STATE(1054), 1, - sym_aspect_association, - [46749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3801), 1, - anon_sym_SEMI, - STATE(1533), 1, - sym_aspect_specification, - [46762] = 4, + ACTIONS(3578), 1, + anon_sym_COMMA, + ACTIONS(3581), 1, + anon_sym_RPAREN, + STATE(1147), 1, + aux_sym_record_component_association_list_repeat2, + [45755] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1862), 1, anon_sym_EQ_GT, ACTIONS(1864), 1, anon_sym_PIPE, - STATE(1208), 1, + STATE(1289), 1, aux_sym_component_choice_list_repeat1, - [46775] = 4, + [45768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(3583), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(851), 2, + sym_tick, + anon_sym_LPAREN, + [45788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3588), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3593), 1, anon_sym_RPAREN, - STATE(1212), 1, + STATE(1152), 1, + aux_sym_record_component_association_list_repeat1, + [45810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3595), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + STATE(1462), 1, + sym_record_definition, + [45832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3597), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, + anon_sym_RPAREN, + STATE(1155), 1, + aux_sym_index_constraint_repeat1, + [45845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3602), 1, + aux_sym_package_specification_token2, + STATE(1485), 1, + sym_aspect_specification, + [45858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_COMMA, + ACTIONS(3608), 1, + anon_sym_RPAREN, + STATE(1234), 1, + aux_sym_case_expression_repeat1, + [45880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, + sym_identifier, + ACTIONS(3612), 1, + aux_sym_use_clause_token2, + ACTIONS(3614), 1, + aux_sym_package_body_token1, + [45893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + anon_sym_COMMA, + ACTIONS(3618), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_record_component_association_list_repeat1, + [45906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_EQ_GT, + ACTIONS(3624), 1, + anon_sym_PIPE, + STATE(1173), 1, + aux_sym_exception_choice_list_repeat1, + [45928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3629), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_global_aspect_definition_repeat1, + [45941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + aux_sym_use_clause_token2, + ACTIONS(3635), 1, + aux_sym_package_body_token1, + [45954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3637), 1, + anon_sym_SEMI, + STATE(1823), 1, + sym_aspect_specification, + [45967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3639), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [45976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3641), 1, + anon_sym_SEMI, + STATE(1827), 1, + sym_aspect_specification, + [45989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [45998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3645), 1, + anon_sym_SEMI, + STATE(1515), 1, + sym_aspect_specification, + [46011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_COMMA, + ACTIONS(3649), 1, + anon_sym_RPAREN, + STATE(1205), 1, + aux_sym_index_constraint_repeat1, + [46024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [46033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3653), 1, + anon_sym_SEMI, + STATE(1657), 1, + sym_aspect_specification, + [46046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3655), 1, + anon_sym_EQ_GT, + ACTIONS(3657), 1, + anon_sym_PIPE, + STATE(1173), 1, + aux_sym_exception_choice_list_repeat1, + [46059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_RPAREN, + ACTIONS(3662), 1, + anon_sym_SEMI, + STATE(1132), 1, + aux_sym_discriminant_specification_list_repeat1, + [46072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [46081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3491), 1, + sym_identifier, + STATE(901), 1, + sym__aspect_mark, + STATE(980), 1, + sym_aspect_association, + [46094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3666), 1, + aux_sym_package_specification_token2, + STATE(1589), 1, + sym_aspect_specification, + [46107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3668), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym__defining_identifier_list_repeat1, + [46120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2857), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2862), 1, + anon_sym_COLON, + ACTIONS(2864), 1, + aux_sym_iterator_specification_token1, + [46133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3673), 1, + aux_sym_package_specification_token2, + STATE(1601), 1, + sym_aspect_specification, + [46146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + anon_sym_COMMA, + ACTIONS(3675), 1, + anon_sym_RPAREN, + STATE(1135), 1, + aux_sym__enumeration_literal_list_repeat1, + [46159] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_SEMI, + ACTIONS(3677), 1, + anon_sym_RPAREN, + STATE(1174), 1, + aux_sym_discriminant_specification_list_repeat1, + [46172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + STATE(1414), 1, + sym_record_definition, + [46185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3679), 1, + anon_sym_SEMI, + STATE(1778), 1, + sym_aspect_specification, + [46198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + aux_sym_primary_null_token1, + ACTIONS(1763), 1, + aux_sym_record_component_association_list_token1, + STATE(1403), 1, + sym_record_definition, + [46211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3003), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, + anon_sym_SEMI, + STATE(1106), 1, + aux_sym__name_list_repeat1, + [46233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3683), 1, + anon_sym_SEMI, + STATE(1806), 1, + sym_aspect_specification, + [46246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3685), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3687), 1, + anon_sym_SEMI, + STATE(1809), 1, + sym_aspect_specification, + [46268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3689), 1, + anon_sym_SEMI, + STATE(1811), 1, + sym_aspect_specification, + [46281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3691), 1, + anon_sym_SEMI, + STATE(1711), 1, + sym_aspect_specification, + [46294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3693), 1, + anon_sym_RPAREN, + ACTIONS(3695), 1, + anon_sym_SEMI, + STATE(1193), 1, + aux_sym__parameter_specification_list_repeat1, + [46307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3698), 1, + anon_sym_SEMI, + STATE(1812), 1, + sym_aspect_specification, + [46320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3419), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(3700), 1, + aux_sym_attribute_designator_token3, + STATE(1472), 1, + sym_real_range_specification, + [46333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3702), 1, + anon_sym_SEMI, + STATE(1805), 1, + sym_aspect_specification, + [46346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3704), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [46355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3706), 1, + anon_sym_SEMI, + STATE(1710), 1, + sym_aspect_specification, + [46368] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3708), 1, + anon_sym_SEMI, + STATE(1624), 1, + sym_aspect_specification, + [46381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_COMMA, + ACTIONS(3710), 1, + anon_sym_RPAREN, + STATE(1158), 1, + aux_sym_case_expression_repeat1, + [46394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3712), 1, + anon_sym_SEMI, + STATE(1749), 1, + sym_aspect_specification, + [46407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3714), 1, + sym_identifier, + ACTIONS(3716), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3718), 1, + anon_sym_SEMI, + STATE(1911), 1, + sym_aspect_specification, + [46431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3720), 1, + anon_sym_SEMI, + STATE(1632), 1, + sym_aspect_specification, + [46444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_COMMA, + ACTIONS(3722), 1, + anon_sym_RPAREN, + STATE(1155), 1, + aux_sym_index_constraint_repeat1, + [46457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3121), 1, + anon_sym_SEMI, + STATE(1838), 1, + sym_aspect_specification, + [46470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3724), 1, + anon_sym_EQ_GT, + ACTIONS(3726), 1, + anon_sym_PIPE, + STATE(1207), 1, + aux_sym_component_choice_list_repeat1, + [46483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3729), 1, + anon_sym_SEMI, + STATE(1825), 1, + sym_aspect_specification, + [46496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + anon_sym_COMMA, + ACTIONS(3735), 1, + anon_sym_RPAREN, + STATE(1152), 1, + aux_sym_record_component_association_list_repeat1, + [46527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + anon_sym_COMMA, + ACTIONS(3739), 1, + anon_sym_RPAREN, + STATE(1115), 1, aux_sym_positional_array_aggregate_repeat1, - [46788] = 4, + [46540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, + ACTIONS(3741), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3743), 1, anon_sym_COMMA, - ACTIONS(3807), 1, + ACTIONS(2953), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3745), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3749), 1, + anon_sym_SEMI, + STATE(1736), 1, + sym_aspect_specification, + [46591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3751), 1, + anon_sym_SEMI, + STATE(1608), 1, + sym_aspect_specification, + [46604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3753), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + STATE(30), 1, + sym_accept_statement, + STATE(1307), 1, + sym__select_alternative, + [46626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_COMMA, + ACTIONS(3757), 1, anon_sym_RPAREN, - STATE(1305), 1, - aux_sym__index_subtype_definition_list_repeat1, - [46801] = 4, + STATE(1304), 1, + aux_sym_actual_parameter_part_repeat1, + [46639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3759), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3763), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3239), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3407), 1, + aux_sym_allocator_token1, + [46679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3765), 1, + anon_sym_SEMI, + STATE(1845), 1, + sym_aspect_specification, + [46692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3767), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3769), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3771), 1, + aux_sym_package_specification_token2, + STATE(1601), 1, + sym_aspect_specification, + [46723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3773), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 1, + anon_sym_COMMA, + ACTIONS(3778), 1, + anon_sym_RPAREN, + STATE(1231), 1, + aux_sym__enumeration_literal_list_repeat1, + [46745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3780), 1, + anon_sym_SEMI, + STATE(1730), 1, + sym_aspect_specification, + [46758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 1, + anon_sym_COMMA, + ACTIONS(3787), 1, + anon_sym_RPAREN, + STATE(1234), 1, + aux_sym_case_expression_repeat1, + [46780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3791), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_RPAREN, + STATE(1221), 1, + aux_sym_actual_parameter_part_repeat1, + [46811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3795), 1, + anon_sym_RPAREN, + ACTIONS(3797), 1, + anon_sym_SEMI, + STATE(1193), 1, + aux_sym__parameter_specification_list_repeat1, + [46824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3799), 1, + anon_sym_SEMI, + STATE(1694), 1, + sym_aspect_specification, + [46837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3310), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46855] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(501), 1, aux_sym_value_sequence_token1, - STATE(1849), 1, + STATE(1871), 1, sym_iterated_element_association, - [46814] = 4, + [46868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RPAREN, - STATE(1313), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [46827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3815), 1, + ACTIONS(3803), 1, anon_sym_SEMI, - STATE(1497), 1, + STATE(1700), 1, sym_aspect_specification, - [46858] = 4, + [46881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(3088), 1, + sym_identifier, + STATE(1417), 1, + sym_parameter_specification, + STATE(1549), 1, + sym__defining_identifier_list, + [46894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3805), 1, + anon_sym_SEMI, + STATE(1500), 1, + sym_aspect_specification, + [46907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3807), 1, + anon_sym_SEMI, + STATE(1614), 1, + sym_aspect_specification, + [46920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3809), 1, + anon_sym_SEMI, + ACTIONS(3811), 1, + aux_sym_with_clause_token1, + [46933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3815), 1, + anon_sym_RPAREN, + STATE(1310), 1, + aux_sym_record_component_association_list_repeat2, + [46946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 1, + anon_sym_COMMA, + ACTIONS(1872), 1, + anon_sym_COLON, + STATE(1255), 1, + aux_sym__defining_identifier_list_repeat1, + [46959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + sym_identifier, + STATE(1387), 1, + sym_discriminant_specification, + STATE(1511), 1, + sym__defining_identifier_list, + [46972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, aux_sym_with_clause_token2, ACTIONS(3817), 1, anon_sym_SEMI, - STATE(1906), 1, + STATE(1504), 1, sym_aspect_specification, - [46871] = 4, + [46985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3196), 1, + ACTIONS(3123), 1, anon_sym_SEMI, - STATE(1546), 1, + STATE(1613), 1, sym_aspect_specification, - [46884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, - aux_sym_attribute_designator_token1, - STATE(1152), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [46895] = 4, + [46998] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(3819), 1, - anon_sym_COMMA, - ACTIONS(3822), 1, - anon_sym_RPAREN, - STATE(1249), 1, - aux_sym_record_component_association_list_repeat2, - [46908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3824), 1, anon_sym_SEMI, - STATE(1548), 1, + STATE(1759), 1, sym_aspect_specification, - [46921] = 4, + [47011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3826), 1, - anon_sym_SEMI, - STATE(1501), 1, - sym_aspect_specification, - [46934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3828), 1, - aux_sym_package_specification_token2, - STATE(1592), 1, - sym_aspect_specification, - [46947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3830), 3, + ACTIONS(3737), 1, anon_sym_COMMA, + ACTIONS(3821), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [46956] = 4, + STATE(1212), 1, + aux_sym_positional_array_aggregate_repeat1, + [47024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 1, + ACTIONS(1870), 1, anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym__defining_identifier_list_repeat1, + [47037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3829), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3831), 1, + anon_sym_SEMI, + STATE(1755), 1, + sym_aspect_specification, + [47077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3833), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(3835), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym_actual_parameter_part_repeat1, - [46969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3216), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3837), 3, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46987] = 2, + STATE(1867), 1, + sym_aspect_specification, + [47099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46996] = 2, + ACTIONS(3837), 1, + anon_sym_EQ_GT, + ACTIONS(3839), 1, + anon_sym_PIPE, + STATE(1319), 1, + aux_sym_discrete_choice_list_repeat1, + [47112] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3841), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47005] = 2, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [47121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3843), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47014] = 2, + anon_sym_SEMI, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [47130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3845), 3, - anon_sym_SEMI, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47023] = 4, + ACTIONS(3845), 1, + anon_sym_SEMI, + STATE(1716), 1, + sym_aspect_specification, + [47143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3841), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [47152] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3847), 1, - anon_sym_EQ_GT, + anon_sym_COMMA, ACTIONS(3849), 1, - anon_sym_PIPE, - STATE(1261), 1, - aux_sym_discrete_choice_list_repeat1, - [47036] = 4, + anon_sym_RPAREN, + STATE(1291), 1, + aux_sym_pragma_g_repeat1, + [47165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3852), 1, + ACTIONS(3851), 1, aux_sym_package_specification_token2, - STATE(1616), 1, + STATE(1875), 1, sym_aspect_specification, - [47049] = 4, + [47178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3854), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - STATE(1887), 1, + STATE(1876), 1, sym_aspect_specification, - [47062] = 2, + [47191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 3, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3855), 1, + anon_sym_SEMI, + STATE(1878), 1, + sym_aspect_specification, + [47204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3857), 1, + anon_sym_SEMI, + STATE(1576), 1, + sym_aspect_specification, + [47217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3859), 1, + aux_sym_package_specification_token2, + STATE(1680), 1, + sym_aspect_specification, + [47230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3847), 1, + anon_sym_COMMA, + ACTIONS(3861), 1, + anon_sym_RPAREN, + STATE(1267), 1, + aux_sym_pragma_g_repeat1, + [47243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3865), 1, + anon_sym_SEMI, + STATE(1748), 1, + sym_aspect_specification, + [47265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, + anon_sym_COMMA, + ACTIONS(3869), 1, + anon_sym_RPAREN, + STATE(1316), 1, + aux_sym__index_subtype_definition_list_repeat1, + [47278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3871), 1, + anon_sym_SEMI, + STATE(1691), 1, + sym_aspect_specification, + [47291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3873), 1, + anon_sym_LPAREN, + STATE(1717), 1, + sym_iterated_element_association, + [47304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_RPAREN, + STATE(1323), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [47317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3879), 1, + aux_sym_package_specification_token2, + STATE(1732), 1, + sym_aspect_specification, + [47330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, + aux_sym_iterator_filter_token1, + STATE(1041), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [47341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_SEMI, + ACTIONS(3883), 1, + aux_sym_package_specification_token2, + ACTIONS(3885), 1, + aux_sym_expression_token3, + [47354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3797), 1, + anon_sym_SEMI, + ACTIONS(3887), 1, + anon_sym_RPAREN, + STATE(1238), 1, + aux_sym__parameter_specification_list_repeat1, + [47367] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3889), 1, + anon_sym_SEMI, + STATE(1528), 1, + sym_aspect_specification, + [47380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3891), 1, + anon_sym_SEMI, + STATE(1529), 1, + sym_aspect_specification, + [47393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3193), 1, + anon_sym_SEMI, + STATE(1584), 1, + sym_aspect_specification, + [47406] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1293), 1, + sym_quantifier, + ACTIONS(2985), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [47417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(3895), 1, + anon_sym_RPAREN, + STATE(1318), 1, + aux_sym_global_aspect_definition_repeat1, + [47430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1864), 1, + anon_sym_PIPE, + ACTIONS(3897), 1, + anon_sym_EQ_GT, + STATE(1207), 1, + aux_sym_component_choice_list_repeat1, + [47443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3899), 1, + anon_sym_SEMI, + STATE(1739), 1, + sym_aspect_specification, + [47456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 1, + anon_sym_COMMA, + ACTIONS(3904), 1, + anon_sym_RPAREN, + STATE(1291), 1, + aux_sym_pragma_g_repeat1, + [47469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RPAREN, + STATE(1292), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [47482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, + sym_identifier, + STATE(1901), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [47493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3913), 1, + anon_sym_SEMI, + STATE(1898), 1, + sym_aspect_specification, + [47506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [47071] = 2, + [47515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 3, + ACTIONS(3500), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [47080] = 4, + [47524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(3858), 1, - aux_sym_attribute_designator_token3, - STATE(1431), 1, - sym_real_range_specification, - [47093] = 2, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3917), 1, + anon_sym_SEMI, + STATE(1585), 1, + sym_aspect_specification, + [47537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 3, + ACTIONS(3919), 1, anon_sym_COMMA, + ACTIONS(3922), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [47102] = 2, + STATE(1298), 1, + aux_sym__index_subtype_definition_list_repeat1, + [47550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3862), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, + ACTIONS(3911), 1, sym_identifier, - STATE(1834), 2, + STATE(1424), 2, sym_loop_parameter_specification, sym_iterator_specification, - [47131] = 4, + [47561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3864), 1, - anon_sym_SEMI, - STATE(1857), 1, - sym_aspect_specification, - [47144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RPAREN, - STATE(1279), 1, - aux_sym_global_aspect_definition_repeat1, - [47157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3872), 1, - anon_sym_SEMI, - STATE(1885), 1, - sym_aspect_specification, - [47179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - anon_sym_COMMA, - ACTIONS(3874), 1, - anon_sym_RPAREN, - STATE(1145), 1, - aux_sym__enumeration_literal_list_repeat1, - [47192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3876), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3878), 1, - anon_sym_RPAREN, - ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(1141), 1, - aux_sym_discriminant_specification_list_repeat1, - [47214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3882), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, - anon_sym_RPAREN, - STATE(1136), 1, - aux_sym_global_aspect_definition_repeat1, - [47236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3886), 1, - anon_sym_SEMI, - STATE(1866), 1, - sym_aspect_specification, - [47249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3548), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym_pragma_g_repeat1, - [47262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3890), 1, - anon_sym_SEMI, - STATE(1868), 1, - sym_aspect_specification, - [47275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3137), 1, - anon_sym_SEMI, - STATE(1581), 1, - sym_aspect_specification, - [47288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3892), 1, - anon_sym_SEMI, - STATE(1525), 1, - sym_aspect_specification, - [47301] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3894), 1, - anon_sym_SEMI, - STATE(1526), 1, - sym_aspect_specification, - [47314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3896), 1, - anon_sym_SEMI, - STATE(1582), 1, - sym_aspect_specification, - [47327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3898), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(847), 2, - sym_tick, - anon_sym_LPAREN, - [47338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 1, - sym_identifier, - STATE(1449), 1, - sym_discriminant_specification, - STATE(1552), 1, - sym__defining_identifier_list, - [47351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3901), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_expression_token3, - [47360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3903), 1, - anon_sym_LPAREN, - STATE(1652), 1, - sym_iterated_element_association, - [47373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - anon_sym_COMMA, - ACTIONS(3908), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym_pragma_g_repeat1, - [47386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - sym_identifier, - STATE(1409), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [47397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3910), 1, - anon_sym_SEMI, - STATE(1723), 1, - sym_aspect_specification, - [47410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3912), 1, - anon_sym_SEMI, - STATE(1496), 1, - sym_aspect_specification, - [47423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3918), 1, - anon_sym_SEMI, - STATE(1600), 1, - sym_aspect_specification, - [47454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3920), 1, - anon_sym_SEMI, - STATE(1694), 1, - sym_aspect_specification, - [47467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, ACTIONS(3924), 1, anon_sym_SEMI, - STATE(1678), 1, + STATE(1896), 1, sym_aspect_specification, - [47489] = 4, + [47574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2192), 1, aux_sym_with_clause_token2, ACTIONS(3926), 1, aux_sym_package_specification_token2, - STATE(1674), 1, + STATE(1589), 1, sym_aspect_specification, - [47502] = 4, + [47587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, + ACTIONS(3003), 1, + anon_sym_COMMA, ACTIONS(3928), 1, anon_sym_SEMI, - STATE(1562), 1, - sym_aspect_specification, - [47515] = 4, + STATE(1106), 1, + aux_sym__name_list_repeat1, + [47600] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, ACTIONS(3930), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_RPAREN, - STATE(1303), 1, - aux_sym__index_subtype_definition_list_repeat1, - [47528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3935), 1, - anon_sym_SEMI, - STATE(1561), 1, - sym_aspect_specification, - [47541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_RPAREN, - STATE(1303), 1, - aux_sym__index_subtype_definition_list_repeat1, - [47554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3939), 3, - anon_sym_RPAREN, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [47563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_COMMA, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(1188), 1, - aux_sym_record_component_association_list_repeat2, - [47576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3943), 1, - anon_sym_SEMI, - STATE(1864), 1, - sym_aspect_specification, - [47589] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3335), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3511), 1, - aux_sym_allocator_token1, - [47602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3492), 1, - aux_sym_iterator_filter_token1, - STATE(1111), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [47613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, - anon_sym_COMMA, - ACTIONS(3948), 1, - anon_sym_RPAREN, - STATE(1311), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [47626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3880), 1, - anon_sym_SEMI, - ACTIONS(3950), 1, - anon_sym_RPAREN, - STATE(1277), 1, - aux_sym_discriminant_specification_list_repeat1, - [47639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_RPAREN, - STATE(1311), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [47652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_with_clause_token2, - ACTIONS(3954), 1, anon_sym_SEMI, STATE(1593), 1, sym_aspect_specification, - [47665] = 2, + [47613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3958), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 1, - anon_sym_PIPE, - ACTIONS(3960), 1, - anon_sym_EQ_GT, - STATE(1185), 1, - aux_sym_discrete_choice_list_repeat1, - [47696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3774), 2, + ACTIONS(3932), 1, anon_sym_COMMA, + ACTIONS(3935), 1, anon_sym_RPAREN, - [47713] = 2, + STATE(1304), 1, + aux_sym_actual_parameter_part_repeat1, + [47626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 2, + ACTIONS(3937), 1, + aux_sym_expression_token2, + ACTIONS(3939), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [47637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 1, aux_sym_iterator_filter_token1, + STATE(1220), 1, + sym_guard, + STATE(1241), 1, + sym__guard_select, + [47650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 3, aux_sym_package_specification_token3, - [47721] = 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [47659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 2, + ACTIONS(3943), 1, + sym_identifier, + STATE(1460), 1, + sym__named_record_component_association, + STATE(1641), 1, + sym_component_choice_list, + [47672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [47681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3813), 1, anon_sym_COMMA, + ACTIONS(3947), 1, anon_sym_RPAREN, - [47729] = 2, + STATE(1147), 1, + aux_sym_record_component_association_list_repeat2, + [47694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 2, + ACTIONS(3945), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [47703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3949), 1, + anon_sym_SEMI, + STATE(1565), 1, + sym_aspect_specification, + [47716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3951), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - [47737] = 3, + aux_sym_expression_token3, + [47725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 1, - sym_identifier, - ACTIONS(3972), 1, - anon_sym_SEMI, - [47747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3974), 1, - anon_sym_SEMI, - ACTIONS(3976), 1, - aux_sym_accept_statement_token2, - [47757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_SEMI, - ACTIONS(3980), 1, - aux_sym_package_specification_token2, - [47767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3648), 1, - aux_sym_use_clause_token2, - [47777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(225), 1, - aux_sym_package_specification_token3, - ACTIONS(227), 1, - aux_sym_subprogram_body_token1, - [47787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3982), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47795] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2970), 2, - anon_sym_EQ_GT, + ACTIONS(3624), 1, anon_sym_PIPE, - [47803] = 2, + ACTIONS(3953), 1, + anon_sym_EQ_GT, + STATE(1162), 1, + aux_sym_exception_choice_list_repeat1, + [47738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 2, + ACTIONS(2192), 1, + aux_sym_with_clause_token2, + ACTIONS(3955), 1, + anon_sym_SEMI, + STATE(1720), 1, + sym_aspect_specification, + [47751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, anon_sym_COMMA, + ACTIONS(3957), 1, anon_sym_RPAREN, - [47811] = 3, + STATE(1298), 1, + aux_sym__index_subtype_definition_list_repeat1, + [47764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3511), 1, - aux_sym_allocator_token1, - [47821] = 2, + ACTIONS(3959), 3, + anon_sym_RPAREN, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [47773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47829] = 2, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_global_aspect_definition_repeat1, + [47786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3986), 2, - anon_sym_EQ_GT, + ACTIONS(3839), 1, anon_sym_PIPE, - [47837] = 2, + ACTIONS(3963), 1, + anon_sym_EQ_GT, + STATE(1138), 1, + aux_sym_discrete_choice_list_repeat1, + [47799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 2, + ACTIONS(3911), 1, + sym_identifier, + STATE(1866), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [47810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3965), 1, + anon_sym_COMMA, + ACTIONS(3967), 1, + anon_sym_RBRACK, + STATE(1115), 1, + aux_sym_positional_array_aggregate_repeat1, + [47823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 3, anon_sym_SEMI, - aux_sym_accept_statement_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3971), 1, + anon_sym_RPAREN, + STATE(1292), 1, + aux_sym__discrete_subtype_definition_list_repeat1, [47845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 2, + ACTIONS(3973), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - [47853] = 3, + aux_sym_expression_token3, + [47854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 1, - anon_sym_SEMI, - ACTIONS(3994), 1, - aux_sym_package_specification_token2, - [47863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3988), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3996), 1, - sym_identifier, - ACTIONS(3998), 1, - anon_sym_SEMI, - [47881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [47897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_SEMI, - [47907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - sym_identifier, - ACTIONS(4012), 1, - anon_sym_SEMI, - [47933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_with_clause_token2, - STATE(1355), 1, - sym_record_extension_part, - [47943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4016), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 2, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - [47959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4022), 1, - aux_sym_iterator_specification_token1, - [47969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4024), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4026), 1, - sym_identifier, - ACTIONS(4028), 1, - anon_sym_SEMI, - [47987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 1, - aux_sym_result_profile_token1, - STATE(813), 1, - sym_result_profile, - [47997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4032), 1, - aux_sym_access_to_subprogram_definition_token3, - [48007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4034), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [48015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2932), 1, - aux_sym_allocator_token1, - ACTIONS(3062), 1, - aux_sym_interface_type_definition_token2, - [48025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4036), 2, + ACTIONS(3975), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48033] = 3, + [47862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4038), 1, - sym_identifier, - ACTIONS(4040), 1, - anon_sym_SEMI, - [48043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4042), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 1, - aux_sym_package_specification_token3, - ACTIONS(4046), 1, - aux_sym_exception_declaration_token1, - [48061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4050), 1, - aux_sym_with_clause_token1, - [48071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - STATE(1730), 1, - sym_iterated_element_association, - [48081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 2, + ACTIONS(3724), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [48089] = 3, + [47870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4054), 1, - aux_sym_access_to_subprogram_definition_token3, - [48099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3835), 2, + ACTIONS(3977), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48107] = 2, + [47878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4060), 1, + ACTIONS(3979), 2, anon_sym_SEMI, - [48125] = 3, + aux_sym_accept_statement_token2, + [47886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, + ACTIONS(3981), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(3983), 1, anon_sym_SEMI, - [48135] = 2, + [47896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 2, + ACTIONS(3985), 1, + sym_identifier, + ACTIONS(3987), 1, + anon_sym_SEMI, + [47906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 1, + anon_sym_SEMI, + ACTIONS(3292), 1, + aux_sym_package_specification_token2, + [47916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_SEMI, + ACTIONS(3991), 1, + aux_sym_accept_statement_token2, + [47926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_COMMA, + STATE(1115), 1, + aux_sym_positional_array_aggregate_repeat1, + [47952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3935), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48143] = 2, + [47960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 2, + ACTIONS(3997), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3999), 1, + sym_identifier, + ACTIONS(4001), 1, + anon_sym_SEMI, + [47978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + aux_sym_package_specification_token3, + ACTIONS(4005), 1, + aux_sym_exception_declaration_token1, + [47988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4009), 1, + sym_identifier, + ACTIONS(4011), 1, + anon_sym_SEMI, + [48006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4013), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [48014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4015), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [48022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4013), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [48030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4017), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4019), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48151] = 3, + [48062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2254), 1, - aux_sym_access_to_subprogram_definition_token3, - [48161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4068), 2, - anon_sym_RPAREN, + ACTIONS(4023), 1, anon_sym_SEMI, - [48169] = 2, + ACTIONS(4025), 1, + aux_sym_accept_statement_token2, + [48072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 2, + ACTIONS(4027), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [48177] = 2, + ACTIONS(4029), 1, + aux_sym_package_specification_token2, + [48082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 2, + ACTIONS(3904), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48185] = 3, + [48090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4031), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + sym_identifier, + ACTIONS(4037), 1, + anon_sym_SEMI, + [48116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + sym_identifier, + ACTIONS(4043), 1, + anon_sym_SEMI, + [48134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 1, + aux_sym_with_clause_token2, + STATE(1464), 1, + sym_record_extension_part, + [48144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4049), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2953), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [48184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + aux_sym_with_clause_token2, + STATE(1365), 1, + sym_record_extension_part, + [48194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(4063), 1, + anon_sym_RBRACK, + [48228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4066), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4068), 1, + aux_sym_with_clause_token1, + [48238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4070), 1, + sym_identifier, + ACTIONS(4072), 1, + anon_sym_SEMI, + [48248] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4074), 1, - sym_identifier, + aux_sym_with_clause_token2, ACTIONS(4076), 1, - anon_sym_SEMI, - [48195] = 3, + aux_sym_expression_token1, + [48258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(4055), 1, aux_sym_with_clause_token2, - STATE(1420), 1, + STATE(1358), 1, sym_record_extension_part, - [48205] = 3, + [48268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4080), 1, - anon_sym_SEMI, - ACTIONS(4082), 1, - aux_sym_package_specification_token2, - [48215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, - anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_RBRACK, - [48233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - aux_sym_iterator_filter_token1, - STATE(1200), 1, - sym_case_expression_alternative, - [48243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 1, sym_identifier, - ACTIONS(4094), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - [48253] = 3, + [48286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4084), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 1, + sym_identifier, + ACTIONS(4090), 1, + anon_sym_SEMI, + [48320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4092), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4096), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(4098), 1, anon_sym_SEMI, - [48263] = 3, + [48346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4100), 1, sym_identifier, ACTIONS(4102), 1, anon_sym_SEMI, - [48273] = 3, + [48356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3787), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3302), 1, + aux_sym_allocator_token1, + [48374] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4104), 1, sym_identifier, ACTIONS(4106), 1, anon_sym_SEMI, - [48283] = 3, + [48384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_SEMI, ACTIONS(4110), 1, - aux_sym_package_specification_token2, - [48293] = 2, + anon_sym_SEMI, + ACTIONS(4112), 1, + aux_sym_accept_statement_token2, + [48402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4112), 2, - anon_sym_COMMA, + ACTIONS(3542), 2, anon_sym_RPAREN, - [48309] = 2, + anon_sym_SEMI, + [48410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4114), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48317] = 3, + [48418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4116), 2, + anon_sym_RPAREN, anon_sym_SEMI, + [48426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3407), 1, + aux_sym_allocator_token1, + [48436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3778), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 1, + aux_sym_result_profile_token1, + STATE(816), 1, + sym_result_profile, + [48454] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4118), 1, - aux_sym_package_specification_token2, - [48327] = 2, + aux_sym_expression_token3, + ACTIONS(4120), 1, + aux_sym_expression_token4, + [48464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3642), 1, - aux_sym_use_clause_token2, - [48345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_LPAREN, - STATE(1340), 1, - sym_formal_part, - [48371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4126), 2, + ACTIONS(4124), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [48379] = 3, + [48474] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4126), 1, + sym_identifier, ACTIONS(4128), 1, - anon_sym_LPAREN, + anon_sym_SEMI, + [48484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3072), 1, + aux_sym_allocator_token1, + [48494] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4130), 1, + sym_identifier, + ACTIONS(4132), 1, anon_sym_SEMI, - [48389] = 2, + [48504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 2, + ACTIONS(2345), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48397] = 3, + [48520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4134), 1, - sym_identifier, ACTIONS(4136), 1, - anon_sym_SEMI, - [48407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4138), 1, - aux_sym_with_clause_token2, - ACTIONS(4140), 1, - aux_sym_expression_token1, - [48417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, sym_identifier, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_SEMI, - [48427] = 2, + [48530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48435] = 3, + ACTIONS(2874), 1, + aux_sym_iterator_filter_token1, + STATE(1772), 1, + sym_entry_barrier, + [48540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(4140), 1, + sym_identifier, + ACTIONS(4142), 1, + anon_sym_SEMI, + [48550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - STATE(1376), 1, + [48558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4146), 1, + aux_sym_with_clause_token2, + STATE(1358), 1, sym_record_extension_part, - [48445] = 2, + [48568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4148), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4150), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [48453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_with_clause_token2, - STATE(1420), 1, - sym_record_extension_part, - [48463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4150), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48471] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4152), 1, - aux_sym_with_clause_token2, - STATE(1376), 1, - sym_record_extension_part, - [48481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4154), 1, - anon_sym_SEMI, - ACTIONS(4156), 1, - aux_sym_accept_statement_token2, - [48491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2863), 1, - aux_sym_iterator_filter_token1, - STATE(1766), 1, - sym_entry_barrier, - [48501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - sym_identifier, - ACTIONS(4160), 1, - anon_sym_SEMI, - [48511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4162), 1, - sym_identifier, - ACTIONS(4164), 1, - anon_sym_SEMI, - [48521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(4168), 1, - anon_sym_EQ_GT, - [48531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3706), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4172), 1, - anon_sym_COMMA, - STATE(1014), 1, - aux_sym_positional_array_aggregate_repeat1, - [48557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4176), 1, - aux_sym_with_clause_token2, - ACTIONS(4178), 1, - aux_sym_expression_token1, - [48575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4180), 1, - aux_sym_expression_token3, - ACTIONS(4182), 1, - aux_sym_expression_token4, - [48585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4184), 1, - sym_identifier, - ACTIONS(4186), 1, - anon_sym_SEMI, - [48595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4188), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4190), 1, - aux_sym_with_clause_token2, - STATE(1355), 1, - sym_record_extension_part, - [48613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 1, - anon_sym_SEMI, - ACTIONS(3380), 1, aux_sym_package_specification_token2, - [48647] = 2, + [48586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4196), 1, - sym_identifier, - ACTIONS(4198), 1, + ACTIONS(4155), 2, anon_sym_SEMI, - [48665] = 3, + aux_sym_with_clause_token2, + [48594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(4157), 1, anon_sym_SEMI, - ACTIONS(3620), 1, + ACTIONS(4159), 1, aux_sym_package_specification_token2, - [48675] = 3, + [48604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4202), 1, + ACTIONS(4163), 1, anon_sym_SEMI, - [48685] = 3, + [48614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 1, - sym_identifier, - ACTIONS(4206), 1, - anon_sym_SEMI, - [48695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4208), 1, - sym_identifier, - STATE(196), 1, - sym_reduction_attribute_designator, - [48705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4210), 2, + ACTIONS(4165), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48713] = 3, + [48622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON_EQ, - STATE(1740), 1, - sym__assign_value, - [48723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4212), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3455), 1, - aux_sym_allocator_token1, - [48741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - sym_identifier, - ACTIONS(4216), 1, - anon_sym_SEMI, - [48751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4218), 1, - sym_identifier, - ACTIONS(4220), 1, - anon_sym_SEMI, - [48761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2863), 1, + ACTIONS(4167), 1, aux_sym_iterator_filter_token1, - STATE(1644), 1, - sym_entry_barrier, - [48771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4222), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [48779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4224), 1, - sym_identifier, - ACTIONS(4226), 1, - anon_sym_SEMI, - [48789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4228), 1, - sym_identifier, - ACTIONS(4230), 1, - anon_sym_SEMI, - [48799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4232), 1, - sym_identifier, - ACTIONS(4234), 1, - anon_sym_SEMI, - [48809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2319), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - aux_sym_iterator_filter_token1, - STATE(1419), 1, + STATE(1200), 1, sym_case_expression_alternative, - [48835] = 3, + [48632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4238), 1, - aux_sym_with_clause_token1, - [48845] = 2, + ACTIONS(4169), 1, + anon_sym_SEMI, + ACTIONS(4171), 1, + aux_sym_package_specification_token2, + [48642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4240), 2, + ACTIONS(3411), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4173), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48853] = 2, + [48658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 1, + ACTIONS(4175), 1, aux_sym_with_clause_token2, - ACTIONS(4246), 1, + ACTIONS(4177), 1, aux_sym_expression_token1, - [48871] = 2, + [48668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4250), 2, + ACTIONS(4179), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48887] = 2, + [48676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 2, + ACTIONS(3693), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48895] = 2, + [48684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 1, + sym_identifier, + ACTIONS(4185), 1, + anon_sym_SEMI, + [48702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + sym_identifier, + ACTIONS(4189), 1, + anon_sym_SEMI, + [48712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4195), 1, + aux_sym_access_to_subprogram_definition_token3, + [48730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(1343), 1, + sym_formal_part, + [48740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4197), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(4199), 1, + anon_sym_EQ_GT, + [48750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 1, + sym_identifier, + STATE(206), 1, + sym_reduction_attribute_designator, + [48760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 1, + aux_sym_package_specification_token3, + ACTIONS(4205), 1, + aux_sym_subprogram_body_token1, + [48770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3655), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4209), 1, + aux_sym_access_to_subprogram_definition_token3, + [48788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3629), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + sym_identifier, + ACTIONS(4213), 1, + anon_sym_SEMI, + [48806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4215), 1, + anon_sym_SEMI, + ACTIONS(4217), 1, + aux_sym_package_specification_token2, + [48816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + aux_sym_with_clause_token2, + STATE(1464), 1, + sym_record_extension_part, + [48826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4219), 1, + aux_sym_with_clause_token2, + STATE(1365), 1, + sym_record_extension_part, + [48836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + sym_identifier, + ACTIONS(4223), 1, + anon_sym_SEMI, + [48846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + aux_sym_use_clause_token2, + [48856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2874), 1, + aux_sym_iterator_filter_token1, + STATE(1647), 1, + sym_entry_barrier, + [48866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [48874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + sym_identifier, + ACTIONS(4229), 1, + anon_sym_SEMI, + [48884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, + sym_identifier, + ACTIONS(3612), 1, + aux_sym_use_clause_token2, + [48894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + sym_identifier, + ACTIONS(4233), 1, + anon_sym_SEMI, + [48904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + STATE(1781), 1, + sym_iterated_element_association, + [48914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + sym_identifier, + ACTIONS(4237), 1, + anon_sym_SEMI, + [48932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3495), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 1, + sym_identifier, + ACTIONS(4241), 1, + anon_sym_SEMI, + [48950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 2, + anon_sym_COMMA, + anon_sym_COLON, + [48958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 1, + aux_sym_iterator_filter_token1, + STATE(1382), 1, + sym_case_expression_alternative, + [48968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3187), 1, + anon_sym_SEMI, + ACTIONS(3602), 1, + aux_sym_package_specification_token2, + [49002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4249), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3593), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4252), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3570), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, anon_sym_SEMI, - ACTIONS(4259), 1, - aux_sym_accept_statement_token2, - [48929] = 2, + aux_sym_with_clause_token2, + [49026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 2, + ACTIONS(3504), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4254), 1, + aux_sym_with_clause_token1, + [49036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4256), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [49044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 1, + aux_sym_chunk_specification_token1, + ACTIONS(4260), 1, + aux_sym_iterator_specification_token1, + [49054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 1, + aux_sym_with_clause_token2, + ACTIONS(4264), 1, + aux_sym_expression_token1, + [49064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - [48937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 1, - aux_sym_package_specification_token3, - ACTIONS(4265), 1, - aux_sym_subprogram_body_token1, - [48947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4267), 1, - sym_identifier, - ACTIONS(4269), 1, - anon_sym_SEMI, - [48957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4271), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4273), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4275), 1, - sym_identifier, - ACTIONS(4277), 1, - anon_sym_SEMI, - [48991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4279), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4281), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4283), 1, - aux_sym_with_clause_token2, - [49009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 1, - aux_sym_package_specification_token3, - [49016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_package_specification_token3, - [49023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4287), 1, - aux_sym_subprogram_body_token1, - [49030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - anon_sym_SEMI, - [49037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4289), 1, - anon_sym_RPAREN, - [49044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 1, - aux_sym_compilation_unit_token1, - [49051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3698), 1, - anon_sym_SEMI, - [49058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4293), 1, - aux_sym_package_specification_token2, - [49065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_RPAREN, [49072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(3581), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4268), 1, + sym_identifier, + ACTIONS(4270), 1, anon_sym_SEMI, - [49079] = 2, + [49090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - aux_sym_compilation_unit_token1, - [49086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - [49093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4303), 1, - aux_sym_loop_statement_token1, - [49100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4305), 1, + ACTIONS(4272), 2, anon_sym_SEMI, - [49107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4307), 1, - anon_sym_SEMI, - [49114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4230), 1, - anon_sym_SEMI, - [49121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_RBRACK, - [49128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4309), 1, - aux_sym_asynchronous_select_token2, - [49135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - aux_sym_package_specification_token2, - [49142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4311), 1, - anon_sym_EQ_GT, - [49149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 1, - anon_sym_SEMI, - [49156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4315), 1, aux_sym_with_clause_token2, - [49163] = 2, + [49098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(4274), 1, + sym_identifier, + ACTIONS(4276), 1, + anon_sym_SEMI, + [49108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [49116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4280), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [49124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2250), 1, + aux_sym_access_to_subprogram_definition_token3, + [49134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4284), 1, + aux_sym_with_clause_token2, + [49144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [49152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + aux_sym_package_specification_token3, + ACTIONS(219), 1, + aux_sym_subprogram_body_token1, + [49162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 2, anon_sym_EQ_GT, + anon_sym_PIPE, [49170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, - aux_sym_expression_token2, - [49177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4319), 1, + ACTIONS(4288), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - [49184] = 2, + [49178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_LPAREN, - [49191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3586), 1, - anon_sym_RPAREN, - [49198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 1, + ACTIONS(4290), 2, anon_sym_SEMI, - [49205] = 2, + aux_sym_with_clause_token2, + [49186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - aux_sym_asynchronous_select_token1, - [49212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_RPAREN, - [49219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4329), 1, - aux_sym_package_specification_token3, - [49226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4331), 1, - anon_sym_EQ_GT, - [49233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4333), 1, - aux_sym_asynchronous_select_token2, - [49240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4335), 1, + ACTIONS(4292), 2, anon_sym_SEMI, - [49247] = 2, + aux_sym_with_clause_token2, + [49194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4337), 1, - anon_sym_SEMI, - [49254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4339), 1, - anon_sym_EQ_GT, - [49261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4341), 1, - anon_sym_SEMI, - [49268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4343), 1, - anon_sym_SEMI, - [49275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4345), 1, - anon_sym_SEMI, - [49282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4347), 1, - aux_sym_primary_null_token1, - [49289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4349), 1, - anon_sym_DOT_DOT, - [49296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4351), 1, - anon_sym_LT_GT, - [49303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4353), 1, - aux_sym_package_specification_token3, - [49310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4355), 1, - aux_sym_compilation_unit_token1, - [49317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - aux_sym_subprogram_body_token1, - [49324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4357), 1, - aux_sym_record_component_association_list_token1, - [49331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4359), 1, - aux_sym_range_attribute_designator_token1, - [49338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4361), 1, - aux_sym_compilation_unit_token1, - [49345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_SEMI, - [49352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4365), 1, - sym_tick, - [49359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 1, - anon_sym_SEMI, - [49366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4369), 1, - anon_sym_SEMI, - [49373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4371), 1, - anon_sym_RPAREN, - [49380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4373), 1, - aux_sym_iterated_element_association_token2, - [49387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4375), 1, - aux_sym_iterated_element_association_token2, - [49394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4377), 1, - anon_sym_SEMI, - [49401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_RPAREN, - [49408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 1, + ACTIONS(4294), 1, sym_identifier, - [49415] = 2, + [49201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 1, - sym_tick, - [49422] = 2, + ACTIONS(4296), 1, + anon_sym_RPAREN, + [49208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - aux_sym_package_specification_token3, - [49429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_DOT_DOT, - [49436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, + ACTIONS(4233), 1, anon_sym_SEMI, - [49443] = 2, + [49215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - anon_sym_SEMI, - [49450] = 2, + ACTIONS(4298), 1, + aux_sym_with_clause_token2, + [49222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_SEMI, - [49457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 1, - anon_sym_SEMI, - [49464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3920), 1, - anon_sym_SEMI, - [49471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 1, - aux_sym_subunit_token1, - [49478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4397), 1, - anon_sym_SEMI, - [49485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 1, - anon_sym_SEMI, - [49492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4399), 1, - aux_sym_if_expression_token1, - [49499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 1, - anon_sym_SEMI, - [49506] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 1, - anon_sym_SEMI, - [49513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 1, - aux_sym_package_specification_token3, - [49520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - aux_sym_package_specification_token3, - [49527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 1, + ACTIONS(4300), 1, aux_sym_package_specification_token2, - [49534] = 2, + [49229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, + ACTIONS(4302), 1, + aux_sym_subunit_token1, + [49236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4304), 1, anon_sym_SEMI, - [49541] = 2, + [49243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, - aux_sym_chunk_specification_token1, - [49548] = 2, + ACTIONS(2104), 1, + anon_sym_DOT_DOT, + [49250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 1, - anon_sym_SEMI, - [49555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 1, - aux_sym_iterator_specification_token1, - [49562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4419), 1, - aux_sym_component_list_token1, - [49569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 1, - aux_sym_package_specification_token3, - [49576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, + ACTIONS(4306), 1, anon_sym_RBRACK, - [49583] = 2, + [49257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, - aux_sym_iterator_specification_token1, - [49590] = 2, + ACTIONS(4308), 1, + aux_sym_compilation_unit_token1, + [49264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(4310), 1, anon_sym_SEMI, - [49597] = 2, + [49271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(4171), 1, + aux_sym_package_specification_token2, + [49278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 1, anon_sym_SEMI, - [49604] = 2, + [49285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - [49611] = 2, + [49292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, + ACTIONS(4314), 1, + sym_tick, + [49299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 1, + anon_sym_RPAREN, + [49306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 1, + aux_sym_with_clause_token2, + [49313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 1, + anon_sym_RPAREN, + [49320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 1, + anon_sym_SEMI, + [49327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 1, + anon_sym_SEMI, + [49334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 1, + anon_sym_RPAREN, + [49341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 1, + anon_sym_RPAREN, + [49348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 1, + aux_sym_package_specification_token3, + [49355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 1, anon_sym_EQ_GT, - [49618] = 2, + [49362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 1, - anon_sym_SEMI, - [49625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 1, - anon_sym_RPAREN, - [49632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 1, - anon_sym_COLON, - [49639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 1, - anon_sym_RPAREN, - [49646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - anon_sym_RPAREN, - [49653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4441), 1, - anon_sym_SEMI, - [49660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4443), 1, - aux_sym_asynchronous_select_token1, - [49667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 1, - aux_sym_component_list_token1, - [49674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 1, - aux_sym_asynchronous_select_token1, - [49681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, - anon_sym_RPAREN, - [49688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, + ACTIONS(4334), 1, anon_sym_EQ_GT, - [49695] = 2, + [49369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4336), 1, anon_sym_SEMI, - [49702] = 2, + [49376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(4338), 1, anon_sym_SEMI, - [49709] = 2, + [49383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(4340), 1, + anon_sym_SEMI, + [49390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, + anon_sym_SEMI, + [49397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4344), 1, + aux_sym_package_specification_token2, + [49404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 1, + anon_sym_SEMI, + [49411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4348), 1, anon_sym_RPAREN, - [49716] = 2, + [49418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4457), 1, - anon_sym_RPAREN, - [49723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 1, - anon_sym_SEMI, - [49730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4461), 1, - anon_sym_SEMI, - [49737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4463), 1, - anon_sym_SEMI, - [49744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4465), 1, - anon_sym_SEMI, - [49751] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4467), 1, - anon_sym_SEMI, - [49758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4469), 1, - anon_sym_SEMI, - [49765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4471), 1, + ACTIONS(4350), 1, aux_sym_record_component_association_list_token1, - [49772] = 2, + [49425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 1, + ACTIONS(4352), 1, + anon_sym_LT_GT, + [49432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 1, anon_sym_SEMI, - [49779] = 2, + [49439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4356), 1, + aux_sym_compilation_unit_token1, + [49446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + aux_sym_subprogram_body_token1, + [49453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_COLON, + [49460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 1, + anon_sym_RPAREN, + [49467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 1, + aux_sym_compilation_unit_token1, + [49474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3851), 1, + aux_sym_package_specification_token2, + [49481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_SEMI, + [49488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4364), 1, + aux_sym_compilation_unit_token1, + [49495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + aux_sym_primary_null_token1, + [49502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3708), 1, + anon_sym_SEMI, + [49509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + aux_sym_iterated_element_association_token2, + [49516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 1, + aux_sym_iterated_element_association_token2, + [49523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + anon_sym_SEMI, + [49530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 1, + anon_sym_DOT_DOT, + [49537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + aux_sym_package_specification_token3, + [49544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + aux_sym_subprogram_body_token1, + [49551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4380), 1, + aux_sym_package_specification_token3, + [49558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 1, + anon_sym_SEMI, + [49565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 1, + anon_sym_SEMI, + [49572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_SEMI, + [49579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4386), 1, + anon_sym_SEMI, + [49586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4388), 1, + anon_sym_LPAREN, + [49593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3803), 1, + anon_sym_SEMI, + [49600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4390), 1, + aux_sym_record_component_association_list_token1, + [49607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_SEMI, + [49614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4394), 1, + aux_sym_range_attribute_designator_token1, + [49621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 1, aux_sym_if_expression_token1, - [49786] = 2, + [49628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4477), 1, + ACTIONS(4398), 1, + anon_sym_SEMI, + [49635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 1, + anon_sym_SEMI, + [49642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4402), 1, + aux_sym_package_specification_token3, + [49649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + sym_tick, + [49656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym_LPAREN, + [49663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4408), 1, + anon_sym_SEMI, + [49670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4410), 1, + anon_sym_EQ_GT, + [49677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 1, + anon_sym_SEMI, + [49684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + anon_sym_RPAREN, + [49691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4414), 1, + aux_sym_component_list_token1, + [49698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 1, + aux_sym_package_specification_token3, + [49705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4418), 1, + anon_sym_SEMI, + [49712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + aux_sym_interface_type_definition_token2, + [49719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_COLON, + [49726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4422), 1, + anon_sym_SEMI, + [49733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 1, + aux_sym_loop_statement_token1, + [49740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + anon_sym_SEMI, + [49747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4428), 1, + anon_sym_SEMI, + [49754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4430), 1, + anon_sym_RPAREN, + [49761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4432), 1, + aux_sym_package_specification_token3, + [49768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4434), 1, + sym_identifier, + [49775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 1, + aux_sym_package_specification_token3, + [49782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 1, + aux_sym_asynchronous_select_token2, + [49789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4440), 1, + sym_identifier, + [49796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 1, + anon_sym_RPAREN, + [49803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 1, + sym_identifier, + [49810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + sym_identifier, + [49817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 1, + anon_sym_COLON, + [49824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_SEMI, + [49831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4450), 1, + anon_sym_SEMI, + [49838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 1, aux_sym_expression_token2, - [49793] = 2, + [49845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, + ACTIONS(4452), 1, + anon_sym_RPAREN, + [49852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4454), 1, + anon_sym_SEMI, + [49859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_SEMI, + [49866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4458), 1, + anon_sym_SEMI, + [49873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4460), 1, + aux_sym_package_specification_token2, + [49880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, + aux_sym_asynchronous_select_token1, + [49887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 1, + anon_sym_SEMI, + [49894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + aux_sym_expression_token2, + [49901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 1, + anon_sym_SEMI, + [49908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_SEMI, + [49915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 1, + aux_sym_asynchronous_select_token2, + [49922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + anon_sym_SEMI, + [49929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + aux_sym_iterator_specification_token1, + [49936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 1, aux_sym_package_specification_token3, - [49800] = 2, + [49943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4481), 1, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + [49950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 1, + aux_sym_iterator_specification_token1, + [49957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 1, + aux_sym_attribute_designator_token2, + [49964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 1, + anon_sym_SEMI, + [49971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_SEMI, + [49978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_SEMI, + [49985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + aux_sym_entry_declaration_token1, + [49992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_SEMI, + [49999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4492), 1, + aux_sym_package_specification_token2, + [50006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_RPAREN, + [50013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + aux_sym_asynchronous_select_token1, + [50020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 1, + sym_identifier, + [50027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 1, + anon_sym_SEMI, + [50034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + aux_sym_component_list_token1, + [50041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 1, + aux_sym_asynchronous_select_token1, + [50048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 1, + anon_sym_SEMI, + [50055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 1, + anon_sym_SEMI, + [50062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 1, + anon_sym_SEMI, + [50069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 1, aux_sym_package_specification_token3, - [49807] = 2, + [50076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 1, + ACTIONS(4512), 1, + anon_sym_SEMI, + [50083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + aux_sym_package_specification_token2, + [50090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 1, + aux_sym_if_expression_token1, + [50097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + aux_sym_expression_token2, + [50104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 1, aux_sym_package_specification_token3, - [49814] = 2, + [50111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, + ACTIONS(4522), 1, anon_sym_SEMI, - [49821] = 2, + [50118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4487), 1, + ACTIONS(4524), 1, anon_sym_SEMI, - [49828] = 2, + [50125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(4526), 1, + aux_sym_chunk_specification_token1, + [50132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 1, anon_sym_SEMI, - [49835] = 2, + [50139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 1, + ACTIONS(4530), 1, anon_sym_SEMI, - [49842] = 2, + [50146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4489), 1, - anon_sym_SEMI, - [49849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4491), 1, - anon_sym_SEMI, - [49856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4493), 1, - anon_sym_SEMI, - [49863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 1, - anon_sym_SEMI, - [49870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, + ACTIONS(4532), 1, aux_sym_iterated_element_association_token2, - [49877] = 2, + [50153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4497), 1, + ACTIONS(3889), 1, + anon_sym_SEMI, + [50160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 1, + aux_sym_package_specification_token3, + [50167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 1, + anon_sym_SEMI, + [50174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_SEMI, + [50181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 1, + anon_sym_SEMI, + [50188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 1, + anon_sym_RBRACK, + [50195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 1, + anon_sym_SEMI, + [50202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3861), 1, + anon_sym_RPAREN, + [50209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 1, + anon_sym_SEMI, + [50216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, + anon_sym_EQ_GT, + [50223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3229), 1, + anon_sym_SEMI, + [50230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 1, aux_sym_iterated_element_association_token2, - [49884] = 2, + [50237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 1, + aux_sym_iterated_element_association_token2, + [50244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3819), 1, + anon_sym_SEMI, + [50251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 1, + aux_sym_compilation_unit_token1, + [50258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4066), 1, + aux_sym_compilation_unit_token1, + [50265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + aux_sym_allocator_token1, + [50272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + aux_sym_with_clause_token2, + [50279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 1, + aux_sym_package_specification_token3, + [50286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 1, + anon_sym_RPAREN, + [50293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + anon_sym_EQ_GT, + [50300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 1, + anon_sym_SEMI, + [50307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4564), 1, + aux_sym_accept_statement_token1, + [50314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_SEMI, + [50321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 1, + anon_sym_RPAREN, + [50328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 1, + aux_sym_package_specification_token3, + [50335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 1, + anon_sym_RPAREN, + [50342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 1, + anon_sym_SEMI, + [50349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_SEMI, + [50356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4574), 1, + anon_sym_SEMI, + [50363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 1, + anon_sym_EQ_GT, + [50370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 1, + aux_sym_with_clause_token2, + [50377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2973), 1, + anon_sym_RPAREN, + [50384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 1, + sym_identifier, + [50391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 1, + anon_sym_RPAREN, + [50398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 1, + aux_sym_package_specification_token2, + [50405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 1, + aux_sym_package_specification_token2, + [50412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 1, + aux_sym_package_specification_token3, + [50419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 1, + anon_sym_SEMI, + [50426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, + aux_sym_package_specification_token2, + [50433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_SEMI, + [50440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 1, + anon_sym_SEMI, + [50447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 1, + aux_sym_component_list_token1, + [50454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 1, + aux_sym_subprogram_body_token1, + [50461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(421), 1, aux_sym_allocator_token1, - [49891] = 2, + [50468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, - aux_sym_compilation_unit_token1, - [49898] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4499), 1, - aux_sym_allocator_token1, - [49905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4501), 1, - anon_sym_RPAREN, - [49912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4503), 1, - aux_sym_package_specification_token2, - [49919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4505), 1, - anon_sym_SEMI, - [49926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 1, - anon_sym_SEMI, - [49933] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4507), 1, - anon_sym_SEMI, - [49940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4509), 1, + ACTIONS(4602), 1, aux_sym_package_specification_token3, - [49947] = 2, + [50475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 1, + ACTIONS(4604), 1, anon_sym_SEMI, - [49954] = 2, + [50482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 1, - aux_sym_subprogram_body_token1, - [49961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, + ACTIONS(4606), 1, aux_sym_package_specification_token3, - [49968] = 2, + [50489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, + ACTIONS(4608), 1, + aux_sym_asynchronous_select_token1, + [50496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 1, anon_sym_SEMI, - [49975] = 2, + [50503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_SEMI, - [49982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4519), 1, - anon_sym_SEMI, - [49989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_SEMI, - [49996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 1, - aux_sym_with_clause_token2, - [50003] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_SEMI, - [50010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4527), 1, - anon_sym_SEMI, - [50017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - aux_sym_with_clause_token2, - [50024] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 1, - anon_sym_SEMI, - [50031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - aux_sym_package_specification_token3, - [50038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - aux_sym_interface_type_definition_token2, - [50045] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - anon_sym_SEMI, - [50052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3612), 1, - aux_sym_package_specification_token2, - [50059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4537), 1, - anon_sym_EQ_GT, - [50066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 1, - anon_sym_SEMI, - [50073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4539), 1, - anon_sym_RBRACK, - [50080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, - aux_sym_package_specification_token2, - [50087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4543), 1, - anon_sym_COLON, - [50094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_SEMI, - [50101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4547), 1, - anon_sym_EQ_GT, - [50108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4549), 1, - aux_sym_package_specification_token2, - [50115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_SEMI, - [50122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4551), 1, - aux_sym_compilation_unit_token1, - [50129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4553), 1, + ACTIONS(4612), 1, anon_sym_RPAREN, - [50136] = 2, + [50510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 1, - anon_sym_RPAREN, - [50143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4555), 1, - aux_sym_with_clause_token2, - [50150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4557), 1, - anon_sym_RPAREN, - [50157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2944), 1, - aux_sym_entry_declaration_token1, - [50164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4559), 1, - sym_identifier, - [50171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4561), 1, - sym_identifier, - [50178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3692), 1, - anon_sym_RPAREN, - [50185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4563), 1, - anon_sym_SEMI, - [50192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4565), 1, - sym_identifier, - [50199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4567), 1, - sym_identifier, - [50206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4569), 1, - anon_sym_SEMI, - [50213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, - anon_sym_SEMI, - [50220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4573), 1, - anon_sym_SEMI, - [50227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4575), 1, - anon_sym_SEMI, - [50234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4577), 1, - anon_sym_RPAREN, - [50241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4579), 1, - aux_sym_with_clause_token2, - [50248] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 1, - aux_sym_at_clause_token1, - [50255] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4583), 1, - sym_identifier, - [50262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4585), 1, - anon_sym_RPAREN, - [50269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 1, - aux_sym_package_specification_token2, - [50276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4589), 1, - aux_sym_package_specification_token2, - [50283] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4591), 1, - sym_tick, - [50290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4593), 1, - anon_sym_COLON, - [50297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3998), 1, - anon_sym_SEMI, - [50304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4595), 1, - anon_sym_SEMI, - [50311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4597), 1, - aux_sym_package_specification_token2, - [50318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4599), 1, + ACTIONS(4614), 1, aux_sym_expression_token2, - [50325] = 2, + [50517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4601), 1, - anon_sym_SEMI, - [50332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_RBRACK, - [50339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4605), 1, - aux_sym_attribute_designator_token2, - [50346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4186), 1, - anon_sym_SEMI, - [50353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 1, - anon_sym_RPAREN, - [50360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4609), 1, - aux_sym_expression_token2, - [50367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4611), 1, - anon_sym_SEMI, - [50374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_SEMI, - [50381] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4615), 1, - aux_sym_with_clause_token2, - [50388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4617), 1, - aux_sym_object_renaming_declaration_token1, - [50395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 1, - anon_sym_RPAREN, - [50402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 1, - anon_sym_RBRACK, - [50409] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_GT_GT, - [50416] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4623), 1, - anon_sym_SEMI, - [50423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_SEMI, - [50430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4627), 1, - anon_sym_SEMI, - [50437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, - aux_sym_object_renaming_declaration_token1, - [50444] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 1, - aux_sym_with_clause_token2, - [50451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4633), 1, - aux_sym_primary_null_token1, - [50458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4198), 1, - anon_sym_SEMI, - [50465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - anon_sym_SEMI, - [50472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4637), 1, - aux_sym_with_clause_token2, - [50479] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4639), 1, + ACTIONS(4616), 1, aux_sym_package_specification_token3, - [50486] = 2, + [50524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 1, - aux_sym_package_specification_token2, - [50493] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4643), 1, - anon_sym_RPAREN, - [50500] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4645), 1, + ACTIONS(4618), 1, anon_sym_SEMI, - [50507] = 2, + [50531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 1, - anon_sym_SEMI, - [50514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4647), 1, - anon_sym_SEMI, - [50521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4649), 1, - aux_sym_compilation_unit_token1, - [50528] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4651), 1, - aux_sym_package_specification_token2, - [50535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 1, - aux_sym_package_specification_token2, - [50542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4653), 1, + ACTIONS(4620), 1, aux_sym_with_clause_token2, - [50549] = 2, + [50538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 1, - anon_sym_SEMI, - [50556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4657), 1, - sym_identifier, - [50563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4659), 1, - sym_identifier, - [50570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 1, - anon_sym_SEMI, - [50577] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 1, - aux_sym_primary_null_token1, - [50584] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4665), 1, - aux_sym_allocator_token1, - [50591] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4667), 1, - aux_sym_iterated_element_association_token2, - [50598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, - aux_sym_compilation_unit_token1, - [50605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4669), 1, - aux_sym_allocator_token1, - [50612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, + ACTIONS(4622), 1, anon_sym_RPAREN, - [50619] = 2, + [50545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 1, - aux_sym_record_component_association_list_token1, - [50626] = 2, + ACTIONS(4624), 1, + anon_sym_RPAREN, + [50552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4673), 1, + ACTIONS(4624), 1, + anon_sym_RBRACK, + [50559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4626), 1, + aux_sym_with_clause_token2, + [50566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 1, anon_sym_SEMI, - [50633] = 2, + [50573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(4630), 1, anon_sym_SEMI, - [50640] = 2, + [50580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4632), 1, + anon_sym_SEMI, + [50587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4634), 1, + anon_sym_SEMI, + [50594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 1, + aux_sym_with_clause_token2, + [50601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 1, + anon_sym_SEMI, + [50608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4132), 1, + anon_sym_SEMI, + [50615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4638), 1, + aux_sym_package_specification_token3, + [50622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 1, + anon_sym_SEMI, + [50629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4642), 1, + aux_sym_package_specification_token3, + [50636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 1, + aux_sym_package_specification_token2, + [50643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4646), 1, + anon_sym_SEMI, + [50650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, + anon_sym_SEMI, + [50657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4650), 1, anon_sym_EQ_GT, - [50647] = 2, + [50664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - aux_sym_package_specification_token2, - [50654] = 2, + ACTIONS(4652), 1, + anon_sym_RBRACK, + [50671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 1, - aux_sym_if_expression_token1, - [50661] = 2, + ACTIONS(4654), 1, + aux_sym_compilation_unit_token1, + [50678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, + ACTIONS(4656), 1, + anon_sym_EQ_GT, + [50685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4658), 1, anon_sym_SEMI, - [50668] = 2, + [50692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 1, - sym_identifier, - [50675] = 2, + ACTIONS(4660), 1, + aux_sym_with_clause_token2, + [50699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, - aux_sym_package_specification_token3, - [50682] = 2, + ACTIONS(4652), 1, + anon_sym_RPAREN, + [50706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 1, - aux_sym_package_specification_token3, - [50689] = 2, + ACTIONS(4662), 1, + anon_sym_RPAREN, + [50713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 1, + ACTIONS(4664), 1, + anon_sym_SEMI, + [50720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4666), 1, + anon_sym_SEMI, + [50727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_SEMI, + [50734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_SEMI, + [50741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 1, aux_sym_loop_statement_token1, - [50696] = 2, + [50748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - aux_sym_accept_statement_token1, - [50703] = 2, + ACTIONS(4670), 1, + anon_sym_SEMI, + [50755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4693), 1, + ACTIONS(4672), 1, + aux_sym_package_specification_token2, + [50762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, aux_sym_package_specification_token3, - [50710] = 2, + [50769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(4676), 1, + aux_sym_allocator_token1, + [50776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_SEMI, + [50783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4680), 1, + anon_sym_SEMI, + [50790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_RPAREN, + [50797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4684), 1, + anon_sym_SEMI, + [50804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + aux_sym_if_expression_token1, + [50811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 1, + anon_sym_SEMI, + [50818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 1, + anon_sym_SEMI, + [50825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + aux_sym_subprogram_body_token1, + [50832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 1, + aux_sym_package_specification_token3, + [50839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 1, + anon_sym_SEMI, + [50846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3689), 1, + anon_sym_SEMI, + [50853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3687), 1, + anon_sym_SEMI, + [50860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1147), 1, anon_sym_LT_GT, - [50717] = 2, + [50867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 1, - aux_sym_component_list_token1, - [50724] = 2, + ACTIONS(4694), 1, + aux_sym_at_clause_token1, + [50874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, + ACTIONS(4696), 1, + sym_tick, + [50881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 1, + aux_sym_package_specification_token3, + [50888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4700), 1, anon_sym_SEMI, - [50731] = 2, + [50895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4702), 1, + anon_sym_RBRACK, + [50902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4704), 1, anon_sym_SEMI, - [50738] = 2, + [50909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_general_access_modifier_token1, - [50745] = 2, + ACTIONS(4706), 1, + sym_identifier, + [50916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_SEMI, - [50752] = 2, + [50923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 1, + aux_sym_object_renaming_declaration_token1, + [50930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + anon_sym_SEMI, + [50937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4712), 1, + anon_sym_SEMI, + [50944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 1, + aux_sym_object_renaming_declaration_token1, + [50951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_SEMI, + [50958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 1, + aux_sym_with_clause_token2, + [50965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 1, + aux_sym_with_clause_token2, + [50972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + [50979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4724), 1, + aux_sym_primary_null_token1, + [50986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + anon_sym_SEMI, + [50993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 1, + anon_sym_EQ_GT, + [51000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + aux_sym_package_specification_token2, + [51007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 1, + sym_identifier, + [51014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + [51021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 1, + aux_sym_primary_null_token1, + [51028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 1, + anon_sym_SEMI, + [51035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 1, + aux_sym_allocator_token1, + [51042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, + aux_sym_compilation_unit_token1, + [51049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4738), 1, + anon_sym_SEMI, + [51056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4740), 1, + aux_sym_allocator_token1, + [51063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4742), 1, + anon_sym_SEMI, + [51070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 1, + aux_sym_record_component_association_list_token1, + [51077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 1, + aux_sym_record_component_association_list_token1, + [51084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 1, + anon_sym_EQ_GT, + [51091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4750), 1, + aux_sym_case_expression_token1, + [51098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4752), 1, + aux_sym_attribute_designator_token4, + [51105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 1, + aux_sym_package_specification_token2, + [51112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_SEMI, + [51119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 1, + anon_sym_SEMI, + [51126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(209), 1, aux_sym_private_type_declaration_token1, - [50759] = 2, + [51133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, - aux_sym_package_specification_token2, - [50766] = 2, + ACTIONS(4758), 1, + sym_identifier, + [51140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(3187), 1, anon_sym_SEMI, - [50773] = 2, + [51147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4760), 1, + aux_sym_with_clause_token2, + [51154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 1, aux_sym_loop_statement_token1, - [50780] = 2, + [51161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4709), 1, - aux_sym_package_specification_token3, - [50787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4711), 1, + ACTIONS(4764), 1, anon_sym_SEMI, - [50794] = 2, + [51168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4713), 1, - anon_sym_SEMI, - [50801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4715), 1, - aux_sym_package_specification_token3, - [50808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4717), 1, - aux_sym_asynchronous_select_token1, - [50815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4719), 1, - anon_sym_SEMI, - [50822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4721), 1, - anon_sym_DOT_DOT, - [50829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4723), 1, - anon_sym_SEMI, - [50836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4725), 1, - anon_sym_RPAREN, - [50843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4727), 1, - aux_sym_package_specification_token3, - [50850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_SEMI, - [50857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4731), 1, - aux_sym_record_component_association_list_token1, - [50864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4733), 1, - sym_identifier, - [50871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4735), 1, - anon_sym_SEMI, - [50878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4737), 1, - anon_sym_RBRACK, - [50885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4739), 1, - anon_sym_RPAREN, - [50892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4741), 1, - anon_sym_SEMI, - [50899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4743), 1, - anon_sym_SEMI, - [50906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4745), 1, - anon_sym_SEMI, - [50913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_SEMI, - [50920] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4747), 1, - anon_sym_SEMI, - [50927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4749), 1, - anon_sym_SEMI, - [50934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - anon_sym_EQ_GT, - [50941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4753), 1, - aux_sym_case_expression_token1, - [50948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 1, - anon_sym_SEMI, - [50955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4757), 1, - aux_sym_expression_token2, - [50962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4759), 1, - anon_sym_SEMI, - [50969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3721), 1, - anon_sym_SEMI, - [50976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - aux_sym_loop_statement_token1, - [50983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4763), 1, - aux_sym_package_specification_token3, - [50990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4765), 1, - aux_sym_allocator_token1, - [50997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - aux_sym_with_clause_token2, - [51004] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_SEMI, - [51011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4771), 1, - anon_sym_SEMI, - [51018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4773), 1, + ACTIONS(4766), 1, aux_sym_compilation_unit_token1, - [51025] = 2, + [51175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, + ACTIONS(4768), 1, aux_sym_compilation_unit_token1, - [51032] = 2, + [51182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, - aux_sym_subprogram_body_token1, - [51039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4779), 1, + ACTIONS(4770), 1, anon_sym_SEMI, - [51046] = 2, + [51189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4781), 1, + ACTIONS(4772), 1, anon_sym_SEMI, - [51053] = 2, + [51196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(4169), 1, anon_sym_SEMI, - [51060] = 2, + [51203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, + ACTIONS(4774), 1, anon_sym_SEMI, - [51067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - aux_sym_expression_token2, - [51074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - aux_sym_package_specification_token3, - [51081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4791), 1, - anon_sym_SEMI, - [51088] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(229), 1, - aux_sym_subprogram_body_token1, - [51095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4793), 1, - aux_sym_chunk_specification_token1, - [51102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4795), 1, - anon_sym_SEMI, - [51109] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4797), 1, - anon_sym_SEMI, - [51116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4799), 1, - anon_sym_COLON, - [51123] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, - aux_sym_subprogram_body_token1, - [51130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4801), 1, - aux_sym_package_specification_token2, - [51137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - sym_identifier, - [51144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 1, - aux_sym_subprogram_body_token1, - [51151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4805), 1, - anon_sym_SEMI, - [51158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4807), 1, - anon_sym_SEMI, - [51165] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 1, - anon_sym_SEMI, - [51172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4809), 1, - anon_sym_RPAREN, - [51179] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4811), 1, - anon_sym_RPAREN, - [51186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 1, - anon_sym_SEMI, - [51193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4813), 1, - sym_identifier, - [51200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4815), 1, - anon_sym_SEMI, - [51207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - sym_identifier, - [51214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4819), 1, - aux_sym_loop_statement_token1, - [51221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4102), 1, - anon_sym_SEMI, - [51228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4821), 1, - aux_sym_package_specification_token3, - [51235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 1, - aux_sym_package_specification_token3, - [51242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4825), 1, - anon_sym_RPAREN, - [51249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - aux_sym_with_clause_token2, - [51256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4829), 1, - aux_sym_compilation_unit_token1, - [51263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 1, - aux_sym_compilation_unit_token1, - [51270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 1, - aux_sym_package_specification_token2, - [51277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4835), 1, - anon_sym_SEMI, - [51284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4837), 1, - anon_sym_SEMI, - [51291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_SEMI, - [51298] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - aux_sym_attribute_designator_token4, - [51305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - aux_sym_package_specification_token3, - [51312] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4845), 1, - anon_sym_SEMI, - [51319] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_SEMI, - [51326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4849), 1, - anon_sym_SEMI, - [51333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_SEMI, - [51340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 1, - anon_sym_RPAREN, - [51347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4855), 1, - anon_sym_RPAREN, - [51354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4857), 1, - sym_identifier, - [51361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4859), 1, - sym_identifier, - [51368] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_SEMI, - [51375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4861), 1, - anon_sym_SEMI, - [51382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4863), 1, - anon_sym_SEMI, - [51389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_SEMI, - [51396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - [51403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - aux_sym_package_specification_token3, - [51410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - aux_sym_package_specification_token3, - [51417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 1, - aux_sym_package_specification_token3, - [51424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - aux_sym_component_list_token1, - [51431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - aux_sym_asynchronous_select_token1, - [51438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_SEMI, - [51445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - aux_sym_package_specification_token3, - [51452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - anon_sym_SEMI, - [51459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_SEMI, - [51466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - aux_sym_with_clause_token2, - [51473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_SEMI, - [51480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4891), 1, - aux_sym_asynchronous_select_token1, - [51487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4893), 1, - aux_sym_package_specification_token3, - [51494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4895), 1, - aux_sym_asynchronous_select_token1, - [51501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 1, - anon_sym_SEMI, - [51508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4899), 1, - aux_sym_compilation_unit_token1, - [51515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4901), 1, - aux_sym_result_profile_token1, - [51522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4903), 1, - anon_sym_SEMI, - [51529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4905), 1, - aux_sym_if_expression_token1, - [51536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4907), 1, - aux_sym_with_clause_token2, - [51543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4909), 1, - anon_sym_SEMI, - [51550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 1, - anon_sym_SEMI, - [51557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4911), 1, - anon_sym_SEMI, - [51564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4913), 1, - anon_sym_SEMI, - [51571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3896), 1, - anon_sym_SEMI, - [51578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4915), 1, - aux_sym_record_component_association_list_token1, - [51585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4917), 1, - aux_sym_use_clause_token2, - [51592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(231), 1, - aux_sym_subprogram_body_token1, - [51599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4919), 1, - aux_sym_package_specification_token3, - [51606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4921), 1, - aux_sym_loop_statement_token1, - [51613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4923), 1, - aux_sym_iterated_element_association_token2, - [51620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4925), 1, - anon_sym_DOT_DOT, - [51627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4927), 1, - anon_sym_LT_GT, - [51634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4929), 1, - anon_sym_SEMI, - [51641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4931), 1, - anon_sym_LT_GT, - [51648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - anon_sym_SEMI, - [51655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4935), 1, - aux_sym_compilation_unit_token1, - [51662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4937), 1, - anon_sym_LT_GT, - [51669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4939), 1, - anon_sym_LT_GT, - [51676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4941), 1, - aux_sym_with_clause_token2, - [51683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4943), 1, - anon_sym_LT_GT, - [51690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - aux_sym_allocator_token1, - [51697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(237), 1, - aux_sym_subprogram_body_token1, - [51704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4947), 1, - anon_sym_SEMI, - [51711] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4949), 1, - anon_sym_RBRACK, - [51718] = 2, + [51210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(215), 1, aux_sym_private_type_declaration_token1, - [51725] = 2, + [51217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 1, + ACTIONS(4776), 1, anon_sym_SEMI, - [51732] = 2, + [51224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(4778), 1, anon_sym_SEMI, - [51739] = 2, + [51231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, + ACTIONS(4780), 1, anon_sym_SEMI, - [51746] = 2, + [51238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, - anon_sym_SEMI, - [51753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4957), 1, - sym_identifier, - [51760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3992), 1, - anon_sym_SEMI, - [51767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4959), 1, - anon_sym_SEMI, - [51774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2926), 1, - aux_sym_loop_statement_token1, - [51781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4961), 1, - anon_sym_SEMI, - [51788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4963), 1, + ACTIONS(4782), 1, anon_sym_RPAREN, - [51795] = 2, + [51245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, - aux_sym_with_clause_token2, - [51802] = 2, + ACTIONS(4784), 1, + aux_sym_chunk_specification_token1, + [51252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4967), 1, - aux_sym_case_expression_token1, - [51809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4969), 1, - anon_sym_EQ_GT, - [51816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3538), 1, - anon_sym_SEMI, - [51823] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4971), 1, - anon_sym_EQ_GT, - [51830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4973), 1, - anon_sym_SEMI, - [51837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4975), 1, - anon_sym_RPAREN, - [51844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 1, - anon_sym_SEMI, - [51851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4979), 1, - aux_sym_compilation_unit_token1, - [51858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3751), 1, - anon_sym_COMMA, - [51865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4981), 1, - anon_sym_RPAREN, - [51872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4983), 1, + ACTIONS(4203), 1, aux_sym_package_specification_token3, - [51879] = 2, + [51259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_SEMI, - [51886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4987), 1, - anon_sym_EQ_GT, - [51893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4989), 1, - aux_sym_subprogram_body_token1, - [51900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - sym_tick, - [51907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4993), 1, - anon_sym_RPAREN, - [51914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4995), 1, - anon_sym_EQ_GT, - [51921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4997), 1, - aux_sym_compilation_unit_token1, - [51928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 1, - anon_sym_SEMI, - [51935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4999), 1, - sym_identifier, - [51942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5001), 1, + ACTIONS(4786), 1, aux_sym_package_specification_token2, - [51949] = 2, + [51266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 1, - ts_builtin_sym_end, - [51956] = 2, + ACTIONS(4788), 1, + aux_sym_loop_statement_token1, + [51273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, - sym_identifier, - [51963] = 2, + ACTIONS(273), 1, + aux_sym_subprogram_body_token1, + [51280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_SEMI, - [51970] = 2, + ACTIONS(4790), 1, + aux_sym_package_specification_token2, + [51287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, - sym_identifier, - [51977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5011), 1, - anon_sym_SEMI, - [51984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5013), 1, - sym_identifier, - [51991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 1, - sym_identifier, - [51998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5017), 1, - anon_sym_SEMI, - [52005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5019), 1, - anon_sym_SEMI, - [52012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5021), 1, + ACTIONS(4792), 1, aux_sym_package_specification_token3, - [52019] = 2, + [51294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(4794), 1, anon_sym_SEMI, - [52026] = 2, + [51301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, - aux_sym_with_clause_token2, - [52033] = 2, + ACTIONS(4796), 1, + aux_sym_record_component_association_list_token1, + [51308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 1, + ACTIONS(4798), 1, anon_sym_SEMI, - [52040] = 2, + [51315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 1, - anon_sym_EQ_GT, - [52047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5027), 1, - sym_identifier, - [52054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5029), 1, - anon_sym_COLON, - [52061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 1, - aux_sym_package_body_token1, - [52068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5033), 1, + ACTIONS(4800), 1, anon_sym_SEMI, - [52075] = 2, + [51322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(3712), 1, anon_sym_SEMI, - [52082] = 2, + [51329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 1, - aux_sym_package_body_token1, - [52089] = 2, + ACTIONS(4802), 1, + anon_sym_DOT_DOT, + [51336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - aux_sym_package_body_token1, - [52096] = 2, + ACTIONS(4804), 1, + anon_sym_RPAREN, + [51343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 1, - aux_sym_package_specification_token3, - [52103] = 2, + ACTIONS(4806), 1, + anon_sym_RBRACK, + [51350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, - anon_sym_SEMI, - [52110] = 2, + ACTIONS(4808), 1, + anon_sym_RPAREN, + [51357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_SEMI, - [52117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4234), 1, - anon_sym_SEMI, - [52124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - aux_sym_allocator_token1, - [52131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5043), 1, - aux_sym_allocator_token1, - [52138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5045), 1, - anon_sym_SEMI, - [52145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5047), 1, - aux_sym_package_specification_token3, - [52152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5049), 1, - anon_sym_COLON, - [52159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5051), 1, - aux_sym_global_mode_token1, - [52166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5053), 1, - sym_identifier, - [52173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5055), 1, - anon_sym_LPAREN, - [52180] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5057), 1, - sym_identifier, - [52187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5059), 1, + ACTIONS(4810), 1, aux_sym_component_list_token1, + [51364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + anon_sym_SEMI, + [51371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4814), 1, + anon_sym_SEMI, + [51378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 1, + sym_identifier, + [51385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4142), 1, + anon_sym_SEMI, + [51392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + anon_sym_SEMI, + [51399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + anon_sym_COLON, + [51406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_SEMI, + [51413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4824), 1, + aux_sym_with_clause_token2, + [51420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 1, + aux_sym_compilation_unit_token1, + [51427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + aux_sym_compilation_unit_token1, + [51434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + aux_sym_expression_token2, + [51441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_package_specification_token3, + [51448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + aux_sym_allocator_token1, + [51455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_SEMI, + [51462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3302), 1, + aux_sym_allocator_token1, + [51469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 1, + aux_sym_subprogram_body_token1, + [51476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 1, + anon_sym_SEMI, + [51483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 1, + anon_sym_GT_GT, + [51490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 1, + anon_sym_SEMI, + [51497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_SEMI, + [51504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4848), 1, + aux_sym_expression_token2, + [51511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 1, + anon_sym_SEMI, + [51518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_SEMI, + [51525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 1, + aux_sym_package_specification_token3, + [51532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4856), 1, + anon_sym_COLON, + [51539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 1, + anon_sym_SEMI, + [51546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4860), 1, + sym_identifier, + [51553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 1, + anon_sym_SEMI, + [51560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_SEMI, + [51567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + anon_sym_EQ_GT, + [51574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4868), 1, + anon_sym_RPAREN, + [51581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 1, + sym_identifier, + [51588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4872), 1, + aux_sym_loop_statement_token1, + [51595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 1, + sym_identifier, + [51602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, + anon_sym_SEMI, + [51609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + aux_sym_package_specification_token3, + [51616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4880), 1, + anon_sym_SEMI, + [51623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 1, + aux_sym_package_specification_token2, + [51630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(323), 1, + aux_sym_subprogram_body_token1, + [51637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4884), 1, + anon_sym_SEMI, + [51644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 1, + anon_sym_RPAREN, + [51651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_SEMI, + [51658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 1, + sym_identifier, + [51665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_SEMI, + [51672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 1, + aux_sym_compilation_unit_token1, + [51679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + sym_identifier, + [51686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, + aux_sym_package_body_token1, + [51693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 1, + aux_sym_package_body_token1, + [51700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + aux_sym_with_clause_token2, + [51707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, + aux_sym_package_body_token1, + [51714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 1, + anon_sym_SEMI, + [51721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 1, + anon_sym_RPAREN, + [51728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_SEMI, + [51735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_RPAREN, + [51742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3193), 1, + anon_sym_SEMI, + [51749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + anon_sym_SEMI, + [51756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(325), 1, + aux_sym_subprogram_body_token1, + [51763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 1, + aux_sym_package_specification_token3, + [51770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 1, + aux_sym_package_specification_token3, + [51777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_COLON, + [51784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + anon_sym_EQ_GT, + [51791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + anon_sym_SEMI, + [51798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + anon_sym_SEMI, + [51805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 1, + aux_sym_package_specification_token3, + [51812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 1, + anon_sym_SEMI, + [51819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3983), 1, + anon_sym_SEMI, + [51826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 1, + anon_sym_SEMI, + [51833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, + aux_sym_compilation_unit_token1, + [51840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 1, + aux_sym_package_specification_token3, + [51847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 1, + aux_sym_component_list_token1, + [51854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + aux_sym_with_clause_token2, + [51861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 1, + aux_sym_asynchronous_select_token1, + [51868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, + anon_sym_SEMI, + [51875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 1, + aux_sym_with_clause_token2, + [51882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, + anon_sym_SEMI, + [51889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 1, + aux_sym_with_clause_token2, + [51896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 1, + aux_sym_package_specification_token3, + [51903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_SEMI, + [51910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_SEMI, + [51917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 1, + aux_sym_asynchronous_select_token1, + [51924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_SEMI, + [51931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 1, + aux_sym_use_clause_token2, + [51938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + aux_sym_loop_statement_token1, + [51945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_SEMI, + [51952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + aux_sym_package_specification_token3, + [51959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 1, + aux_sym_asynchronous_select_token1, + [51966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 1, + aux_sym_result_profile_token1, + [51973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_RBRACK, + [51980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 1, + anon_sym_SEMI, + [51987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_SEMI, + [51994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 1, + aux_sym_if_expression_token1, + [52001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + aux_sym_package_specification_token2, + [52008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, + anon_sym_SEMI, + [52015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 1, + anon_sym_SEMI, + [52022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_SEMI, + [52029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + aux_sym_compilation_unit_token1, + [52036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 1, + sym_identifier, + [52043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, + anon_sym_RPAREN, + [52050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 1, + aux_sym_package_specification_token3, + [52057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + sym_identifier, + [52064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3123), 1, + anon_sym_SEMI, + [52071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + aux_sym_subprogram_body_token1, + [52078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3807), 1, + anon_sym_SEMI, + [52085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, + aux_sym_loop_statement_token1, + [52092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + aux_sym_iterated_element_association_token2, + [52099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + anon_sym_SEMI, + [52106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + aux_sym_compilation_unit_token1, + [52113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_LT_GT, + [52120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + anon_sym_LT_GT, + [52127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + anon_sym_LT_GT, + [52134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 1, + anon_sym_LT_GT, + [52141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 1, + anon_sym_SEMI, + [52148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 1, + anon_sym_SEMI, + [52155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 1, + sym_tick, + [52162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_SEMI, + [52169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + anon_sym_COLON, + [52176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 1, + anon_sym_LT_GT, + [52183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + anon_sym_EQ_GT, + [52190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + aux_sym_allocator_token1, + [52197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + aux_sym_package_specification_token3, + [52204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4163), 1, + anon_sym_SEMI, + [52211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 1, + ts_builtin_sym_end, + [52218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + sym_identifier, + [52225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + anon_sym_RPAREN, + [52232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 1, + sym_identifier, + [52239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 1, + sym_identifier, + [52246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, + sym_identifier, + [52253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 1, + anon_sym_SEMI, + [52260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 1, + anon_sym_SEMI, + [52267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(275), 1, + aux_sym_subprogram_body_token1, + [52274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 1, + anon_sym_EQ_GT, + [52281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + aux_sym_package_specification_token3, + [52288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 1, + sym_identifier, + [52295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4215), 1, + anon_sym_SEMI, + [52302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, + anon_sym_SEMI, + [52309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 1, + anon_sym_SEMI, + [52316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3743), 1, + anon_sym_COMMA, + [52323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 1, + anon_sym_SEMI, + [52330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_SEMI, + [52337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 1, + anon_sym_RPAREN, + [52344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 1, + aux_sym_global_mode_token1, + [52351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_with_clause_token2, + [52358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5064), 1, + anon_sym_LPAREN, + [52365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + sym_identifier, + [52372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5068), 1, + aux_sym_case_expression_token1, }; static const uint32_t ts_small_parse_table_map[] = { @@ -55619,18 +55756,18 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(71)] = 1778, [SMALL_STATE(72)] = 1900, [SMALL_STATE(73)] = 2020, - [SMALL_STATE(74)] = 2135, - [SMALL_STATE(75)] = 2252, - [SMALL_STATE(76)] = 2369, - [SMALL_STATE(77)] = 2486, + [SMALL_STATE(74)] = 2149, + [SMALL_STATE(75)] = 2266, + [SMALL_STATE(76)] = 2383, + [SMALL_STATE(77)] = 2500, [SMALL_STATE(78)] = 2615, [SMALL_STATE(79)] = 2732, [SMALL_STATE(80)] = 2846, - [SMALL_STATE(81)] = 2966, - [SMALL_STATE(82)] = 3080, - [SMALL_STATE(83)] = 3194, - [SMALL_STATE(84)] = 3322, - [SMALL_STATE(85)] = 3436, + [SMALL_STATE(81)] = 2960, + [SMALL_STATE(82)] = 3074, + [SMALL_STATE(83)] = 3188, + [SMALL_STATE(84)] = 3302, + [SMALL_STATE(85)] = 3430, [SMALL_STATE(86)] = 3550, [SMALL_STATE(87)] = 3664, [SMALL_STATE(88)] = 3794, @@ -55639,7 +55776,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(91)] = 4170, [SMALL_STATE(92)] = 4294, [SMALL_STATE(93)] = 4418, - [SMALL_STATE(94)] = 4539, + [SMALL_STATE(94)] = 4537, [SMALL_STATE(95)] = 4658, [SMALL_STATE(96)] = 4774, [SMALL_STATE(97)] = 4886, @@ -55656,15 +55793,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(108)] = 5802, [SMALL_STATE(109)] = 5858, [SMALL_STATE(110)] = 5914, - [SMALL_STATE(111)] = 5970, - [SMALL_STATE(112)] = 6026, - [SMALL_STATE(113)] = 6082, - [SMALL_STATE(114)] = 6138, - [SMALL_STATE(115)] = 6194, - [SMALL_STATE(116)] = 6250, - [SMALL_STATE(117)] = 6306, - [SMALL_STATE(118)] = 6362, - [SMALL_STATE(119)] = 6418, + [SMALL_STATE(111)] = 6014, + [SMALL_STATE(112)] = 6070, + [SMALL_STATE(113)] = 6126, + [SMALL_STATE(114)] = 6182, + [SMALL_STATE(115)] = 6238, + [SMALL_STATE(116)] = 6294, + [SMALL_STATE(117)] = 6350, + [SMALL_STATE(118)] = 6406, + [SMALL_STATE(119)] = 6462, [SMALL_STATE(120)] = 6518, [SMALL_STATE(121)] = 6574, [SMALL_STATE(122)] = 6630, @@ -55676,36 +55813,36 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(128)] = 6966, [SMALL_STATE(129)] = 7022, [SMALL_STATE(130)] = 7078, - [SMALL_STATE(131)] = 7134, - [SMALL_STATE(132)] = 7190, - [SMALL_STATE(133)] = 7246, - [SMALL_STATE(134)] = 7302, - [SMALL_STATE(135)] = 7358, - [SMALL_STATE(136)] = 7414, - [SMALL_STATE(137)] = 7470, - [SMALL_STATE(138)] = 7526, - [SMALL_STATE(139)] = 7582, - [SMALL_STATE(140)] = 7682, - [SMALL_STATE(141)] = 7738, - [SMALL_STATE(142)] = 7794, - [SMALL_STATE(143)] = 7850, - [SMALL_STATE(144)] = 7906, - [SMALL_STATE(145)] = 7962, - [SMALL_STATE(146)] = 8018, - [SMALL_STATE(147)] = 8074, - [SMALL_STATE(148)] = 8130, - [SMALL_STATE(149)] = 8186, - [SMALL_STATE(150)] = 8242, - [SMALL_STATE(151)] = 8298, - [SMALL_STATE(152)] = 8354, - [SMALL_STATE(153)] = 8410, - [SMALL_STATE(154)] = 8466, - [SMALL_STATE(155)] = 8522, - [SMALL_STATE(156)] = 8578, - [SMALL_STATE(157)] = 8634, - [SMALL_STATE(158)] = 8690, - [SMALL_STATE(159)] = 8746, - [SMALL_STATE(160)] = 8802, + [SMALL_STATE(131)] = 7178, + [SMALL_STATE(132)] = 7234, + [SMALL_STATE(133)] = 7290, + [SMALL_STATE(134)] = 7346, + [SMALL_STATE(135)] = 7402, + [SMALL_STATE(136)] = 7458, + [SMALL_STATE(137)] = 7514, + [SMALL_STATE(138)] = 7570, + [SMALL_STATE(139)] = 7670, + [SMALL_STATE(140)] = 7726, + [SMALL_STATE(141)] = 7782, + [SMALL_STATE(142)] = 7838, + [SMALL_STATE(143)] = 7894, + [SMALL_STATE(144)] = 7950, + [SMALL_STATE(145)] = 8006, + [SMALL_STATE(146)] = 8062, + [SMALL_STATE(147)] = 8118, + [SMALL_STATE(148)] = 8174, + [SMALL_STATE(149)] = 8230, + [SMALL_STATE(150)] = 8286, + [SMALL_STATE(151)] = 8342, + [SMALL_STATE(152)] = 8398, + [SMALL_STATE(153)] = 8454, + [SMALL_STATE(154)] = 8510, + [SMALL_STATE(155)] = 8566, + [SMALL_STATE(156)] = 8622, + [SMALL_STATE(157)] = 8678, + [SMALL_STATE(158)] = 8734, + [SMALL_STATE(159)] = 8790, + [SMALL_STATE(160)] = 8846, [SMALL_STATE(161)] = 8902, [SMALL_STATE(162)] = 8958, [SMALL_STATE(163)] = 9014, @@ -55718,106 +55855,106 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(170)] = 9490, [SMALL_STATE(171)] = 9589, [SMALL_STATE(172)] = 9684, - [SMALL_STATE(173)] = 9779, - [SMALL_STATE(174)] = 9876, - [SMALL_STATE(175)] = 9973, + [SMALL_STATE(173)] = 9781, + [SMALL_STATE(174)] = 9880, + [SMALL_STATE(175)] = 9977, [SMALL_STATE(176)] = 10072, [SMALL_STATE(177)] = 10166, - [SMALL_STATE(178)] = 10226, - [SMALL_STATE(179)] = 10320, - [SMALL_STATE(180)] = 10414, - [SMALL_STATE(181)] = 10508, - [SMALL_STATE(182)] = 10602, - [SMALL_STATE(183)] = 10696, - [SMALL_STATE(184)] = 10790, - [SMALL_STATE(185)] = 10884, - [SMALL_STATE(186)] = 10978, - [SMALL_STATE(187)] = 11072, - [SMALL_STATE(188)] = 11166, + [SMALL_STATE(178)] = 10260, + [SMALL_STATE(179)] = 10354, + [SMALL_STATE(180)] = 10448, + [SMALL_STATE(181)] = 10504, + [SMALL_STATE(182)] = 10598, + [SMALL_STATE(183)] = 10692, + [SMALL_STATE(184)] = 10752, + [SMALL_STATE(185)] = 10846, + [SMALL_STATE(186)] = 10940, + [SMALL_STATE(187)] = 11034, + [SMALL_STATE(188)] = 11128, [SMALL_STATE(189)] = 11222, [SMALL_STATE(190)] = 11316, - [SMALL_STATE(191)] = 11407, - [SMALL_STATE(192)] = 11498, - [SMALL_STATE(193)] = 11551, + [SMALL_STATE(191)] = 11369, + [SMALL_STATE(192)] = 11460, + [SMALL_STATE(193)] = 11513, [SMALL_STATE(194)] = 11604, - [SMALL_STATE(195)] = 11657, - [SMALL_STATE(196)] = 11710, - [SMALL_STATE(197)] = 11763, - [SMALL_STATE(198)] = 11854, - [SMALL_STATE(199)] = 11945, - [SMALL_STATE(200)] = 11998, - [SMALL_STATE(201)] = 12051, - [SMALL_STATE(202)] = 12142, - [SMALL_STATE(203)] = 12233, - [SMALL_STATE(204)] = 12324, - [SMALL_STATE(205)] = 12415, - [SMALL_STATE(206)] = 12506, - [SMALL_STATE(207)] = 12597, - [SMALL_STATE(208)] = 12650, - [SMALL_STATE(209)] = 12743, - [SMALL_STATE(210)] = 12796, - [SMALL_STATE(211)] = 12887, - [SMALL_STATE(212)] = 12940, - [SMALL_STATE(213)] = 12993, - [SMALL_STATE(214)] = 13084, - [SMALL_STATE(215)] = 13137, - [SMALL_STATE(216)] = 13190, - [SMALL_STATE(217)] = 13281, - [SMALL_STATE(218)] = 13372, - [SMALL_STATE(219)] = 13463, - [SMALL_STATE(220)] = 13554, - [SMALL_STATE(221)] = 13645, - [SMALL_STATE(222)] = 13698, - [SMALL_STATE(223)] = 13751, - [SMALL_STATE(224)] = 13842, - [SMALL_STATE(225)] = 13933, - [SMALL_STATE(226)] = 13986, - [SMALL_STATE(227)] = 14077, - [SMALL_STATE(228)] = 14130, - [SMALL_STATE(229)] = 14221, - [SMALL_STATE(230)] = 14312, - [SMALL_STATE(231)] = 14403, - [SMALL_STATE(232)] = 14494, - [SMALL_STATE(233)] = 14585, - [SMALL_STATE(234)] = 14676, - [SMALL_STATE(235)] = 14767, - [SMALL_STATE(236)] = 14858, - [SMALL_STATE(237)] = 14911, - [SMALL_STATE(238)] = 15002, - [SMALL_STATE(239)] = 15055, - [SMALL_STATE(240)] = 15146, - [SMALL_STATE(241)] = 15237, + [SMALL_STATE(195)] = 11695, + [SMALL_STATE(196)] = 11786, + [SMALL_STATE(197)] = 11839, + [SMALL_STATE(198)] = 11930, + [SMALL_STATE(199)] = 12021, + [SMALL_STATE(200)] = 12074, + [SMALL_STATE(201)] = 12165, + [SMALL_STATE(202)] = 12256, + [SMALL_STATE(203)] = 12347, + [SMALL_STATE(204)] = 12438, + [SMALL_STATE(205)] = 12529, + [SMALL_STATE(206)] = 12620, + [SMALL_STATE(207)] = 12673, + [SMALL_STATE(208)] = 12764, + [SMALL_STATE(209)] = 12855, + [SMALL_STATE(210)] = 12946, + [SMALL_STATE(211)] = 13039, + [SMALL_STATE(212)] = 13130, + [SMALL_STATE(213)] = 13221, + [SMALL_STATE(214)] = 13312, + [SMALL_STATE(215)] = 13403, + [SMALL_STATE(216)] = 13456, + [SMALL_STATE(217)] = 13509, + [SMALL_STATE(218)] = 13600, + [SMALL_STATE(219)] = 13653, + [SMALL_STATE(220)] = 13744, + [SMALL_STATE(221)] = 13835, + [SMALL_STATE(222)] = 13926, + [SMALL_STATE(223)] = 13979, + [SMALL_STATE(224)] = 14032, + [SMALL_STATE(225)] = 14123, + [SMALL_STATE(226)] = 14214, + [SMALL_STATE(227)] = 14267, + [SMALL_STATE(228)] = 14358, + [SMALL_STATE(229)] = 14411, + [SMALL_STATE(230)] = 14502, + [SMALL_STATE(231)] = 14555, + [SMALL_STATE(232)] = 14646, + [SMALL_STATE(233)] = 14737, + [SMALL_STATE(234)] = 14790, + [SMALL_STATE(235)] = 14843, + [SMALL_STATE(236)] = 14896, + [SMALL_STATE(237)] = 14949, + [SMALL_STATE(238)] = 15040, + [SMALL_STATE(239)] = 15093, + [SMALL_STATE(240)] = 15184, + [SMALL_STATE(241)] = 15275, [SMALL_STATE(242)] = 15328, [SMALL_STATE(243)] = 15419, [SMALL_STATE(244)] = 15510, - [SMALL_STATE(245)] = 15563, - [SMALL_STATE(246)] = 15654, - [SMALL_STATE(247)] = 15745, - [SMALL_STATE(248)] = 15836, - [SMALL_STATE(249)] = 15927, + [SMALL_STATE(245)] = 15601, + [SMALL_STATE(246)] = 15692, + [SMALL_STATE(247)] = 15783, + [SMALL_STATE(248)] = 15874, + [SMALL_STATE(249)] = 15965, [SMALL_STATE(250)] = 16018, - [SMALL_STATE(251)] = 16071, + [SMALL_STATE(251)] = 16109, [SMALL_STATE(252)] = 16162, [SMALL_STATE(253)] = 16252, - [SMALL_STATE(254)] = 16342, - [SMALL_STATE(255)] = 16432, - [SMALL_STATE(256)] = 16520, - [SMALL_STATE(257)] = 16610, - [SMALL_STATE(258)] = 16700, + [SMALL_STATE(254)] = 16340, + [SMALL_STATE(255)] = 16428, + [SMALL_STATE(256)] = 16518, + [SMALL_STATE(257)] = 16608, + [SMALL_STATE(258)] = 16698, [SMALL_STATE(259)] = 16788, [SMALL_STATE(260)] = 16876, [SMALL_STATE(261)] = 16927, - [SMALL_STATE(262)] = 16978, - [SMALL_STATE(263)] = 17029, - [SMALL_STATE(264)] = 17116, - [SMALL_STATE(265)] = 17167, - [SMALL_STATE(266)] = 17226, - [SMALL_STATE(267)] = 17277, - [SMALL_STATE(268)] = 17328, - [SMALL_STATE(269)] = 17379, - [SMALL_STATE(270)] = 17430, - [SMALL_STATE(271)] = 17481, - [SMALL_STATE(272)] = 17568, + [SMALL_STATE(262)] = 16986, + [SMALL_STATE(263)] = 17037, + [SMALL_STATE(264)] = 17088, + [SMALL_STATE(265)] = 17139, + [SMALL_STATE(266)] = 17190, + [SMALL_STATE(267)] = 17249, + [SMALL_STATE(268)] = 17300, + [SMALL_STATE(269)] = 17387, + [SMALL_STATE(270)] = 17474, + [SMALL_STATE(271)] = 17525, + [SMALL_STATE(272)] = 17576, [SMALL_STATE(273)] = 17627, [SMALL_STATE(274)] = 17677, [SMALL_STATE(275)] = 17727, @@ -55835,451 +55972,451 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(287)] = 18327, [SMALL_STATE(288)] = 18377, [SMALL_STATE(289)] = 18427, - [SMALL_STATE(290)] = 18477, - [SMALL_STATE(291)] = 18527, + [SMALL_STATE(290)] = 18511, + [SMALL_STATE(291)] = 18561, [SMALL_STATE(292)] = 18611, [SMALL_STATE(293)] = 18661, [SMALL_STATE(294)] = 18711, - [SMALL_STATE(295)] = 18761, - [SMALL_STATE(296)] = 18811, - [SMALL_STATE(297)] = 18861, - [SMALL_STATE(298)] = 18911, - [SMALL_STATE(299)] = 18961, - [SMALL_STATE(300)] = 19011, - [SMALL_STATE(301)] = 19061, - [SMALL_STATE(302)] = 19111, - [SMALL_STATE(303)] = 19161, - [SMALL_STATE(304)] = 19211, - [SMALL_STATE(305)] = 19261, - [SMALL_STATE(306)] = 19311, - [SMALL_STATE(307)] = 19361, - [SMALL_STATE(308)] = 19411, - [SMALL_STATE(309)] = 19461, - [SMALL_STATE(310)] = 19511, - [SMALL_STATE(311)] = 19561, - [SMALL_STATE(312)] = 19611, - [SMALL_STATE(313)] = 19661, - [SMALL_STATE(314)] = 19711, - [SMALL_STATE(315)] = 19761, - [SMALL_STATE(316)] = 19811, - [SMALL_STATE(317)] = 19861, - [SMALL_STATE(318)] = 19911, - [SMALL_STATE(319)] = 19961, - [SMALL_STATE(320)] = 20011, - [SMALL_STATE(321)] = 20061, - [SMALL_STATE(322)] = 20111, - [SMALL_STATE(323)] = 20161, - [SMALL_STATE(324)] = 20211, - [SMALL_STATE(325)] = 20261, - [SMALL_STATE(326)] = 20311, - [SMALL_STATE(327)] = 20361, - [SMALL_STATE(328)] = 20411, - [SMALL_STATE(329)] = 20461, - [SMALL_STATE(330)] = 20511, - [SMALL_STATE(331)] = 20561, - [SMALL_STATE(332)] = 20611, - [SMALL_STATE(333)] = 20661, - [SMALL_STATE(334)] = 20711, - [SMALL_STATE(335)] = 20761, - [SMALL_STATE(336)] = 20811, - [SMALL_STATE(337)] = 20861, - [SMALL_STATE(338)] = 20911, - [SMALL_STATE(339)] = 20961, - [SMALL_STATE(340)] = 21011, - [SMALL_STATE(341)] = 21061, - [SMALL_STATE(342)] = 21111, - [SMALL_STATE(343)] = 21161, - [SMALL_STATE(344)] = 21211, - [SMALL_STATE(345)] = 21261, - [SMALL_STATE(346)] = 21311, - [SMALL_STATE(347)] = 21361, - [SMALL_STATE(348)] = 21411, - [SMALL_STATE(349)] = 21461, - [SMALL_STATE(350)] = 21511, - [SMALL_STATE(351)] = 21561, - [SMALL_STATE(352)] = 21611, - [SMALL_STATE(353)] = 21661, - [SMALL_STATE(354)] = 21711, - [SMALL_STATE(355)] = 21761, - [SMALL_STATE(356)] = 21811, - [SMALL_STATE(357)] = 21861, - [SMALL_STATE(358)] = 21911, - [SMALL_STATE(359)] = 21961, - [SMALL_STATE(360)] = 22011, - [SMALL_STATE(361)] = 22061, - [SMALL_STATE(362)] = 22111, - [SMALL_STATE(363)] = 22161, - [SMALL_STATE(364)] = 22211, - [SMALL_STATE(365)] = 22261, - [SMALL_STATE(366)] = 22311, - [SMALL_STATE(367)] = 22361, - [SMALL_STATE(368)] = 22411, - [SMALL_STATE(369)] = 22461, - [SMALL_STATE(370)] = 22511, - [SMALL_STATE(371)] = 22561, - [SMALL_STATE(372)] = 22611, - [SMALL_STATE(373)] = 22661, - [SMALL_STATE(374)] = 22711, - [SMALL_STATE(375)] = 22761, - [SMALL_STATE(376)] = 22811, - [SMALL_STATE(377)] = 22861, - [SMALL_STATE(378)] = 22911, - [SMALL_STATE(379)] = 22961, - [SMALL_STATE(380)] = 23011, - [SMALL_STATE(381)] = 23061, - [SMALL_STATE(382)] = 23111, - [SMALL_STATE(383)] = 23161, - [SMALL_STATE(384)] = 23211, - [SMALL_STATE(385)] = 23261, - [SMALL_STATE(386)] = 23311, - [SMALL_STATE(387)] = 23361, - [SMALL_STATE(388)] = 23411, - [SMALL_STATE(389)] = 23461, - [SMALL_STATE(390)] = 23511, - [SMALL_STATE(391)] = 23561, - [SMALL_STATE(392)] = 23611, - [SMALL_STATE(393)] = 23661, - [SMALL_STATE(394)] = 23711, - [SMALL_STATE(395)] = 23761, - [SMALL_STATE(396)] = 23811, - [SMALL_STATE(397)] = 23861, - [SMALL_STATE(398)] = 23911, - [SMALL_STATE(399)] = 23961, - [SMALL_STATE(400)] = 24011, - [SMALL_STATE(401)] = 24061, - [SMALL_STATE(402)] = 24111, - [SMALL_STATE(403)] = 24161, - [SMALL_STATE(404)] = 24211, - [SMALL_STATE(405)] = 24261, - [SMALL_STATE(406)] = 24311, - [SMALL_STATE(407)] = 24361, - [SMALL_STATE(408)] = 24411, - [SMALL_STATE(409)] = 24461, - [SMALL_STATE(410)] = 24511, - [SMALL_STATE(411)] = 24561, - [SMALL_STATE(412)] = 24611, - [SMALL_STATE(413)] = 24661, - [SMALL_STATE(414)] = 24711, - [SMALL_STATE(415)] = 24761, - [SMALL_STATE(416)] = 24811, - [SMALL_STATE(417)] = 24861, - [SMALL_STATE(418)] = 24911, - [SMALL_STATE(419)] = 24961, - [SMALL_STATE(420)] = 25011, - [SMALL_STATE(421)] = 25061, - [SMALL_STATE(422)] = 25111, - [SMALL_STATE(423)] = 25161, - [SMALL_STATE(424)] = 25211, - [SMALL_STATE(425)] = 25261, - [SMALL_STATE(426)] = 25311, - [SMALL_STATE(427)] = 25361, - [SMALL_STATE(428)] = 25411, - [SMALL_STATE(429)] = 25461, - [SMALL_STATE(430)] = 25511, - [SMALL_STATE(431)] = 25561, - [SMALL_STATE(432)] = 25611, - [SMALL_STATE(433)] = 25661, - [SMALL_STATE(434)] = 25711, - [SMALL_STATE(435)] = 25761, - [SMALL_STATE(436)] = 25811, - [SMALL_STATE(437)] = 25861, - [SMALL_STATE(438)] = 25911, - [SMALL_STATE(439)] = 25961, - [SMALL_STATE(440)] = 26011, - [SMALL_STATE(441)] = 26061, - [SMALL_STATE(442)] = 26111, - [SMALL_STATE(443)] = 26161, - [SMALL_STATE(444)] = 26211, - [SMALL_STATE(445)] = 26261, - [SMALL_STATE(446)] = 26311, - [SMALL_STATE(447)] = 26361, - [SMALL_STATE(448)] = 26411, - [SMALL_STATE(449)] = 26497, - [SMALL_STATE(450)] = 26547, - [SMALL_STATE(451)] = 26597, - [SMALL_STATE(452)] = 26647, - [SMALL_STATE(453)] = 26697, - [SMALL_STATE(454)] = 26747, - [SMALL_STATE(455)] = 26797, - [SMALL_STATE(456)] = 26847, - [SMALL_STATE(457)] = 26897, - [SMALL_STATE(458)] = 26947, - [SMALL_STATE(459)] = 26997, - [SMALL_STATE(460)] = 27047, - [SMALL_STATE(461)] = 27097, + [SMALL_STATE(295)] = 18767, + [SMALL_STATE(296)] = 18817, + [SMALL_STATE(297)] = 18867, + [SMALL_STATE(298)] = 18917, + [SMALL_STATE(299)] = 18967, + [SMALL_STATE(300)] = 19017, + [SMALL_STATE(301)] = 19067, + [SMALL_STATE(302)] = 19117, + [SMALL_STATE(303)] = 19167, + [SMALL_STATE(304)] = 19217, + [SMALL_STATE(305)] = 19267, + [SMALL_STATE(306)] = 19317, + [SMALL_STATE(307)] = 19367, + [SMALL_STATE(308)] = 19417, + [SMALL_STATE(309)] = 19467, + [SMALL_STATE(310)] = 19517, + [SMALL_STATE(311)] = 19567, + [SMALL_STATE(312)] = 19617, + [SMALL_STATE(313)] = 19667, + [SMALL_STATE(314)] = 19717, + [SMALL_STATE(315)] = 19767, + [SMALL_STATE(316)] = 19817, + [SMALL_STATE(317)] = 19867, + [SMALL_STATE(318)] = 19917, + [SMALL_STATE(319)] = 19967, + [SMALL_STATE(320)] = 20017, + [SMALL_STATE(321)] = 20067, + [SMALL_STATE(322)] = 20117, + [SMALL_STATE(323)] = 20167, + [SMALL_STATE(324)] = 20217, + [SMALL_STATE(325)] = 20267, + [SMALL_STATE(326)] = 20353, + [SMALL_STATE(327)] = 20403, + [SMALL_STATE(328)] = 20453, + [SMALL_STATE(329)] = 20503, + [SMALL_STATE(330)] = 20553, + [SMALL_STATE(331)] = 20603, + [SMALL_STATE(332)] = 20653, + [SMALL_STATE(333)] = 20703, + [SMALL_STATE(334)] = 20753, + [SMALL_STATE(335)] = 20803, + [SMALL_STATE(336)] = 20853, + [SMALL_STATE(337)] = 20903, + [SMALL_STATE(338)] = 20953, + [SMALL_STATE(339)] = 21003, + [SMALL_STATE(340)] = 21053, + [SMALL_STATE(341)] = 21103, + [SMALL_STATE(342)] = 21153, + [SMALL_STATE(343)] = 21203, + [SMALL_STATE(344)] = 21253, + [SMALL_STATE(345)] = 21303, + [SMALL_STATE(346)] = 21353, + [SMALL_STATE(347)] = 21403, + [SMALL_STATE(348)] = 21453, + [SMALL_STATE(349)] = 21503, + [SMALL_STATE(350)] = 21553, + [SMALL_STATE(351)] = 21603, + [SMALL_STATE(352)] = 21653, + [SMALL_STATE(353)] = 21703, + [SMALL_STATE(354)] = 21753, + [SMALL_STATE(355)] = 21803, + [SMALL_STATE(356)] = 21853, + [SMALL_STATE(357)] = 21903, + [SMALL_STATE(358)] = 21953, + [SMALL_STATE(359)] = 22003, + [SMALL_STATE(360)] = 22053, + [SMALL_STATE(361)] = 22103, + [SMALL_STATE(362)] = 22153, + [SMALL_STATE(363)] = 22203, + [SMALL_STATE(364)] = 22253, + [SMALL_STATE(365)] = 22303, + [SMALL_STATE(366)] = 22353, + [SMALL_STATE(367)] = 22403, + [SMALL_STATE(368)] = 22453, + [SMALL_STATE(369)] = 22503, + [SMALL_STATE(370)] = 22553, + [SMALL_STATE(371)] = 22603, + [SMALL_STATE(372)] = 22653, + [SMALL_STATE(373)] = 22703, + [SMALL_STATE(374)] = 22753, + [SMALL_STATE(375)] = 22803, + [SMALL_STATE(376)] = 22853, + [SMALL_STATE(377)] = 22903, + [SMALL_STATE(378)] = 22953, + [SMALL_STATE(379)] = 23003, + [SMALL_STATE(380)] = 23053, + [SMALL_STATE(381)] = 23103, + [SMALL_STATE(382)] = 23153, + [SMALL_STATE(383)] = 23203, + [SMALL_STATE(384)] = 23253, + [SMALL_STATE(385)] = 23303, + [SMALL_STATE(386)] = 23353, + [SMALL_STATE(387)] = 23403, + [SMALL_STATE(388)] = 23453, + [SMALL_STATE(389)] = 23503, + [SMALL_STATE(390)] = 23553, + [SMALL_STATE(391)] = 23603, + [SMALL_STATE(392)] = 23653, + [SMALL_STATE(393)] = 23703, + [SMALL_STATE(394)] = 23753, + [SMALL_STATE(395)] = 23803, + [SMALL_STATE(396)] = 23853, + [SMALL_STATE(397)] = 23903, + [SMALL_STATE(398)] = 23953, + [SMALL_STATE(399)] = 24003, + [SMALL_STATE(400)] = 24053, + [SMALL_STATE(401)] = 24103, + [SMALL_STATE(402)] = 24153, + [SMALL_STATE(403)] = 24203, + [SMALL_STATE(404)] = 24253, + [SMALL_STATE(405)] = 24303, + [SMALL_STATE(406)] = 24353, + [SMALL_STATE(407)] = 24403, + [SMALL_STATE(408)] = 24453, + [SMALL_STATE(409)] = 24503, + [SMALL_STATE(410)] = 24553, + [SMALL_STATE(411)] = 24603, + [SMALL_STATE(412)] = 24653, + [SMALL_STATE(413)] = 24703, + [SMALL_STATE(414)] = 24753, + [SMALL_STATE(415)] = 24803, + [SMALL_STATE(416)] = 24853, + [SMALL_STATE(417)] = 24903, + [SMALL_STATE(418)] = 24953, + [SMALL_STATE(419)] = 25003, + [SMALL_STATE(420)] = 25053, + [SMALL_STATE(421)] = 25103, + [SMALL_STATE(422)] = 25153, + [SMALL_STATE(423)] = 25203, + [SMALL_STATE(424)] = 25253, + [SMALL_STATE(425)] = 25303, + [SMALL_STATE(426)] = 25353, + [SMALL_STATE(427)] = 25403, + [SMALL_STATE(428)] = 25453, + [SMALL_STATE(429)] = 25503, + [SMALL_STATE(430)] = 25553, + [SMALL_STATE(431)] = 25603, + [SMALL_STATE(432)] = 25653, + [SMALL_STATE(433)] = 25703, + [SMALL_STATE(434)] = 25753, + [SMALL_STATE(435)] = 25803, + [SMALL_STATE(436)] = 25853, + [SMALL_STATE(437)] = 25903, + [SMALL_STATE(438)] = 25953, + [SMALL_STATE(439)] = 26003, + [SMALL_STATE(440)] = 26053, + [SMALL_STATE(441)] = 26103, + [SMALL_STATE(442)] = 26153, + [SMALL_STATE(443)] = 26203, + [SMALL_STATE(444)] = 26253, + [SMALL_STATE(445)] = 26303, + [SMALL_STATE(446)] = 26353, + [SMALL_STATE(447)] = 26403, + [SMALL_STATE(448)] = 26453, + [SMALL_STATE(449)] = 26503, + [SMALL_STATE(450)] = 26553, + [SMALL_STATE(451)] = 26603, + [SMALL_STATE(452)] = 26653, + [SMALL_STATE(453)] = 26703, + [SMALL_STATE(454)] = 26753, + [SMALL_STATE(455)] = 26803, + [SMALL_STATE(456)] = 26853, + [SMALL_STATE(457)] = 26903, + [SMALL_STATE(458)] = 26953, + [SMALL_STATE(459)] = 27003, + [SMALL_STATE(460)] = 27053, + [SMALL_STATE(461)] = 27103, [SMALL_STATE(462)] = 27153, - [SMALL_STATE(463)] = 27202, - [SMALL_STATE(464)] = 27251, - [SMALL_STATE(465)] = 27300, + [SMALL_STATE(463)] = 27236, + [SMALL_STATE(464)] = 27285, + [SMALL_STATE(465)] = 27334, [SMALL_STATE(466)] = 27383, [SMALL_STATE(467)] = 27432, [SMALL_STATE(468)] = 27481, - [SMALL_STATE(469)] = 27530, + [SMALL_STATE(469)] = 27564, [SMALL_STATE(470)] = 27613, [SMALL_STATE(471)] = 27662, [SMALL_STATE(472)] = 27742, - [SMALL_STATE(473)] = 27798, - [SMALL_STATE(474)] = 27878, - [SMALL_STATE(475)] = 27958, - [SMALL_STATE(476)] = 28038, - [SMALL_STATE(477)] = 28118, - [SMALL_STATE(478)] = 28198, - [SMALL_STATE(479)] = 28278, - [SMALL_STATE(480)] = 28334, - [SMALL_STATE(481)] = 28420, - [SMALL_STATE(482)] = 28500, - [SMALL_STATE(483)] = 28580, - [SMALL_STATE(484)] = 28660, - [SMALL_STATE(485)] = 28740, - [SMALL_STATE(486)] = 28796, - [SMALL_STATE(487)] = 28843, - [SMALL_STATE(488)] = 28892, - [SMALL_STATE(489)] = 28939, - [SMALL_STATE(490)] = 28986, - [SMALL_STATE(491)] = 29033, - [SMALL_STATE(492)] = 29080, - [SMALL_STATE(493)] = 29161, - [SMALL_STATE(494)] = 29208, - [SMALL_STATE(495)] = 29255, - [SMALL_STATE(496)] = 29302, - [SMALL_STATE(497)] = 29348, - [SMALL_STATE(498)] = 29394, - [SMALL_STATE(499)] = 29440, - [SMALL_STATE(500)] = 29486, - [SMALL_STATE(501)] = 29546, - [SMALL_STATE(502)] = 29629, - [SMALL_STATE(503)] = 29712, - [SMALL_STATE(504)] = 29764, - [SMALL_STATE(505)] = 29816, - [SMALL_STATE(506)] = 29868, - [SMALL_STATE(507)] = 29920, - [SMALL_STATE(508)] = 29988, - [SMALL_STATE(509)] = 30056, - [SMALL_STATE(510)] = 30108, - [SMALL_STATE(511)] = 30173, - [SMALL_STATE(512)] = 30215, - [SMALL_STATE(513)] = 30260, - [SMALL_STATE(514)] = 30306, - [SMALL_STATE(515)] = 30354, - [SMALL_STATE(516)] = 30401, - [SMALL_STATE(517)] = 30440, - [SMALL_STATE(518)] = 30482, - [SMALL_STATE(519)] = 30528, - [SMALL_STATE(520)] = 30581, - [SMALL_STATE(521)] = 30632, - [SMALL_STATE(522)] = 30685, - [SMALL_STATE(523)] = 30730, - [SMALL_STATE(524)] = 30783, - [SMALL_STATE(525)] = 30836, - [SMALL_STATE(526)] = 30883, - [SMALL_STATE(527)] = 30939, - [SMALL_STATE(528)] = 30995, - [SMALL_STATE(529)] = 31031, - [SMALL_STATE(530)] = 31087, - [SMALL_STATE(531)] = 31141, - [SMALL_STATE(532)] = 31197, - [SMALL_STATE(533)] = 31251, - [SMALL_STATE(534)] = 31307, - [SMALL_STATE(535)] = 31364, - [SMALL_STATE(536)] = 31403, - [SMALL_STATE(537)] = 31460, - [SMALL_STATE(538)] = 31517, - [SMALL_STATE(539)] = 31574, - [SMALL_STATE(540)] = 31631, - [SMALL_STATE(541)] = 31685, - [SMALL_STATE(542)] = 31739, - [SMALL_STATE(543)] = 31793, - [SMALL_STATE(544)] = 31847, - [SMALL_STATE(545)] = 31901, - [SMALL_STATE(546)] = 31955, - [SMALL_STATE(547)] = 31987, - [SMALL_STATE(548)] = 32023, - [SMALL_STATE(549)] = 32074, - [SMALL_STATE(550)] = 32125, - [SMALL_STATE(551)] = 32154, - [SMALL_STATE(552)] = 32183, - [SMALL_STATE(553)] = 32220, - [SMALL_STATE(554)] = 32275, + [SMALL_STATE(473)] = 27822, + [SMALL_STATE(474)] = 27902, + [SMALL_STATE(475)] = 27982, + [SMALL_STATE(476)] = 28062, + [SMALL_STATE(477)] = 28142, + [SMALL_STATE(478)] = 28222, + [SMALL_STATE(479)] = 28302, + [SMALL_STATE(480)] = 28358, + [SMALL_STATE(481)] = 28414, + [SMALL_STATE(482)] = 28494, + [SMALL_STATE(483)] = 28574, + [SMALL_STATE(484)] = 28654, + [SMALL_STATE(485)] = 28710, + [SMALL_STATE(486)] = 28757, + [SMALL_STATE(487)] = 28806, + [SMALL_STATE(488)] = 28853, + [SMALL_STATE(489)] = 28900, + [SMALL_STATE(490)] = 28947, + [SMALL_STATE(491)] = 28994, + [SMALL_STATE(492)] = 29041, + [SMALL_STATE(493)] = 29088, + [SMALL_STATE(494)] = 29135, + [SMALL_STATE(495)] = 29181, + [SMALL_STATE(496)] = 29227, + [SMALL_STATE(497)] = 29311, + [SMALL_STATE(498)] = 29357, + [SMALL_STATE(499)] = 29403, + [SMALL_STATE(500)] = 29463, + [SMALL_STATE(501)] = 29542, + [SMALL_STATE(502)] = 29594, + [SMALL_STATE(503)] = 29646, + [SMALL_STATE(504)] = 29698, + [SMALL_STATE(505)] = 29766, + [SMALL_STATE(506)] = 29834, + [SMALL_STATE(507)] = 29886, + [SMALL_STATE(508)] = 29938, + [SMALL_STATE(509)] = 30019, + [SMALL_STATE(510)] = 30084, + [SMALL_STATE(511)] = 30165, + [SMALL_STATE(512)] = 30207, + [SMALL_STATE(513)] = 30252, + [SMALL_STATE(514)] = 30298, + [SMALL_STATE(515)] = 30346, + [SMALL_STATE(516)] = 30393, + [SMALL_STATE(517)] = 30432, + [SMALL_STATE(518)] = 30478, + [SMALL_STATE(519)] = 30520, + [SMALL_STATE(520)] = 30573, + [SMALL_STATE(521)] = 30618, + [SMALL_STATE(522)] = 30669, + [SMALL_STATE(523)] = 30722, + [SMALL_STATE(524)] = 30775, + [SMALL_STATE(525)] = 30828, + [SMALL_STATE(526)] = 30875, + [SMALL_STATE(527)] = 30931, + [SMALL_STATE(528)] = 30967, + [SMALL_STATE(529)] = 31021, + [SMALL_STATE(530)] = 31077, + [SMALL_STATE(531)] = 31133, + [SMALL_STATE(532)] = 31189, + [SMALL_STATE(533)] = 31243, + [SMALL_STATE(534)] = 31299, + [SMALL_STATE(535)] = 31356, + [SMALL_STATE(536)] = 31395, + [SMALL_STATE(537)] = 31452, + [SMALL_STATE(538)] = 31509, + [SMALL_STATE(539)] = 31566, + [SMALL_STATE(540)] = 31623, + [SMALL_STATE(541)] = 31659, + [SMALL_STATE(542)] = 31713, + [SMALL_STATE(543)] = 31767, + [SMALL_STATE(544)] = 31821, + [SMALL_STATE(545)] = 31875, + [SMALL_STATE(546)] = 31929, + [SMALL_STATE(547)] = 31961, + [SMALL_STATE(548)] = 32015, + [SMALL_STATE(549)] = 32066, + [SMALL_STATE(550)] = 32113, + [SMALL_STATE(551)] = 32164, + [SMALL_STATE(552)] = 32193, + [SMALL_STATE(553)] = 32244, + [SMALL_STATE(554)] = 32281, [SMALL_STATE(555)] = 32322, - [SMALL_STATE(556)] = 32373, - [SMALL_STATE(557)] = 32424, - [SMALL_STATE(558)] = 32475, - [SMALL_STATE(559)] = 32504, - [SMALL_STATE(560)] = 32555, - [SMALL_STATE(561)] = 32596, - [SMALL_STATE(562)] = 32645, - [SMALL_STATE(563)] = 32692, - [SMALL_STATE(564)] = 32744, - [SMALL_STATE(565)] = 32775, - [SMALL_STATE(566)] = 32806, - [SMALL_STATE(567)] = 32853, - [SMALL_STATE(568)] = 32900, - [SMALL_STATE(569)] = 32943, - [SMALL_STATE(570)] = 32992, - [SMALL_STATE(571)] = 33021, - [SMALL_STATE(572)] = 33064, - [SMALL_STATE(573)] = 33115, - [SMALL_STATE(574)] = 33146, - [SMALL_STATE(575)] = 33196, - [SMALL_STATE(576)] = 33222, - [SMALL_STATE(577)] = 33262, - [SMALL_STATE(578)] = 33302, - [SMALL_STATE(579)] = 33348, - [SMALL_STATE(580)] = 33374, - [SMALL_STATE(581)] = 33400, - [SMALL_STATE(582)] = 33426, - [SMALL_STATE(583)] = 33472, - [SMALL_STATE(584)] = 33498, - [SMALL_STATE(585)] = 33535, - [SMALL_STATE(586)] = 33582, - [SMALL_STATE(587)] = 33611, - [SMALL_STATE(588)] = 33640, - [SMALL_STATE(589)] = 33669, - [SMALL_STATE(590)] = 33698, - [SMALL_STATE(591)] = 33727, - [SMALL_STATE(592)] = 33756, - [SMALL_STATE(593)] = 33790, - [SMALL_STATE(594)] = 33836, - [SMALL_STATE(595)] = 33860, - [SMALL_STATE(596)] = 33884, - [SMALL_STATE(597)] = 33908, - [SMALL_STATE(598)] = 33942, - [SMALL_STATE(599)] = 33966, - [SMALL_STATE(600)] = 34012, - [SMALL_STATE(601)] = 34058, - [SMALL_STATE(602)] = 34102, - [SMALL_STATE(603)] = 34126, - [SMALL_STATE(604)] = 34172, - [SMALL_STATE(605)] = 34213, - [SMALL_STATE(606)] = 34254, - [SMALL_STATE(607)] = 34295, - [SMALL_STATE(608)] = 34336, - [SMALL_STATE(609)] = 34363, - [SMALL_STATE(610)] = 34390, - [SMALL_STATE(611)] = 34433, - [SMALL_STATE(612)] = 34473, + [SMALL_STATE(556)] = 32351, + [SMALL_STATE(557)] = 32402, + [SMALL_STATE(558)] = 32449, + [SMALL_STATE(559)] = 32498, + [SMALL_STATE(560)] = 32549, + [SMALL_STATE(561)] = 32600, + [SMALL_STATE(562)] = 32629, + [SMALL_STATE(563)] = 32672, + [SMALL_STATE(564)] = 32719, + [SMALL_STATE(565)] = 32762, + [SMALL_STATE(566)] = 32793, + [SMALL_STATE(567)] = 32846, + [SMALL_STATE(568)] = 32877, + [SMALL_STATE(569)] = 32906, + [SMALL_STATE(570)] = 32953, + [SMALL_STATE(571)] = 33004, + [SMALL_STATE(572)] = 33035, + [SMALL_STATE(573)] = 33075, + [SMALL_STATE(574)] = 33101, + [SMALL_STATE(575)] = 33141, + [SMALL_STATE(576)] = 33191, + [SMALL_STATE(577)] = 33217, + [SMALL_STATE(578)] = 33243, + [SMALL_STATE(579)] = 33293, + [SMALL_STATE(580)] = 33343, + [SMALL_STATE(581)] = 33369, + [SMALL_STATE(582)] = 33395, + [SMALL_STATE(583)] = 33442, + [SMALL_STATE(584)] = 33471, + [SMALL_STATE(585)] = 33520, + [SMALL_STATE(586)] = 33557, + [SMALL_STATE(587)] = 33586, + [SMALL_STATE(588)] = 33615, + [SMALL_STATE(589)] = 33644, + [SMALL_STATE(590)] = 33691, + [SMALL_STATE(591)] = 33720, + [SMALL_STATE(592)] = 33749, + [SMALL_STATE(593)] = 33783, + [SMALL_STATE(594)] = 33827, + [SMALL_STATE(595)] = 33871, + [SMALL_STATE(596)] = 33895, + [SMALL_STATE(597)] = 33919, + [SMALL_STATE(598)] = 33965, + [SMALL_STATE(599)] = 33989, + [SMALL_STATE(600)] = 34033, + [SMALL_STATE(601)] = 34079, + [SMALL_STATE(602)] = 34103, + [SMALL_STATE(603)] = 34127, + [SMALL_STATE(604)] = 34173, + [SMALL_STATE(605)] = 34219, + [SMALL_STATE(606)] = 34253, + [SMALL_STATE(607)] = 34294, + [SMALL_STATE(608)] = 34321, + [SMALL_STATE(609)] = 34362, + [SMALL_STATE(610)] = 34389, + [SMALL_STATE(611)] = 34430, + [SMALL_STATE(612)] = 34471, [SMALL_STATE(613)] = 34511, [SMALL_STATE(614)] = 34551, [SMALL_STATE(615)] = 34591, [SMALL_STATE(616)] = 34631, [SMALL_STATE(617)] = 34671, - [SMALL_STATE(618)] = 34692, - [SMALL_STATE(619)] = 34727, - [SMALL_STATE(620)] = 34764, - [SMALL_STATE(621)] = 34799, - [SMALL_STATE(622)] = 34834, - [SMALL_STATE(623)] = 34871, - [SMALL_STATE(624)] = 34892, - [SMALL_STATE(625)] = 34929, - [SMALL_STATE(626)] = 34966, - [SMALL_STATE(627)] = 35003, - [SMALL_STATE(628)] = 35024, - [SMALL_STATE(629)] = 35061, - [SMALL_STATE(630)] = 35098, - [SMALL_STATE(631)] = 35131, - [SMALL_STATE(632)] = 35166, - [SMALL_STATE(633)] = 35201, - [SMALL_STATE(634)] = 35236, - [SMALL_STATE(635)] = 35271, - [SMALL_STATE(636)] = 35292, - [SMALL_STATE(637)] = 35329, - [SMALL_STATE(638)] = 35350, - [SMALL_STATE(639)] = 35387, - [SMALL_STATE(640)] = 35419, - [SMALL_STATE(641)] = 35453, - [SMALL_STATE(642)] = 35487, - [SMALL_STATE(643)] = 35521, - [SMALL_STATE(644)] = 35555, - [SMALL_STATE(645)] = 35589, - [SMALL_STATE(646)] = 35621, - [SMALL_STATE(647)] = 35653, - [SMALL_STATE(648)] = 35687, - [SMALL_STATE(649)] = 35719, - [SMALL_STATE(650)] = 35753, - [SMALL_STATE(651)] = 35785, - [SMALL_STATE(652)] = 35819, - [SMALL_STATE(653)] = 35853, - [SMALL_STATE(654)] = 35885, - [SMALL_STATE(655)] = 35919, - [SMALL_STATE(656)] = 35951, - [SMALL_STATE(657)] = 35983, - [SMALL_STATE(658)] = 36017, - [SMALL_STATE(659)] = 36051, - [SMALL_STATE(660)] = 36085, - [SMALL_STATE(661)] = 36117, - [SMALL_STATE(662)] = 36149, - [SMALL_STATE(663)] = 36183, - [SMALL_STATE(664)] = 36208, - [SMALL_STATE(665)] = 36229, - [SMALL_STATE(666)] = 36256, - [SMALL_STATE(667)] = 36287, - [SMALL_STATE(668)] = 36310, - [SMALL_STATE(669)] = 36341, - [SMALL_STATE(670)] = 36366, - [SMALL_STATE(671)] = 36389, - [SMALL_STATE(672)] = 36418, - [SMALL_STATE(673)] = 36443, - [SMALL_STATE(674)] = 36468, - [SMALL_STATE(675)] = 36491, - [SMALL_STATE(676)] = 36516, - [SMALL_STATE(677)] = 36539, - [SMALL_STATE(678)] = 36562, - [SMALL_STATE(679)] = 36591, - [SMALL_STATE(680)] = 36616, - [SMALL_STATE(681)] = 36643, - [SMALL_STATE(682)] = 36674, - [SMALL_STATE(683)] = 36705, - [SMALL_STATE(684)] = 36733, - [SMALL_STATE(685)] = 36761, - [SMALL_STATE(686)] = 36789, - [SMALL_STATE(687)] = 36817, - [SMALL_STATE(688)] = 36845, - [SMALL_STATE(689)] = 36873, - [SMALL_STATE(690)] = 36901, - [SMALL_STATE(691)] = 36929, - [SMALL_STATE(692)] = 36957, - [SMALL_STATE(693)] = 36985, - [SMALL_STATE(694)] = 37013, - [SMALL_STATE(695)] = 37041, - [SMALL_STATE(696)] = 37069, - [SMALL_STATE(697)] = 37097, - [SMALL_STATE(698)] = 37125, - [SMALL_STATE(699)] = 37153, - [SMALL_STATE(700)] = 37181, - [SMALL_STATE(701)] = 37209, - [SMALL_STATE(702)] = 37227, - [SMALL_STATE(703)] = 37255, - [SMALL_STATE(704)] = 37283, - [SMALL_STATE(705)] = 37311, - [SMALL_STATE(706)] = 37339, - [SMALL_STATE(707)] = 37367, - [SMALL_STATE(708)] = 37395, - [SMALL_STATE(709)] = 37423, - [SMALL_STATE(710)] = 37451, - [SMALL_STATE(711)] = 37479, - [SMALL_STATE(712)] = 37507, - [SMALL_STATE(713)] = 37535, - [SMALL_STATE(714)] = 37563, - [SMALL_STATE(715)] = 37591, - [SMALL_STATE(716)] = 37619, - [SMALL_STATE(717)] = 37647, - [SMALL_STATE(718)] = 37675, - [SMALL_STATE(719)] = 37703, - [SMALL_STATE(720)] = 37731, - [SMALL_STATE(721)] = 37759, - [SMALL_STATE(722)] = 37787, - [SMALL_STATE(723)] = 37815, - [SMALL_STATE(724)] = 37843, - [SMALL_STATE(725)] = 37871, - [SMALL_STATE(726)] = 37899, - [SMALL_STATE(727)] = 37927, - [SMALL_STATE(728)] = 37955, - [SMALL_STATE(729)] = 37983, - [SMALL_STATE(730)] = 38011, - [SMALL_STATE(731)] = 38039, - [SMALL_STATE(732)] = 38067, - [SMALL_STATE(733)] = 38095, - [SMALL_STATE(734)] = 38123, + [SMALL_STATE(618)] = 34709, + [SMALL_STATE(619)] = 34744, + [SMALL_STATE(620)] = 34779, + [SMALL_STATE(621)] = 34814, + [SMALL_STATE(622)] = 34851, + [SMALL_STATE(623)] = 34888, + [SMALL_STATE(624)] = 34909, + [SMALL_STATE(625)] = 34946, + [SMALL_STATE(626)] = 34983, + [SMALL_STATE(627)] = 35020, + [SMALL_STATE(628)] = 35057, + [SMALL_STATE(629)] = 35094, + [SMALL_STATE(630)] = 35129, + [SMALL_STATE(631)] = 35150, + [SMALL_STATE(632)] = 35171, + [SMALL_STATE(633)] = 35206, + [SMALL_STATE(634)] = 35243, + [SMALL_STATE(635)] = 35278, + [SMALL_STATE(636)] = 35315, + [SMALL_STATE(637)] = 35348, + [SMALL_STATE(638)] = 35369, + [SMALL_STATE(639)] = 35404, + [SMALL_STATE(640)] = 35425, + [SMALL_STATE(641)] = 35457, + [SMALL_STATE(642)] = 35491, + [SMALL_STATE(643)] = 35525, + [SMALL_STATE(644)] = 35559, + [SMALL_STATE(645)] = 35591, + [SMALL_STATE(646)] = 35625, + [SMALL_STATE(647)] = 35657, + [SMALL_STATE(648)] = 35691, + [SMALL_STATE(649)] = 35725, + [SMALL_STATE(650)] = 35759, + [SMALL_STATE(651)] = 35793, + [SMALL_STATE(652)] = 35827, + [SMALL_STATE(653)] = 35861, + [SMALL_STATE(654)] = 35893, + [SMALL_STATE(655)] = 35925, + [SMALL_STATE(656)] = 35959, + [SMALL_STATE(657)] = 35991, + [SMALL_STATE(658)] = 36023, + [SMALL_STATE(659)] = 36055, + [SMALL_STATE(660)] = 36089, + [SMALL_STATE(661)] = 36121, + [SMALL_STATE(662)] = 36155, + [SMALL_STATE(663)] = 36189, + [SMALL_STATE(664)] = 36221, + [SMALL_STATE(665)] = 36248, + [SMALL_STATE(666)] = 36271, + [SMALL_STATE(667)] = 36292, + [SMALL_STATE(668)] = 36323, + [SMALL_STATE(669)] = 36346, + [SMALL_STATE(670)] = 36371, + [SMALL_STATE(671)] = 36400, + [SMALL_STATE(672)] = 36425, + [SMALL_STATE(673)] = 36450, + [SMALL_STATE(674)] = 36475, + [SMALL_STATE(675)] = 36502, + [SMALL_STATE(676)] = 36527, + [SMALL_STATE(677)] = 36558, + [SMALL_STATE(678)] = 36589, + [SMALL_STATE(679)] = 36620, + [SMALL_STATE(680)] = 36649, + [SMALL_STATE(681)] = 36672, + [SMALL_STATE(682)] = 36697, + [SMALL_STATE(683)] = 36725, + [SMALL_STATE(684)] = 36753, + [SMALL_STATE(685)] = 36781, + [SMALL_STATE(686)] = 36809, + [SMALL_STATE(687)] = 36837, + [SMALL_STATE(688)] = 36865, + [SMALL_STATE(689)] = 36893, + [SMALL_STATE(690)] = 36921, + [SMALL_STATE(691)] = 36949, + [SMALL_STATE(692)] = 36977, + [SMALL_STATE(693)] = 37005, + [SMALL_STATE(694)] = 37033, + [SMALL_STATE(695)] = 37061, + [SMALL_STATE(696)] = 37089, + [SMALL_STATE(697)] = 37117, + [SMALL_STATE(698)] = 37145, + [SMALL_STATE(699)] = 37173, + [SMALL_STATE(700)] = 37201, + [SMALL_STATE(701)] = 37229, + [SMALL_STATE(702)] = 37257, + [SMALL_STATE(703)] = 37285, + [SMALL_STATE(704)] = 37313, + [SMALL_STATE(705)] = 37341, + [SMALL_STATE(706)] = 37369, + [SMALL_STATE(707)] = 37397, + [SMALL_STATE(708)] = 37425, + [SMALL_STATE(709)] = 37453, + [SMALL_STATE(710)] = 37481, + [SMALL_STATE(711)] = 37509, + [SMALL_STATE(712)] = 37531, + [SMALL_STATE(713)] = 37553, + [SMALL_STATE(714)] = 37581, + [SMALL_STATE(715)] = 37609, + [SMALL_STATE(716)] = 37637, + [SMALL_STATE(717)] = 37665, + [SMALL_STATE(718)] = 37693, + [SMALL_STATE(719)] = 37715, + [SMALL_STATE(720)] = 37733, + [SMALL_STATE(721)] = 37761, + [SMALL_STATE(722)] = 37789, + [SMALL_STATE(723)] = 37817, + [SMALL_STATE(724)] = 37845, + [SMALL_STATE(725)] = 37873, + [SMALL_STATE(726)] = 37901, + [SMALL_STATE(727)] = 37929, + [SMALL_STATE(728)] = 37957, + [SMALL_STATE(729)] = 37985, + [SMALL_STATE(730)] = 38013, + [SMALL_STATE(731)] = 38033, + [SMALL_STATE(732)] = 38061, + [SMALL_STATE(733)] = 38089, + [SMALL_STATE(734)] = 38117, [SMALL_STATE(735)] = 38145, [SMALL_STATE(736)] = 38173, [SMALL_STATE(737)] = 38201, @@ -56289,1180 +56426,1191 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(741)] = 38313, [SMALL_STATE(742)] = 38341, [SMALL_STATE(743)] = 38369, - [SMALL_STATE(744)] = 38397, - [SMALL_STATE(745)] = 38425, - [SMALL_STATE(746)] = 38453, - [SMALL_STATE(747)] = 38478, - [SMALL_STATE(748)] = 38503, - [SMALL_STATE(749)] = 38528, - [SMALL_STATE(750)] = 38553, - [SMALL_STATE(751)] = 38572, - [SMALL_STATE(752)] = 38597, - [SMALL_STATE(753)] = 38622, - [SMALL_STATE(754)] = 38647, - [SMALL_STATE(755)] = 38666, - [SMALL_STATE(756)] = 38685, - [SMALL_STATE(757)] = 38710, - [SMALL_STATE(758)] = 38735, - [SMALL_STATE(759)] = 38760, - [SMALL_STATE(760)] = 38779, - [SMALL_STATE(761)] = 38804, - [SMALL_STATE(762)] = 38829, - [SMALL_STATE(763)] = 38854, - [SMALL_STATE(764)] = 38879, - [SMALL_STATE(765)] = 38904, - [SMALL_STATE(766)] = 38929, - [SMALL_STATE(767)] = 38954, - [SMALL_STATE(768)] = 38979, - [SMALL_STATE(769)] = 39004, - [SMALL_STATE(770)] = 39029, - [SMALL_STATE(771)] = 39054, - [SMALL_STATE(772)] = 39079, - [SMALL_STATE(773)] = 39104, - [SMALL_STATE(774)] = 39129, - [SMALL_STATE(775)] = 39154, - [SMALL_STATE(776)] = 39179, - [SMALL_STATE(777)] = 39204, - [SMALL_STATE(778)] = 39229, - [SMALL_STATE(779)] = 39254, - [SMALL_STATE(780)] = 39279, - [SMALL_STATE(781)] = 39304, - [SMALL_STATE(782)] = 39329, - [SMALL_STATE(783)] = 39354, - [SMALL_STATE(784)] = 39379, - [SMALL_STATE(785)] = 39404, - [SMALL_STATE(786)] = 39429, - [SMALL_STATE(787)] = 39454, - [SMALL_STATE(788)] = 39473, - [SMALL_STATE(789)] = 39492, - [SMALL_STATE(790)] = 39517, - [SMALL_STATE(791)] = 39542, - [SMALL_STATE(792)] = 39567, - [SMALL_STATE(793)] = 39592, - [SMALL_STATE(794)] = 39621, - [SMALL_STATE(795)] = 39646, - [SMALL_STATE(796)] = 39671, - [SMALL_STATE(797)] = 39696, - [SMALL_STATE(798)] = 39721, - [SMALL_STATE(799)] = 39740, - [SMALL_STATE(800)] = 39765, - [SMALL_STATE(801)] = 39790, - [SMALL_STATE(802)] = 39809, - [SMALL_STATE(803)] = 39834, - [SMALL_STATE(804)] = 39859, - [SMALL_STATE(805)] = 39888, - [SMALL_STATE(806)] = 39913, - [SMALL_STATE(807)] = 39938, - [SMALL_STATE(808)] = 39963, - [SMALL_STATE(809)] = 39988, - [SMALL_STATE(810)] = 40013, - [SMALL_STATE(811)] = 40038, - [SMALL_STATE(812)] = 40067, - [SMALL_STATE(813)] = 40092, - [SMALL_STATE(814)] = 40108, - [SMALL_STATE(815)] = 40124, - [SMALL_STATE(816)] = 40140, - [SMALL_STATE(817)] = 40156, - [SMALL_STATE(818)] = 40172, - [SMALL_STATE(819)] = 40197, - [SMALL_STATE(820)] = 40222, - [SMALL_STATE(821)] = 40239, - [SMALL_STATE(822)] = 40266, - [SMALL_STATE(823)] = 40282, - [SMALL_STATE(824)] = 40298, - [SMALL_STATE(825)] = 40314, - [SMALL_STATE(826)] = 40330, - [SMALL_STATE(827)] = 40346, - [SMALL_STATE(828)] = 40362, - [SMALL_STATE(829)] = 40390, - [SMALL_STATE(830)] = 40406, - [SMALL_STATE(831)] = 40432, - [SMALL_STATE(832)] = 40448, - [SMALL_STATE(833)] = 40464, - [SMALL_STATE(834)] = 40480, - [SMALL_STATE(835)] = 40504, - [SMALL_STATE(836)] = 40520, - [SMALL_STATE(837)] = 40536, - [SMALL_STATE(838)] = 40560, - [SMALL_STATE(839)] = 40576, - [SMALL_STATE(840)] = 40592, - [SMALL_STATE(841)] = 40608, - [SMALL_STATE(842)] = 40624, - [SMALL_STATE(843)] = 40640, - [SMALL_STATE(844)] = 40656, - [SMALL_STATE(845)] = 40680, - [SMALL_STATE(846)] = 40708, - [SMALL_STATE(847)] = 40732, - [SMALL_STATE(848)] = 40748, - [SMALL_STATE(849)] = 40774, - [SMALL_STATE(850)] = 40790, - [SMALL_STATE(851)] = 40812, - [SMALL_STATE(852)] = 40828, - [SMALL_STATE(853)] = 40844, - [SMALL_STATE(854)] = 40860, - [SMALL_STATE(855)] = 40876, - [SMALL_STATE(856)] = 40892, - [SMALL_STATE(857)] = 40908, - [SMALL_STATE(858)] = 40924, - [SMALL_STATE(859)] = 40940, - [SMALL_STATE(860)] = 40968, - [SMALL_STATE(861)] = 40984, - [SMALL_STATE(862)] = 41000, - [SMALL_STATE(863)] = 41024, - [SMALL_STATE(864)] = 41046, - [SMALL_STATE(865)] = 41062, - [SMALL_STATE(866)] = 41086, - [SMALL_STATE(867)] = 41102, - [SMALL_STATE(868)] = 41126, - [SMALL_STATE(869)] = 41142, - [SMALL_STATE(870)] = 41158, - [SMALL_STATE(871)] = 41174, - [SMALL_STATE(872)] = 41190, - [SMALL_STATE(873)] = 41206, - [SMALL_STATE(874)] = 41222, - [SMALL_STATE(875)] = 41235, - [SMALL_STATE(876)] = 41258, - [SMALL_STATE(877)] = 41271, - [SMALL_STATE(878)] = 41294, - [SMALL_STATE(879)] = 41317, - [SMALL_STATE(880)] = 41342, - [SMALL_STATE(881)] = 41367, - [SMALL_STATE(882)] = 41390, - [SMALL_STATE(883)] = 41413, - [SMALL_STATE(884)] = 41432, - [SMALL_STATE(885)] = 41455, - [SMALL_STATE(886)] = 41476, - [SMALL_STATE(887)] = 41499, - [SMALL_STATE(888)] = 41512, - [SMALL_STATE(889)] = 41535, - [SMALL_STATE(890)] = 41556, - [SMALL_STATE(891)] = 41569, - [SMALL_STATE(892)] = 41592, - [SMALL_STATE(893)] = 41605, - [SMALL_STATE(894)] = 41628, - [SMALL_STATE(895)] = 41651, - [SMALL_STATE(896)] = 41673, - [SMALL_STATE(897)] = 41695, - [SMALL_STATE(898)] = 41717, - [SMALL_STATE(899)] = 41731, - [SMALL_STATE(900)] = 41749, - [SMALL_STATE(901)] = 41771, - [SMALL_STATE(902)] = 41793, - [SMALL_STATE(903)] = 41815, - [SMALL_STATE(904)] = 41837, - [SMALL_STATE(905)] = 41859, - [SMALL_STATE(906)] = 41873, - [SMALL_STATE(907)] = 41887, - [SMALL_STATE(908)] = 41909, - [SMALL_STATE(909)] = 41925, - [SMALL_STATE(910)] = 41945, - [SMALL_STATE(911)] = 41965, - [SMALL_STATE(912)] = 41987, - [SMALL_STATE(913)] = 42001, - [SMALL_STATE(914)] = 42013, - [SMALL_STATE(915)] = 42027, - [SMALL_STATE(916)] = 42045, - [SMALL_STATE(917)] = 42063, - [SMALL_STATE(918)] = 42085, - [SMALL_STATE(919)] = 42107, - [SMALL_STATE(920)] = 42121, - [SMALL_STATE(921)] = 42143, - [SMALL_STATE(922)] = 42165, - [SMALL_STATE(923)] = 42183, - [SMALL_STATE(924)] = 42205, - [SMALL_STATE(925)] = 42227, - [SMALL_STATE(926)] = 42249, - [SMALL_STATE(927)] = 42267, - [SMALL_STATE(928)] = 42289, - [SMALL_STATE(929)] = 42305, - [SMALL_STATE(930)] = 42327, - [SMALL_STATE(931)] = 42349, - [SMALL_STATE(932)] = 42369, - [SMALL_STATE(933)] = 42391, - [SMALL_STATE(934)] = 42413, - [SMALL_STATE(935)] = 42435, - [SMALL_STATE(936)] = 42457, - [SMALL_STATE(937)] = 42479, - [SMALL_STATE(938)] = 42501, - [SMALL_STATE(939)] = 42519, - [SMALL_STATE(940)] = 42539, - [SMALL_STATE(941)] = 42559, - [SMALL_STATE(942)] = 42581, - [SMALL_STATE(943)] = 42599, - [SMALL_STATE(944)] = 42621, - [SMALL_STATE(945)] = 42643, - [SMALL_STATE(946)] = 42660, - [SMALL_STATE(947)] = 42679, - [SMALL_STATE(948)] = 42694, - [SMALL_STATE(949)] = 42713, - [SMALL_STATE(950)] = 42730, - [SMALL_STATE(951)] = 42749, - [SMALL_STATE(952)] = 42768, - [SMALL_STATE(953)] = 42783, - [SMALL_STATE(954)] = 42802, - [SMALL_STATE(955)] = 42819, - [SMALL_STATE(956)] = 42836, - [SMALL_STATE(957)] = 42851, - [SMALL_STATE(958)] = 42870, - [SMALL_STATE(959)] = 42889, - [SMALL_STATE(960)] = 42908, - [SMALL_STATE(961)] = 42925, - [SMALL_STATE(962)] = 42944, - [SMALL_STATE(963)] = 42963, - [SMALL_STATE(964)] = 42982, - [SMALL_STATE(965)] = 43001, - [SMALL_STATE(966)] = 43020, - [SMALL_STATE(967)] = 43039, - [SMALL_STATE(968)] = 43058, - [SMALL_STATE(969)] = 43073, - [SMALL_STATE(970)] = 43092, - [SMALL_STATE(971)] = 43111, - [SMALL_STATE(972)] = 43128, - [SMALL_STATE(973)] = 43147, - [SMALL_STATE(974)] = 43162, - [SMALL_STATE(975)] = 43177, - [SMALL_STATE(976)] = 43196, - [SMALL_STATE(977)] = 43211, - [SMALL_STATE(978)] = 43230, - [SMALL_STATE(979)] = 43247, - [SMALL_STATE(980)] = 43264, - [SMALL_STATE(981)] = 43281, - [SMALL_STATE(982)] = 43296, - [SMALL_STATE(983)] = 43315, - [SMALL_STATE(984)] = 43330, - [SMALL_STATE(985)] = 43347, - [SMALL_STATE(986)] = 43362, - [SMALL_STATE(987)] = 43373, - [SMALL_STATE(988)] = 43392, - [SMALL_STATE(989)] = 43407, - [SMALL_STATE(990)] = 43422, - [SMALL_STATE(991)] = 43441, - [SMALL_STATE(992)] = 43456, - [SMALL_STATE(993)] = 43475, - [SMALL_STATE(994)] = 43494, - [SMALL_STATE(995)] = 43509, - [SMALL_STATE(996)] = 43522, - [SMALL_STATE(997)] = 43541, - [SMALL_STATE(998)] = 43560, - [SMALL_STATE(999)] = 43579, - [SMALL_STATE(1000)] = 43590, - [SMALL_STATE(1001)] = 43607, - [SMALL_STATE(1002)] = 43622, - [SMALL_STATE(1003)] = 43641, - [SMALL_STATE(1004)] = 43658, - [SMALL_STATE(1005)] = 43672, - [SMALL_STATE(1006)] = 43688, - [SMALL_STATE(1007)] = 43702, - [SMALL_STATE(1008)] = 43718, - [SMALL_STATE(1009)] = 43734, - [SMALL_STATE(1010)] = 43744, - [SMALL_STATE(1011)] = 43760, - [SMALL_STATE(1012)] = 43776, - [SMALL_STATE(1013)] = 43792, - [SMALL_STATE(1014)] = 43804, - [SMALL_STATE(1015)] = 43818, - [SMALL_STATE(1016)] = 43834, - [SMALL_STATE(1017)] = 43846, - [SMALL_STATE(1018)] = 43862, - [SMALL_STATE(1019)] = 43876, - [SMALL_STATE(1020)] = 43892, - [SMALL_STATE(1021)] = 43904, - [SMALL_STATE(1022)] = 43920, - [SMALL_STATE(1023)] = 43936, - [SMALL_STATE(1024)] = 43952, - [SMALL_STATE(1025)] = 43968, - [SMALL_STATE(1026)] = 43984, - [SMALL_STATE(1027)] = 43996, - [SMALL_STATE(1028)] = 44012, - [SMALL_STATE(1029)] = 44028, - [SMALL_STATE(1030)] = 44044, - [SMALL_STATE(1031)] = 44060, - [SMALL_STATE(1032)] = 44076, - [SMALL_STATE(1033)] = 44092, - [SMALL_STATE(1034)] = 44102, - [SMALL_STATE(1035)] = 44116, - [SMALL_STATE(1036)] = 44132, - [SMALL_STATE(1037)] = 44142, - [SMALL_STATE(1038)] = 44156, - [SMALL_STATE(1039)] = 44172, - [SMALL_STATE(1040)] = 44182, - [SMALL_STATE(1041)] = 44198, - [SMALL_STATE(1042)] = 44214, - [SMALL_STATE(1043)] = 44230, - [SMALL_STATE(1044)] = 44246, - [SMALL_STATE(1045)] = 44258, - [SMALL_STATE(1046)] = 44274, - [SMALL_STATE(1047)] = 44290, - [SMALL_STATE(1048)] = 44304, - [SMALL_STATE(1049)] = 44318, - [SMALL_STATE(1050)] = 44334, - [SMALL_STATE(1051)] = 44350, - [SMALL_STATE(1052)] = 44364, - [SMALL_STATE(1053)] = 44378, - [SMALL_STATE(1054)] = 44394, - [SMALL_STATE(1055)] = 44404, - [SMALL_STATE(1056)] = 44420, - [SMALL_STATE(1057)] = 44436, - [SMALL_STATE(1058)] = 44446, - [SMALL_STATE(1059)] = 44456, - [SMALL_STATE(1060)] = 44466, - [SMALL_STATE(1061)] = 44476, - [SMALL_STATE(1062)] = 44490, - [SMALL_STATE(1063)] = 44506, - [SMALL_STATE(1064)] = 44522, - [SMALL_STATE(1065)] = 44538, - [SMALL_STATE(1066)] = 44554, - [SMALL_STATE(1067)] = 44570, - [SMALL_STATE(1068)] = 44586, - [SMALL_STATE(1069)] = 44600, - [SMALL_STATE(1070)] = 44614, - [SMALL_STATE(1071)] = 44630, - [SMALL_STATE(1072)] = 44646, - [SMALL_STATE(1073)] = 44662, - [SMALL_STATE(1074)] = 44678, - [SMALL_STATE(1075)] = 44694, - [SMALL_STATE(1076)] = 44710, - [SMALL_STATE(1077)] = 44726, - [SMALL_STATE(1078)] = 44740, - [SMALL_STATE(1079)] = 44756, - [SMALL_STATE(1080)] = 44766, - [SMALL_STATE(1081)] = 44780, - [SMALL_STATE(1082)] = 44794, - [SMALL_STATE(1083)] = 44810, - [SMALL_STATE(1084)] = 44826, - [SMALL_STATE(1085)] = 44840, - [SMALL_STATE(1086)] = 44856, - [SMALL_STATE(1087)] = 44872, - [SMALL_STATE(1088)] = 44882, - [SMALL_STATE(1089)] = 44898, - [SMALL_STATE(1090)] = 44908, - [SMALL_STATE(1091)] = 44924, - [SMALL_STATE(1092)] = 44938, - [SMALL_STATE(1093)] = 44954, - [SMALL_STATE(1094)] = 44970, - [SMALL_STATE(1095)] = 44982, - [SMALL_STATE(1096)] = 44992, - [SMALL_STATE(1097)] = 45006, - [SMALL_STATE(1098)] = 45022, - [SMALL_STATE(1099)] = 45036, - [SMALL_STATE(1100)] = 45046, - [SMALL_STATE(1101)] = 45062, - [SMALL_STATE(1102)] = 45078, - [SMALL_STATE(1103)] = 45090, - [SMALL_STATE(1104)] = 45104, - [SMALL_STATE(1105)] = 45116, - [SMALL_STATE(1106)] = 45132, - [SMALL_STATE(1107)] = 45148, - [SMALL_STATE(1108)] = 45164, - [SMALL_STATE(1109)] = 45180, - [SMALL_STATE(1110)] = 45196, - [SMALL_STATE(1111)] = 45210, - [SMALL_STATE(1112)] = 45224, - [SMALL_STATE(1113)] = 45240, - [SMALL_STATE(1114)] = 45256, - [SMALL_STATE(1115)] = 45266, - [SMALL_STATE(1116)] = 45282, - [SMALL_STATE(1117)] = 45296, - [SMALL_STATE(1118)] = 45312, - [SMALL_STATE(1119)] = 45328, - [SMALL_STATE(1120)] = 45344, - [SMALL_STATE(1121)] = 45360, - [SMALL_STATE(1122)] = 45376, - [SMALL_STATE(1123)] = 45390, - [SMALL_STATE(1124)] = 45406, - [SMALL_STATE(1125)] = 45415, - [SMALL_STATE(1126)] = 45428, - [SMALL_STATE(1127)] = 45441, - [SMALL_STATE(1128)] = 45450, - [SMALL_STATE(1129)] = 45459, - [SMALL_STATE(1130)] = 45472, - [SMALL_STATE(1131)] = 45485, - [SMALL_STATE(1132)] = 45494, - [SMALL_STATE(1133)] = 45507, - [SMALL_STATE(1134)] = 45516, - [SMALL_STATE(1135)] = 45527, - [SMALL_STATE(1136)] = 45540, - [SMALL_STATE(1137)] = 45553, - [SMALL_STATE(1138)] = 45566, - [SMALL_STATE(1139)] = 45579, - [SMALL_STATE(1140)] = 45592, - [SMALL_STATE(1141)] = 45603, - [SMALL_STATE(1142)] = 45616, - [SMALL_STATE(1143)] = 45627, - [SMALL_STATE(1144)] = 45640, - [SMALL_STATE(1145)] = 45651, - [SMALL_STATE(1146)] = 45664, - [SMALL_STATE(1147)] = 45677, - [SMALL_STATE(1148)] = 45690, - [SMALL_STATE(1149)] = 45703, - [SMALL_STATE(1150)] = 45712, - [SMALL_STATE(1151)] = 45721, - [SMALL_STATE(1152)] = 45730, - [SMALL_STATE(1153)] = 45739, - [SMALL_STATE(1154)] = 45752, - [SMALL_STATE(1155)] = 45765, - [SMALL_STATE(1156)] = 45778, - [SMALL_STATE(1157)] = 45787, - [SMALL_STATE(1158)] = 45800, - [SMALL_STATE(1159)] = 45813, - [SMALL_STATE(1160)] = 45822, - [SMALL_STATE(1161)] = 45835, - [SMALL_STATE(1162)] = 45848, - [SMALL_STATE(1163)] = 45857, - [SMALL_STATE(1164)] = 45870, - [SMALL_STATE(1165)] = 45883, - [SMALL_STATE(1166)] = 45892, - [SMALL_STATE(1167)] = 45905, - [SMALL_STATE(1168)] = 45918, - [SMALL_STATE(1169)] = 45931, - [SMALL_STATE(1170)] = 45940, - [SMALL_STATE(1171)] = 45949, - [SMALL_STATE(1172)] = 45958, - [SMALL_STATE(1173)] = 45967, - [SMALL_STATE(1174)] = 45980, - [SMALL_STATE(1175)] = 45993, - [SMALL_STATE(1176)] = 46006, - [SMALL_STATE(1177)] = 46019, - [SMALL_STATE(1178)] = 46032, - [SMALL_STATE(1179)] = 46045, - [SMALL_STATE(1180)] = 46058, - [SMALL_STATE(1181)] = 46071, - [SMALL_STATE(1182)] = 46084, - [SMALL_STATE(1183)] = 46097, - [SMALL_STATE(1184)] = 46110, - [SMALL_STATE(1185)] = 46123, - [SMALL_STATE(1186)] = 46136, - [SMALL_STATE(1187)] = 46149, - [SMALL_STATE(1188)] = 46158, - [SMALL_STATE(1189)] = 46171, - [SMALL_STATE(1190)] = 46184, - [SMALL_STATE(1191)] = 46197, - [SMALL_STATE(1192)] = 46210, - [SMALL_STATE(1193)] = 46219, - [SMALL_STATE(1194)] = 46230, - [SMALL_STATE(1195)] = 46243, - [SMALL_STATE(1196)] = 46256, - [SMALL_STATE(1197)] = 46269, - [SMALL_STATE(1198)] = 46282, - [SMALL_STATE(1199)] = 46295, - [SMALL_STATE(1200)] = 46308, - [SMALL_STATE(1201)] = 46321, - [SMALL_STATE(1202)] = 46334, - [SMALL_STATE(1203)] = 46347, - [SMALL_STATE(1204)] = 46360, - [SMALL_STATE(1205)] = 46369, - [SMALL_STATE(1206)] = 46382, - [SMALL_STATE(1207)] = 46393, - [SMALL_STATE(1208)] = 46402, - [SMALL_STATE(1209)] = 46415, - [SMALL_STATE(1210)] = 46428, - [SMALL_STATE(1211)] = 46441, - [SMALL_STATE(1212)] = 46454, - [SMALL_STATE(1213)] = 46467, - [SMALL_STATE(1214)] = 46480, - [SMALL_STATE(1215)] = 46491, - [SMALL_STATE(1216)] = 46504, - [SMALL_STATE(1217)] = 46513, - [SMALL_STATE(1218)] = 46526, - [SMALL_STATE(1219)] = 46539, - [SMALL_STATE(1220)] = 46548, - [SMALL_STATE(1221)] = 46557, - [SMALL_STATE(1222)] = 46570, - [SMALL_STATE(1223)] = 46583, - [SMALL_STATE(1224)] = 46596, - [SMALL_STATE(1225)] = 46609, - [SMALL_STATE(1226)] = 46622, - [SMALL_STATE(1227)] = 46635, - [SMALL_STATE(1228)] = 46648, - [SMALL_STATE(1229)] = 46657, - [SMALL_STATE(1230)] = 46670, - [SMALL_STATE(1231)] = 46683, - [SMALL_STATE(1232)] = 46692, - [SMALL_STATE(1233)] = 46701, - [SMALL_STATE(1234)] = 46714, - [SMALL_STATE(1235)] = 46723, - [SMALL_STATE(1236)] = 46736, - [SMALL_STATE(1237)] = 46749, - [SMALL_STATE(1238)] = 46762, - [SMALL_STATE(1239)] = 46775, - [SMALL_STATE(1240)] = 46788, - [SMALL_STATE(1241)] = 46801, - [SMALL_STATE(1242)] = 46814, - [SMALL_STATE(1243)] = 46827, - [SMALL_STATE(1244)] = 46836, - [SMALL_STATE(1245)] = 46845, - [SMALL_STATE(1246)] = 46858, - [SMALL_STATE(1247)] = 46871, - [SMALL_STATE(1248)] = 46884, - [SMALL_STATE(1249)] = 46895, - [SMALL_STATE(1250)] = 46908, - [SMALL_STATE(1251)] = 46921, - [SMALL_STATE(1252)] = 46934, - [SMALL_STATE(1253)] = 46947, - [SMALL_STATE(1254)] = 46956, - [SMALL_STATE(1255)] = 46969, - [SMALL_STATE(1256)] = 46978, - [SMALL_STATE(1257)] = 46987, - [SMALL_STATE(1258)] = 46996, - [SMALL_STATE(1259)] = 47005, - [SMALL_STATE(1260)] = 47014, - [SMALL_STATE(1261)] = 47023, - [SMALL_STATE(1262)] = 47036, - [SMALL_STATE(1263)] = 47049, - [SMALL_STATE(1264)] = 47062, - [SMALL_STATE(1265)] = 47071, - [SMALL_STATE(1266)] = 47080, - [SMALL_STATE(1267)] = 47093, - [SMALL_STATE(1268)] = 47102, - [SMALL_STATE(1269)] = 47111, - [SMALL_STATE(1270)] = 47120, - [SMALL_STATE(1271)] = 47131, - [SMALL_STATE(1272)] = 47144, - [SMALL_STATE(1273)] = 47157, - [SMALL_STATE(1274)] = 47166, - [SMALL_STATE(1275)] = 47179, - [SMALL_STATE(1276)] = 47192, - [SMALL_STATE(1277)] = 47201, - [SMALL_STATE(1278)] = 47214, - [SMALL_STATE(1279)] = 47223, - [SMALL_STATE(1280)] = 47236, - [SMALL_STATE(1281)] = 47249, - [SMALL_STATE(1282)] = 47262, - [SMALL_STATE(1283)] = 47275, - [SMALL_STATE(1284)] = 47288, - [SMALL_STATE(1285)] = 47301, - [SMALL_STATE(1286)] = 47314, - [SMALL_STATE(1287)] = 47327, - [SMALL_STATE(1288)] = 47338, - [SMALL_STATE(1289)] = 47351, - [SMALL_STATE(1290)] = 47360, - [SMALL_STATE(1291)] = 47373, - [SMALL_STATE(1292)] = 47386, - [SMALL_STATE(1293)] = 47397, - [SMALL_STATE(1294)] = 47410, - [SMALL_STATE(1295)] = 47423, - [SMALL_STATE(1296)] = 47432, - [SMALL_STATE(1297)] = 47441, - [SMALL_STATE(1298)] = 47454, - [SMALL_STATE(1299)] = 47467, - [SMALL_STATE(1300)] = 47476, - [SMALL_STATE(1301)] = 47489, - [SMALL_STATE(1302)] = 47502, - [SMALL_STATE(1303)] = 47515, - [SMALL_STATE(1304)] = 47528, - [SMALL_STATE(1305)] = 47541, - [SMALL_STATE(1306)] = 47554, - [SMALL_STATE(1307)] = 47563, - [SMALL_STATE(1308)] = 47576, - [SMALL_STATE(1309)] = 47589, - [SMALL_STATE(1310)] = 47602, - [SMALL_STATE(1311)] = 47613, - [SMALL_STATE(1312)] = 47626, - [SMALL_STATE(1313)] = 47639, - [SMALL_STATE(1314)] = 47652, - [SMALL_STATE(1315)] = 47665, - [SMALL_STATE(1316)] = 47674, - [SMALL_STATE(1317)] = 47683, - [SMALL_STATE(1318)] = 47696, - [SMALL_STATE(1319)] = 47705, - [SMALL_STATE(1320)] = 47713, - [SMALL_STATE(1321)] = 47721, - [SMALL_STATE(1322)] = 47729, - [SMALL_STATE(1323)] = 47737, - [SMALL_STATE(1324)] = 47747, - [SMALL_STATE(1325)] = 47757, - [SMALL_STATE(1326)] = 47767, - [SMALL_STATE(1327)] = 47777, - [SMALL_STATE(1328)] = 47787, - [SMALL_STATE(1329)] = 47795, - [SMALL_STATE(1330)] = 47803, - [SMALL_STATE(1331)] = 47811, - [SMALL_STATE(1332)] = 47821, - [SMALL_STATE(1333)] = 47829, - [SMALL_STATE(1334)] = 47837, - [SMALL_STATE(1335)] = 47845, - [SMALL_STATE(1336)] = 47853, - [SMALL_STATE(1337)] = 47863, - [SMALL_STATE(1338)] = 47871, - [SMALL_STATE(1339)] = 47881, - [SMALL_STATE(1340)] = 47889, - [SMALL_STATE(1341)] = 47897, - [SMALL_STATE(1342)] = 47907, - [SMALL_STATE(1343)] = 47915, - [SMALL_STATE(1344)] = 47923, - [SMALL_STATE(1345)] = 47933, - [SMALL_STATE(1346)] = 47943, - [SMALL_STATE(1347)] = 47951, - [SMALL_STATE(1348)] = 47959, - [SMALL_STATE(1349)] = 47969, - [SMALL_STATE(1350)] = 47977, - [SMALL_STATE(1351)] = 47987, - [SMALL_STATE(1352)] = 47997, - [SMALL_STATE(1353)] = 48007, - [SMALL_STATE(1354)] = 48015, - [SMALL_STATE(1355)] = 48025, - [SMALL_STATE(1356)] = 48033, - [SMALL_STATE(1357)] = 48043, - [SMALL_STATE(1358)] = 48051, - [SMALL_STATE(1359)] = 48061, - [SMALL_STATE(1360)] = 48071, - [SMALL_STATE(1361)] = 48081, - [SMALL_STATE(1362)] = 48089, - [SMALL_STATE(1363)] = 48099, - [SMALL_STATE(1364)] = 48107, - [SMALL_STATE(1365)] = 48115, - [SMALL_STATE(1366)] = 48125, - [SMALL_STATE(1367)] = 48135, - [SMALL_STATE(1368)] = 48143, - [SMALL_STATE(1369)] = 48151, - [SMALL_STATE(1370)] = 48161, - [SMALL_STATE(1371)] = 48169, - [SMALL_STATE(1372)] = 48177, - [SMALL_STATE(1373)] = 48185, - [SMALL_STATE(1374)] = 48195, - [SMALL_STATE(1375)] = 48205, - [SMALL_STATE(1376)] = 48215, - [SMALL_STATE(1377)] = 48223, - [SMALL_STATE(1378)] = 48233, - [SMALL_STATE(1379)] = 48243, - [SMALL_STATE(1380)] = 48253, - [SMALL_STATE(1381)] = 48263, - [SMALL_STATE(1382)] = 48273, - [SMALL_STATE(1383)] = 48283, - [SMALL_STATE(1384)] = 48293, - [SMALL_STATE(1385)] = 48301, - [SMALL_STATE(1386)] = 48309, - [SMALL_STATE(1387)] = 48317, - [SMALL_STATE(1388)] = 48327, - [SMALL_STATE(1389)] = 48335, - [SMALL_STATE(1390)] = 48345, - [SMALL_STATE(1391)] = 48353, - [SMALL_STATE(1392)] = 48361, - [SMALL_STATE(1393)] = 48371, - [SMALL_STATE(1394)] = 48379, - [SMALL_STATE(1395)] = 48389, - [SMALL_STATE(1396)] = 48397, - [SMALL_STATE(1397)] = 48407, - [SMALL_STATE(1398)] = 48417, - [SMALL_STATE(1399)] = 48427, - [SMALL_STATE(1400)] = 48435, - [SMALL_STATE(1401)] = 48445, - [SMALL_STATE(1402)] = 48453, - [SMALL_STATE(1403)] = 48463, - [SMALL_STATE(1404)] = 48471, - [SMALL_STATE(1405)] = 48481, - [SMALL_STATE(1406)] = 48491, - [SMALL_STATE(1407)] = 48501, - [SMALL_STATE(1408)] = 48511, - [SMALL_STATE(1409)] = 48521, - [SMALL_STATE(1410)] = 48531, - [SMALL_STATE(1411)] = 48539, - [SMALL_STATE(1412)] = 48547, - [SMALL_STATE(1413)] = 48557, - [SMALL_STATE(1414)] = 48565, - [SMALL_STATE(1415)] = 48575, - [SMALL_STATE(1416)] = 48585, - [SMALL_STATE(1417)] = 48595, - [SMALL_STATE(1418)] = 48603, - [SMALL_STATE(1419)] = 48613, - [SMALL_STATE(1420)] = 48621, - [SMALL_STATE(1421)] = 48629, - [SMALL_STATE(1422)] = 48637, - [SMALL_STATE(1423)] = 48647, - [SMALL_STATE(1424)] = 48655, - [SMALL_STATE(1425)] = 48665, - [SMALL_STATE(1426)] = 48675, - [SMALL_STATE(1427)] = 48685, - [SMALL_STATE(1428)] = 48695, - [SMALL_STATE(1429)] = 48705, - [SMALL_STATE(1430)] = 48713, - [SMALL_STATE(1431)] = 48723, - [SMALL_STATE(1432)] = 48731, - [SMALL_STATE(1433)] = 48741, - [SMALL_STATE(1434)] = 48751, - [SMALL_STATE(1435)] = 48761, - [SMALL_STATE(1436)] = 48771, - [SMALL_STATE(1437)] = 48779, - [SMALL_STATE(1438)] = 48789, - [SMALL_STATE(1439)] = 48799, - [SMALL_STATE(1440)] = 48809, - [SMALL_STATE(1441)] = 48817, - [SMALL_STATE(1442)] = 48825, - [SMALL_STATE(1443)] = 48835, - [SMALL_STATE(1444)] = 48845, - [SMALL_STATE(1445)] = 48853, - [SMALL_STATE(1446)] = 48861, - [SMALL_STATE(1447)] = 48871, - [SMALL_STATE(1448)] = 48879, - [SMALL_STATE(1449)] = 48887, - [SMALL_STATE(1450)] = 48895, - [SMALL_STATE(1451)] = 48903, - [SMALL_STATE(1452)] = 48911, - [SMALL_STATE(1453)] = 48919, - [SMALL_STATE(1454)] = 48929, - [SMALL_STATE(1455)] = 48937, - [SMALL_STATE(1456)] = 48947, - [SMALL_STATE(1457)] = 48957, - [SMALL_STATE(1458)] = 48965, - [SMALL_STATE(1459)] = 48973, - [SMALL_STATE(1460)] = 48981, - [SMALL_STATE(1461)] = 48991, - [SMALL_STATE(1462)] = 48999, - [SMALL_STATE(1463)] = 49009, - [SMALL_STATE(1464)] = 49016, - [SMALL_STATE(1465)] = 49023, - [SMALL_STATE(1466)] = 49030, - [SMALL_STATE(1467)] = 49037, - [SMALL_STATE(1468)] = 49044, - [SMALL_STATE(1469)] = 49051, - [SMALL_STATE(1470)] = 49058, - [SMALL_STATE(1471)] = 49065, - [SMALL_STATE(1472)] = 49072, - [SMALL_STATE(1473)] = 49079, - [SMALL_STATE(1474)] = 49086, - [SMALL_STATE(1475)] = 49093, - [SMALL_STATE(1476)] = 49100, - [SMALL_STATE(1477)] = 49107, - [SMALL_STATE(1478)] = 49114, - [SMALL_STATE(1479)] = 49121, - [SMALL_STATE(1480)] = 49128, - [SMALL_STATE(1481)] = 49135, - [SMALL_STATE(1482)] = 49142, - [SMALL_STATE(1483)] = 49149, - [SMALL_STATE(1484)] = 49156, - [SMALL_STATE(1485)] = 49163, - [SMALL_STATE(1486)] = 49170, - [SMALL_STATE(1487)] = 49177, - [SMALL_STATE(1488)] = 49184, - [SMALL_STATE(1489)] = 49191, - [SMALL_STATE(1490)] = 49198, - [SMALL_STATE(1491)] = 49205, - [SMALL_STATE(1492)] = 49212, - [SMALL_STATE(1493)] = 49219, - [SMALL_STATE(1494)] = 49226, - [SMALL_STATE(1495)] = 49233, - [SMALL_STATE(1496)] = 49240, - [SMALL_STATE(1497)] = 49247, - [SMALL_STATE(1498)] = 49254, - [SMALL_STATE(1499)] = 49261, - [SMALL_STATE(1500)] = 49268, - [SMALL_STATE(1501)] = 49275, - [SMALL_STATE(1502)] = 49282, - [SMALL_STATE(1503)] = 49289, - [SMALL_STATE(1504)] = 49296, - [SMALL_STATE(1505)] = 49303, - [SMALL_STATE(1506)] = 49310, - [SMALL_STATE(1507)] = 49317, - [SMALL_STATE(1508)] = 49324, - [SMALL_STATE(1509)] = 49331, - [SMALL_STATE(1510)] = 49338, - [SMALL_STATE(1511)] = 49345, - [SMALL_STATE(1512)] = 49352, - [SMALL_STATE(1513)] = 49359, - [SMALL_STATE(1514)] = 49366, - [SMALL_STATE(1515)] = 49373, - [SMALL_STATE(1516)] = 49380, - [SMALL_STATE(1517)] = 49387, - [SMALL_STATE(1518)] = 49394, - [SMALL_STATE(1519)] = 49401, - [SMALL_STATE(1520)] = 49408, - [SMALL_STATE(1521)] = 49415, - [SMALL_STATE(1522)] = 49422, - [SMALL_STATE(1523)] = 49429, - [SMALL_STATE(1524)] = 49436, - [SMALL_STATE(1525)] = 49443, - [SMALL_STATE(1526)] = 49450, - [SMALL_STATE(1527)] = 49457, - [SMALL_STATE(1528)] = 49464, - [SMALL_STATE(1529)] = 49471, - [SMALL_STATE(1530)] = 49478, - [SMALL_STATE(1531)] = 49485, - [SMALL_STATE(1532)] = 49492, - [SMALL_STATE(1533)] = 49499, - [SMALL_STATE(1534)] = 49506, - [SMALL_STATE(1535)] = 49513, - [SMALL_STATE(1536)] = 49520, - [SMALL_STATE(1537)] = 49527, - [SMALL_STATE(1538)] = 49534, - [SMALL_STATE(1539)] = 49541, - [SMALL_STATE(1540)] = 49548, - [SMALL_STATE(1541)] = 49555, - [SMALL_STATE(1542)] = 49562, - [SMALL_STATE(1543)] = 49569, - [SMALL_STATE(1544)] = 49576, - [SMALL_STATE(1545)] = 49583, - [SMALL_STATE(1546)] = 49590, - [SMALL_STATE(1547)] = 49597, - [SMALL_STATE(1548)] = 49604, - [SMALL_STATE(1549)] = 49611, - [SMALL_STATE(1550)] = 49618, - [SMALL_STATE(1551)] = 49625, - [SMALL_STATE(1552)] = 49632, - [SMALL_STATE(1553)] = 49639, - [SMALL_STATE(1554)] = 49646, - [SMALL_STATE(1555)] = 49653, - [SMALL_STATE(1556)] = 49660, - [SMALL_STATE(1557)] = 49667, - [SMALL_STATE(1558)] = 49674, - [SMALL_STATE(1559)] = 49681, - [SMALL_STATE(1560)] = 49688, - [SMALL_STATE(1561)] = 49695, - [SMALL_STATE(1562)] = 49702, - [SMALL_STATE(1563)] = 49709, - [SMALL_STATE(1564)] = 49716, - [SMALL_STATE(1565)] = 49723, - [SMALL_STATE(1566)] = 49730, - [SMALL_STATE(1567)] = 49737, - [SMALL_STATE(1568)] = 49744, - [SMALL_STATE(1569)] = 49751, - [SMALL_STATE(1570)] = 49758, - [SMALL_STATE(1571)] = 49765, - [SMALL_STATE(1572)] = 49772, - [SMALL_STATE(1573)] = 49779, - [SMALL_STATE(1574)] = 49786, - [SMALL_STATE(1575)] = 49793, - [SMALL_STATE(1576)] = 49800, - [SMALL_STATE(1577)] = 49807, - [SMALL_STATE(1578)] = 49814, - [SMALL_STATE(1579)] = 49821, - [SMALL_STATE(1580)] = 49828, - [SMALL_STATE(1581)] = 49835, - [SMALL_STATE(1582)] = 49842, - [SMALL_STATE(1583)] = 49849, - [SMALL_STATE(1584)] = 49856, - [SMALL_STATE(1585)] = 49863, - [SMALL_STATE(1586)] = 49870, - [SMALL_STATE(1587)] = 49877, - [SMALL_STATE(1588)] = 49884, - [SMALL_STATE(1589)] = 49891, - [SMALL_STATE(1590)] = 49898, - [SMALL_STATE(1591)] = 49905, - [SMALL_STATE(1592)] = 49912, - [SMALL_STATE(1593)] = 49919, - [SMALL_STATE(1594)] = 49926, - [SMALL_STATE(1595)] = 49933, - [SMALL_STATE(1596)] = 49940, - [SMALL_STATE(1597)] = 49947, - [SMALL_STATE(1598)] = 49954, - [SMALL_STATE(1599)] = 49961, - [SMALL_STATE(1600)] = 49968, - [SMALL_STATE(1601)] = 49975, - [SMALL_STATE(1602)] = 49982, - [SMALL_STATE(1603)] = 49989, - [SMALL_STATE(1604)] = 49996, - [SMALL_STATE(1605)] = 50003, - [SMALL_STATE(1606)] = 50010, - [SMALL_STATE(1607)] = 50017, - [SMALL_STATE(1608)] = 50024, - [SMALL_STATE(1609)] = 50031, - [SMALL_STATE(1610)] = 50038, - [SMALL_STATE(1611)] = 50045, - [SMALL_STATE(1612)] = 50052, - [SMALL_STATE(1613)] = 50059, - [SMALL_STATE(1614)] = 50066, - [SMALL_STATE(1615)] = 50073, - [SMALL_STATE(1616)] = 50080, - [SMALL_STATE(1617)] = 50087, - [SMALL_STATE(1618)] = 50094, - [SMALL_STATE(1619)] = 50101, - [SMALL_STATE(1620)] = 50108, - [SMALL_STATE(1621)] = 50115, - [SMALL_STATE(1622)] = 50122, - [SMALL_STATE(1623)] = 50129, - [SMALL_STATE(1624)] = 50136, - [SMALL_STATE(1625)] = 50143, - [SMALL_STATE(1626)] = 50150, - [SMALL_STATE(1627)] = 50157, - [SMALL_STATE(1628)] = 50164, - [SMALL_STATE(1629)] = 50171, - [SMALL_STATE(1630)] = 50178, - [SMALL_STATE(1631)] = 50185, - [SMALL_STATE(1632)] = 50192, - [SMALL_STATE(1633)] = 50199, - [SMALL_STATE(1634)] = 50206, - [SMALL_STATE(1635)] = 50213, - [SMALL_STATE(1636)] = 50220, - [SMALL_STATE(1637)] = 50227, - [SMALL_STATE(1638)] = 50234, - [SMALL_STATE(1639)] = 50241, - [SMALL_STATE(1640)] = 50248, - [SMALL_STATE(1641)] = 50255, - [SMALL_STATE(1642)] = 50262, - [SMALL_STATE(1643)] = 50269, - [SMALL_STATE(1644)] = 50276, - [SMALL_STATE(1645)] = 50283, - [SMALL_STATE(1646)] = 50290, - [SMALL_STATE(1647)] = 50297, - [SMALL_STATE(1648)] = 50304, - [SMALL_STATE(1649)] = 50311, - [SMALL_STATE(1650)] = 50318, - [SMALL_STATE(1651)] = 50325, - [SMALL_STATE(1652)] = 50332, - [SMALL_STATE(1653)] = 50339, - [SMALL_STATE(1654)] = 50346, - [SMALL_STATE(1655)] = 50353, - [SMALL_STATE(1656)] = 50360, - [SMALL_STATE(1657)] = 50367, - [SMALL_STATE(1658)] = 50374, - [SMALL_STATE(1659)] = 50381, - [SMALL_STATE(1660)] = 50388, - [SMALL_STATE(1661)] = 50395, - [SMALL_STATE(1662)] = 50402, - [SMALL_STATE(1663)] = 50409, - [SMALL_STATE(1664)] = 50416, - [SMALL_STATE(1665)] = 50423, - [SMALL_STATE(1666)] = 50430, - [SMALL_STATE(1667)] = 50437, - [SMALL_STATE(1668)] = 50444, - [SMALL_STATE(1669)] = 50451, - [SMALL_STATE(1670)] = 50458, - [SMALL_STATE(1671)] = 50465, - [SMALL_STATE(1672)] = 50472, - [SMALL_STATE(1673)] = 50479, - [SMALL_STATE(1674)] = 50486, - [SMALL_STATE(1675)] = 50493, - [SMALL_STATE(1676)] = 50500, - [SMALL_STATE(1677)] = 50507, - [SMALL_STATE(1678)] = 50514, - [SMALL_STATE(1679)] = 50521, - [SMALL_STATE(1680)] = 50528, - [SMALL_STATE(1681)] = 50535, - [SMALL_STATE(1682)] = 50542, - [SMALL_STATE(1683)] = 50549, - [SMALL_STATE(1684)] = 50556, - [SMALL_STATE(1685)] = 50563, - [SMALL_STATE(1686)] = 50570, - [SMALL_STATE(1687)] = 50577, - [SMALL_STATE(1688)] = 50584, - [SMALL_STATE(1689)] = 50591, - [SMALL_STATE(1690)] = 50598, - [SMALL_STATE(1691)] = 50605, - [SMALL_STATE(1692)] = 50612, - [SMALL_STATE(1693)] = 50619, - [SMALL_STATE(1694)] = 50626, - [SMALL_STATE(1695)] = 50633, - [SMALL_STATE(1696)] = 50640, - [SMALL_STATE(1697)] = 50647, - [SMALL_STATE(1698)] = 50654, - [SMALL_STATE(1699)] = 50661, - [SMALL_STATE(1700)] = 50668, - [SMALL_STATE(1701)] = 50675, - [SMALL_STATE(1702)] = 50682, - [SMALL_STATE(1703)] = 50689, - [SMALL_STATE(1704)] = 50696, - [SMALL_STATE(1705)] = 50703, - [SMALL_STATE(1706)] = 50710, - [SMALL_STATE(1707)] = 50717, - [SMALL_STATE(1708)] = 50724, - [SMALL_STATE(1709)] = 50731, - [SMALL_STATE(1710)] = 50738, - [SMALL_STATE(1711)] = 50745, - [SMALL_STATE(1712)] = 50752, - [SMALL_STATE(1713)] = 50759, - [SMALL_STATE(1714)] = 50766, - [SMALL_STATE(1715)] = 50773, - [SMALL_STATE(1716)] = 50780, - [SMALL_STATE(1717)] = 50787, - [SMALL_STATE(1718)] = 50794, - [SMALL_STATE(1719)] = 50801, - [SMALL_STATE(1720)] = 50808, - [SMALL_STATE(1721)] = 50815, - [SMALL_STATE(1722)] = 50822, - [SMALL_STATE(1723)] = 50829, - [SMALL_STATE(1724)] = 50836, - [SMALL_STATE(1725)] = 50843, - [SMALL_STATE(1726)] = 50850, - [SMALL_STATE(1727)] = 50857, - [SMALL_STATE(1728)] = 50864, - [SMALL_STATE(1729)] = 50871, - [SMALL_STATE(1730)] = 50878, - [SMALL_STATE(1731)] = 50885, - [SMALL_STATE(1732)] = 50892, - [SMALL_STATE(1733)] = 50899, - [SMALL_STATE(1734)] = 50906, - [SMALL_STATE(1735)] = 50913, - [SMALL_STATE(1736)] = 50920, - [SMALL_STATE(1737)] = 50927, - [SMALL_STATE(1738)] = 50934, - [SMALL_STATE(1739)] = 50941, - [SMALL_STATE(1740)] = 50948, - [SMALL_STATE(1741)] = 50955, - [SMALL_STATE(1742)] = 50962, - [SMALL_STATE(1743)] = 50969, - [SMALL_STATE(1744)] = 50976, - [SMALL_STATE(1745)] = 50983, - [SMALL_STATE(1746)] = 50990, - [SMALL_STATE(1747)] = 50997, - [SMALL_STATE(1748)] = 51004, - [SMALL_STATE(1749)] = 51011, - [SMALL_STATE(1750)] = 51018, - [SMALL_STATE(1751)] = 51025, - [SMALL_STATE(1752)] = 51032, - [SMALL_STATE(1753)] = 51039, - [SMALL_STATE(1754)] = 51046, - [SMALL_STATE(1755)] = 51053, - [SMALL_STATE(1756)] = 51060, - [SMALL_STATE(1757)] = 51067, - [SMALL_STATE(1758)] = 51074, - [SMALL_STATE(1759)] = 51081, - [SMALL_STATE(1760)] = 51088, - [SMALL_STATE(1761)] = 51095, - [SMALL_STATE(1762)] = 51102, - [SMALL_STATE(1763)] = 51109, - [SMALL_STATE(1764)] = 51116, - [SMALL_STATE(1765)] = 51123, - [SMALL_STATE(1766)] = 51130, - [SMALL_STATE(1767)] = 51137, - [SMALL_STATE(1768)] = 51144, - [SMALL_STATE(1769)] = 51151, - [SMALL_STATE(1770)] = 51158, - [SMALL_STATE(1771)] = 51165, - [SMALL_STATE(1772)] = 51172, - [SMALL_STATE(1773)] = 51179, - [SMALL_STATE(1774)] = 51186, - [SMALL_STATE(1775)] = 51193, - [SMALL_STATE(1776)] = 51200, - [SMALL_STATE(1777)] = 51207, - [SMALL_STATE(1778)] = 51214, - [SMALL_STATE(1779)] = 51221, - [SMALL_STATE(1780)] = 51228, - [SMALL_STATE(1781)] = 51235, - [SMALL_STATE(1782)] = 51242, - [SMALL_STATE(1783)] = 51249, - [SMALL_STATE(1784)] = 51256, - [SMALL_STATE(1785)] = 51263, - [SMALL_STATE(1786)] = 51270, - [SMALL_STATE(1787)] = 51277, - [SMALL_STATE(1788)] = 51284, - [SMALL_STATE(1789)] = 51291, - [SMALL_STATE(1790)] = 51298, - [SMALL_STATE(1791)] = 51305, - [SMALL_STATE(1792)] = 51312, - [SMALL_STATE(1793)] = 51319, - [SMALL_STATE(1794)] = 51326, - [SMALL_STATE(1795)] = 51333, - [SMALL_STATE(1796)] = 51340, - [SMALL_STATE(1797)] = 51347, - [SMALL_STATE(1798)] = 51354, - [SMALL_STATE(1799)] = 51361, - [SMALL_STATE(1800)] = 51368, - [SMALL_STATE(1801)] = 51375, - [SMALL_STATE(1802)] = 51382, - [SMALL_STATE(1803)] = 51389, - [SMALL_STATE(1804)] = 51396, - [SMALL_STATE(1805)] = 51403, - [SMALL_STATE(1806)] = 51410, - [SMALL_STATE(1807)] = 51417, - [SMALL_STATE(1808)] = 51424, - [SMALL_STATE(1809)] = 51431, - [SMALL_STATE(1810)] = 51438, - [SMALL_STATE(1811)] = 51445, - [SMALL_STATE(1812)] = 51452, - [SMALL_STATE(1813)] = 51459, - [SMALL_STATE(1814)] = 51466, - [SMALL_STATE(1815)] = 51473, - [SMALL_STATE(1816)] = 51480, - [SMALL_STATE(1817)] = 51487, - [SMALL_STATE(1818)] = 51494, - [SMALL_STATE(1819)] = 51501, - [SMALL_STATE(1820)] = 51508, - [SMALL_STATE(1821)] = 51515, - [SMALL_STATE(1822)] = 51522, - [SMALL_STATE(1823)] = 51529, - [SMALL_STATE(1824)] = 51536, - [SMALL_STATE(1825)] = 51543, - [SMALL_STATE(1826)] = 51550, - [SMALL_STATE(1827)] = 51557, - [SMALL_STATE(1828)] = 51564, - [SMALL_STATE(1829)] = 51571, - [SMALL_STATE(1830)] = 51578, - [SMALL_STATE(1831)] = 51585, - [SMALL_STATE(1832)] = 51592, - [SMALL_STATE(1833)] = 51599, - [SMALL_STATE(1834)] = 51606, - [SMALL_STATE(1835)] = 51613, - [SMALL_STATE(1836)] = 51620, - [SMALL_STATE(1837)] = 51627, - [SMALL_STATE(1838)] = 51634, - [SMALL_STATE(1839)] = 51641, - [SMALL_STATE(1840)] = 51648, - [SMALL_STATE(1841)] = 51655, - [SMALL_STATE(1842)] = 51662, - [SMALL_STATE(1843)] = 51669, - [SMALL_STATE(1844)] = 51676, - [SMALL_STATE(1845)] = 51683, - [SMALL_STATE(1846)] = 51690, - [SMALL_STATE(1847)] = 51697, - [SMALL_STATE(1848)] = 51704, - [SMALL_STATE(1849)] = 51711, - [SMALL_STATE(1850)] = 51718, - [SMALL_STATE(1851)] = 51725, - [SMALL_STATE(1852)] = 51732, - [SMALL_STATE(1853)] = 51739, - [SMALL_STATE(1854)] = 51746, - [SMALL_STATE(1855)] = 51753, - [SMALL_STATE(1856)] = 51760, - [SMALL_STATE(1857)] = 51767, - [SMALL_STATE(1858)] = 51774, - [SMALL_STATE(1859)] = 51781, - [SMALL_STATE(1860)] = 51788, - [SMALL_STATE(1861)] = 51795, - [SMALL_STATE(1862)] = 51802, - [SMALL_STATE(1863)] = 51809, - [SMALL_STATE(1864)] = 51816, - [SMALL_STATE(1865)] = 51823, - [SMALL_STATE(1866)] = 51830, - [SMALL_STATE(1867)] = 51837, - [SMALL_STATE(1868)] = 51844, - [SMALL_STATE(1869)] = 51851, - [SMALL_STATE(1870)] = 51858, - [SMALL_STATE(1871)] = 51865, - [SMALL_STATE(1872)] = 51872, - [SMALL_STATE(1873)] = 51879, - [SMALL_STATE(1874)] = 51886, - [SMALL_STATE(1875)] = 51893, - [SMALL_STATE(1876)] = 51900, - [SMALL_STATE(1877)] = 51907, - [SMALL_STATE(1878)] = 51914, - [SMALL_STATE(1879)] = 51921, - [SMALL_STATE(1880)] = 51928, - [SMALL_STATE(1881)] = 51935, - [SMALL_STATE(1882)] = 51942, - [SMALL_STATE(1883)] = 51949, - [SMALL_STATE(1884)] = 51956, - [SMALL_STATE(1885)] = 51963, - [SMALL_STATE(1886)] = 51970, - [SMALL_STATE(1887)] = 51977, - [SMALL_STATE(1888)] = 51984, - [SMALL_STATE(1889)] = 51991, - [SMALL_STATE(1890)] = 51998, - [SMALL_STATE(1891)] = 52005, - [SMALL_STATE(1892)] = 52012, - [SMALL_STATE(1893)] = 52019, - [SMALL_STATE(1894)] = 52026, - [SMALL_STATE(1895)] = 52033, - [SMALL_STATE(1896)] = 52040, - [SMALL_STATE(1897)] = 52047, - [SMALL_STATE(1898)] = 52054, - [SMALL_STATE(1899)] = 52061, - [SMALL_STATE(1900)] = 52068, - [SMALL_STATE(1901)] = 52075, - [SMALL_STATE(1902)] = 52082, - [SMALL_STATE(1903)] = 52089, - [SMALL_STATE(1904)] = 52096, - [SMALL_STATE(1905)] = 52103, - [SMALL_STATE(1906)] = 52110, - [SMALL_STATE(1907)] = 52117, - [SMALL_STATE(1908)] = 52124, - [SMALL_STATE(1909)] = 52131, - [SMALL_STATE(1910)] = 52138, - [SMALL_STATE(1911)] = 52145, - [SMALL_STATE(1912)] = 52152, - [SMALL_STATE(1913)] = 52159, - [SMALL_STATE(1914)] = 52166, - [SMALL_STATE(1915)] = 52173, - [SMALL_STATE(1916)] = 52180, - [SMALL_STATE(1917)] = 52187, + [SMALL_STATE(744)] = 38389, + [SMALL_STATE(745)] = 38417, + [SMALL_STATE(746)] = 38445, + [SMALL_STATE(747)] = 38473, + [SMALL_STATE(748)] = 38501, + [SMALL_STATE(749)] = 38529, + [SMALL_STATE(750)] = 38557, + [SMALL_STATE(751)] = 38582, + [SMALL_STATE(752)] = 38601, + [SMALL_STATE(753)] = 38626, + [SMALL_STATE(754)] = 38651, + [SMALL_STATE(755)] = 38676, + [SMALL_STATE(756)] = 38701, + [SMALL_STATE(757)] = 38726, + [SMALL_STATE(758)] = 38745, + [SMALL_STATE(759)] = 38764, + [SMALL_STATE(760)] = 38789, + [SMALL_STATE(761)] = 38814, + [SMALL_STATE(762)] = 38839, + [SMALL_STATE(763)] = 38864, + [SMALL_STATE(764)] = 38889, + [SMALL_STATE(765)] = 38914, + [SMALL_STATE(766)] = 38939, + [SMALL_STATE(767)] = 38958, + [SMALL_STATE(768)] = 38983, + [SMALL_STATE(769)] = 39008, + [SMALL_STATE(770)] = 39033, + [SMALL_STATE(771)] = 39058, + [SMALL_STATE(772)] = 39083, + [SMALL_STATE(773)] = 39108, + [SMALL_STATE(774)] = 39133, + [SMALL_STATE(775)] = 39162, + [SMALL_STATE(776)] = 39187, + [SMALL_STATE(777)] = 39212, + [SMALL_STATE(778)] = 39231, + [SMALL_STATE(779)] = 39256, + [SMALL_STATE(780)] = 39281, + [SMALL_STATE(781)] = 39306, + [SMALL_STATE(782)] = 39331, + [SMALL_STATE(783)] = 39356, + [SMALL_STATE(784)] = 39381, + [SMALL_STATE(785)] = 39406, + [SMALL_STATE(786)] = 39431, + [SMALL_STATE(787)] = 39456, + [SMALL_STATE(788)] = 39481, + [SMALL_STATE(789)] = 39506, + [SMALL_STATE(790)] = 39531, + [SMALL_STATE(791)] = 39556, + [SMALL_STATE(792)] = 39581, + [SMALL_STATE(793)] = 39606, + [SMALL_STATE(794)] = 39631, + [SMALL_STATE(795)] = 39650, + [SMALL_STATE(796)] = 39679, + [SMALL_STATE(797)] = 39708, + [SMALL_STATE(798)] = 39733, + [SMALL_STATE(799)] = 39758, + [SMALL_STATE(800)] = 39783, + [SMALL_STATE(801)] = 39808, + [SMALL_STATE(802)] = 39833, + [SMALL_STATE(803)] = 39858, + [SMALL_STATE(804)] = 39883, + [SMALL_STATE(805)] = 39908, + [SMALL_STATE(806)] = 39933, + [SMALL_STATE(807)] = 39958, + [SMALL_STATE(808)] = 39983, + [SMALL_STATE(809)] = 40008, + [SMALL_STATE(810)] = 40033, + [SMALL_STATE(811)] = 40058, + [SMALL_STATE(812)] = 40083, + [SMALL_STATE(813)] = 40108, + [SMALL_STATE(814)] = 40133, + [SMALL_STATE(815)] = 40149, + [SMALL_STATE(816)] = 40167, + [SMALL_STATE(817)] = 40183, + [SMALL_STATE(818)] = 40199, + [SMALL_STATE(819)] = 40215, + [SMALL_STATE(820)] = 40231, + [SMALL_STATE(821)] = 40256, + [SMALL_STATE(822)] = 40285, + [SMALL_STATE(823)] = 40314, + [SMALL_STATE(824)] = 40343, + [SMALL_STATE(825)] = 40372, + [SMALL_STATE(826)] = 40388, + [SMALL_STATE(827)] = 40412, + [SMALL_STATE(828)] = 40428, + [SMALL_STATE(829)] = 40444, + [SMALL_STATE(830)] = 40460, + [SMALL_STATE(831)] = 40476, + [SMALL_STATE(832)] = 40492, + [SMALL_STATE(833)] = 40508, + [SMALL_STATE(834)] = 40532, + [SMALL_STATE(835)] = 40554, + [SMALL_STATE(836)] = 40570, + [SMALL_STATE(837)] = 40586, + [SMALL_STATE(838)] = 40610, + [SMALL_STATE(839)] = 40626, + [SMALL_STATE(840)] = 40642, + [SMALL_STATE(841)] = 40658, + [SMALL_STATE(842)] = 40674, + [SMALL_STATE(843)] = 40690, + [SMALL_STATE(844)] = 40706, + [SMALL_STATE(845)] = 40730, + [SMALL_STATE(846)] = 40758, + [SMALL_STATE(847)] = 40774, + [SMALL_STATE(848)] = 40800, + [SMALL_STATE(849)] = 40824, + [SMALL_STATE(850)] = 40852, + [SMALL_STATE(851)] = 40868, + [SMALL_STATE(852)] = 40884, + [SMALL_STATE(853)] = 40900, + [SMALL_STATE(854)] = 40916, + [SMALL_STATE(855)] = 40940, + [SMALL_STATE(856)] = 40964, + [SMALL_STATE(857)] = 40980, + [SMALL_STATE(858)] = 40996, + [SMALL_STATE(859)] = 41012, + [SMALL_STATE(860)] = 41040, + [SMALL_STATE(861)] = 41056, + [SMALL_STATE(862)] = 41072, + [SMALL_STATE(863)] = 41088, + [SMALL_STATE(864)] = 41112, + [SMALL_STATE(865)] = 41128, + [SMALL_STATE(866)] = 41144, + [SMALL_STATE(867)] = 41168, + [SMALL_STATE(868)] = 41184, + [SMALL_STATE(869)] = 41200, + [SMALL_STATE(870)] = 41226, + [SMALL_STATE(871)] = 41242, + [SMALL_STATE(872)] = 41258, + [SMALL_STATE(873)] = 41274, + [SMALL_STATE(874)] = 41290, + [SMALL_STATE(875)] = 41306, + [SMALL_STATE(876)] = 41322, + [SMALL_STATE(877)] = 41338, + [SMALL_STATE(878)] = 41354, + [SMALL_STATE(879)] = 41375, + [SMALL_STATE(880)] = 41398, + [SMALL_STATE(881)] = 41411, + [SMALL_STATE(882)] = 41436, + [SMALL_STATE(883)] = 41461, + [SMALL_STATE(884)] = 41484, + [SMALL_STATE(885)] = 41507, + [SMALL_STATE(886)] = 41530, + [SMALL_STATE(887)] = 41553, + [SMALL_STATE(888)] = 41572, + [SMALL_STATE(889)] = 41593, + [SMALL_STATE(890)] = 41616, + [SMALL_STATE(891)] = 41629, + [SMALL_STATE(892)] = 41642, + [SMALL_STATE(893)] = 41657, + [SMALL_STATE(894)] = 41670, + [SMALL_STATE(895)] = 41683, + [SMALL_STATE(896)] = 41706, + [SMALL_STATE(897)] = 41727, + [SMALL_STATE(898)] = 41749, + [SMALL_STATE(899)] = 41771, + [SMALL_STATE(900)] = 41787, + [SMALL_STATE(901)] = 41803, + [SMALL_STATE(902)] = 41817, + [SMALL_STATE(903)] = 41839, + [SMALL_STATE(904)] = 41861, + [SMALL_STATE(905)] = 41875, + [SMALL_STATE(906)] = 41897, + [SMALL_STATE(907)] = 41919, + [SMALL_STATE(908)] = 41933, + [SMALL_STATE(909)] = 41953, + [SMALL_STATE(910)] = 41967, + [SMALL_STATE(911)] = 41985, + [SMALL_STATE(912)] = 41997, + [SMALL_STATE(913)] = 42017, + [SMALL_STATE(914)] = 42035, + [SMALL_STATE(915)] = 42055, + [SMALL_STATE(916)] = 42073, + [SMALL_STATE(917)] = 42091, + [SMALL_STATE(918)] = 42113, + [SMALL_STATE(919)] = 42135, + [SMALL_STATE(920)] = 42151, + [SMALL_STATE(921)] = 42173, + [SMALL_STATE(922)] = 42195, + [SMALL_STATE(923)] = 42217, + [SMALL_STATE(924)] = 42237, + [SMALL_STATE(925)] = 42259, + [SMALL_STATE(926)] = 42281, + [SMALL_STATE(927)] = 42293, + [SMALL_STATE(928)] = 42309, + [SMALL_STATE(929)] = 42325, + [SMALL_STATE(930)] = 42345, + [SMALL_STATE(931)] = 42367, + [SMALL_STATE(932)] = 42389, + [SMALL_STATE(933)] = 42411, + [SMALL_STATE(934)] = 42425, + [SMALL_STATE(935)] = 42443, + [SMALL_STATE(936)] = 42465, + [SMALL_STATE(937)] = 42483, + [SMALL_STATE(938)] = 42505, + [SMALL_STATE(939)] = 42527, + [SMALL_STATE(940)] = 42549, + [SMALL_STATE(941)] = 42563, + [SMALL_STATE(942)] = 42585, + [SMALL_STATE(943)] = 42607, + [SMALL_STATE(944)] = 42627, + [SMALL_STATE(945)] = 42649, + [SMALL_STATE(946)] = 42671, + [SMALL_STATE(947)] = 42693, + [SMALL_STATE(948)] = 42715, + [SMALL_STATE(949)] = 42733, + [SMALL_STATE(950)] = 42755, + [SMALL_STATE(951)] = 42777, + [SMALL_STATE(952)] = 42799, + [SMALL_STATE(953)] = 42818, + [SMALL_STATE(954)] = 42837, + [SMALL_STATE(955)] = 42856, + [SMALL_STATE(956)] = 42873, + [SMALL_STATE(957)] = 42890, + [SMALL_STATE(958)] = 42909, + [SMALL_STATE(959)] = 42924, + [SMALL_STATE(960)] = 42943, + [SMALL_STATE(961)] = 42962, + [SMALL_STATE(962)] = 42981, + [SMALL_STATE(963)] = 42998, + [SMALL_STATE(964)] = 43015, + [SMALL_STATE(965)] = 43034, + [SMALL_STATE(966)] = 43053, + [SMALL_STATE(967)] = 43064, + [SMALL_STATE(968)] = 43083, + [SMALL_STATE(969)] = 43102, + [SMALL_STATE(970)] = 43121, + [SMALL_STATE(971)] = 43136, + [SMALL_STATE(972)] = 43151, + [SMALL_STATE(973)] = 43162, + [SMALL_STATE(974)] = 43181, + [SMALL_STATE(975)] = 43200, + [SMALL_STATE(976)] = 43211, + [SMALL_STATE(977)] = 43230, + [SMALL_STATE(978)] = 43247, + [SMALL_STATE(979)] = 43266, + [SMALL_STATE(980)] = 43283, + [SMALL_STATE(981)] = 43294, + [SMALL_STATE(982)] = 43305, + [SMALL_STATE(983)] = 43320, + [SMALL_STATE(984)] = 43339, + [SMALL_STATE(985)] = 43354, + [SMALL_STATE(986)] = 43373, + [SMALL_STATE(987)] = 43392, + [SMALL_STATE(988)] = 43411, + [SMALL_STATE(989)] = 43430, + [SMALL_STATE(990)] = 43441, + [SMALL_STATE(991)] = 43456, + [SMALL_STATE(992)] = 43471, + [SMALL_STATE(993)] = 43488, + [SMALL_STATE(994)] = 43503, + [SMALL_STATE(995)] = 43520, + [SMALL_STATE(996)] = 43539, + [SMALL_STATE(997)] = 43558, + [SMALL_STATE(998)] = 43573, + [SMALL_STATE(999)] = 43590, + [SMALL_STATE(1000)] = 43607, + [SMALL_STATE(1001)] = 43626, + [SMALL_STATE(1002)] = 43641, + [SMALL_STATE(1003)] = 43660, + [SMALL_STATE(1004)] = 43679, + [SMALL_STATE(1005)] = 43698, + [SMALL_STATE(1006)] = 43715, + [SMALL_STATE(1007)] = 43730, + [SMALL_STATE(1008)] = 43749, + [SMALL_STATE(1009)] = 43766, + [SMALL_STATE(1010)] = 43781, + [SMALL_STATE(1011)] = 43791, + [SMALL_STATE(1012)] = 43803, + [SMALL_STATE(1013)] = 43817, + [SMALL_STATE(1014)] = 43833, + [SMALL_STATE(1015)] = 43849, + [SMALL_STATE(1016)] = 43859, + [SMALL_STATE(1017)] = 43875, + [SMALL_STATE(1018)] = 43889, + [SMALL_STATE(1019)] = 43905, + [SMALL_STATE(1020)] = 43921, + [SMALL_STATE(1021)] = 43937, + [SMALL_STATE(1022)] = 43953, + [SMALL_STATE(1023)] = 43969, + [SMALL_STATE(1024)] = 43985, + [SMALL_STATE(1025)] = 44001, + [SMALL_STATE(1026)] = 44017, + [SMALL_STATE(1027)] = 44033, + [SMALL_STATE(1028)] = 44049, + [SMALL_STATE(1029)] = 44063, + [SMALL_STATE(1030)] = 44075, + [SMALL_STATE(1031)] = 44091, + [SMALL_STATE(1032)] = 44107, + [SMALL_STATE(1033)] = 44123, + [SMALL_STATE(1034)] = 44139, + [SMALL_STATE(1035)] = 44153, + [SMALL_STATE(1036)] = 44167, + [SMALL_STATE(1037)] = 44183, + [SMALL_STATE(1038)] = 44199, + [SMALL_STATE(1039)] = 44213, + [SMALL_STATE(1040)] = 44229, + [SMALL_STATE(1041)] = 44243, + [SMALL_STATE(1042)] = 44257, + [SMALL_STATE(1043)] = 44271, + [SMALL_STATE(1044)] = 44287, + [SMALL_STATE(1045)] = 44297, + [SMALL_STATE(1046)] = 44307, + [SMALL_STATE(1047)] = 44323, + [SMALL_STATE(1048)] = 44339, + [SMALL_STATE(1049)] = 44355, + [SMALL_STATE(1050)] = 44371, + [SMALL_STATE(1051)] = 44387, + [SMALL_STATE(1052)] = 44403, + [SMALL_STATE(1053)] = 44419, + [SMALL_STATE(1054)] = 44433, + [SMALL_STATE(1055)] = 44449, + [SMALL_STATE(1056)] = 44463, + [SMALL_STATE(1057)] = 44477, + [SMALL_STATE(1058)] = 44493, + [SMALL_STATE(1059)] = 44509, + [SMALL_STATE(1060)] = 44525, + [SMALL_STATE(1061)] = 44541, + [SMALL_STATE(1062)] = 44551, + [SMALL_STATE(1063)] = 44567, + [SMALL_STATE(1064)] = 44583, + [SMALL_STATE(1065)] = 44599, + [SMALL_STATE(1066)] = 44615, + [SMALL_STATE(1067)] = 44631, + [SMALL_STATE(1068)] = 44647, + [SMALL_STATE(1069)] = 44663, + [SMALL_STATE(1070)] = 44677, + [SMALL_STATE(1071)] = 44693, + [SMALL_STATE(1072)] = 44709, + [SMALL_STATE(1073)] = 44725, + [SMALL_STATE(1074)] = 44741, + [SMALL_STATE(1075)] = 44757, + [SMALL_STATE(1076)] = 44773, + [SMALL_STATE(1077)] = 44789, + [SMALL_STATE(1078)] = 44805, + [SMALL_STATE(1079)] = 44817, + [SMALL_STATE(1080)] = 44831, + [SMALL_STATE(1081)] = 44845, + [SMALL_STATE(1082)] = 44857, + [SMALL_STATE(1083)] = 44871, + [SMALL_STATE(1084)] = 44885, + [SMALL_STATE(1085)] = 44899, + [SMALL_STATE(1086)] = 44915, + [SMALL_STATE(1087)] = 44925, + [SMALL_STATE(1088)] = 44937, + [SMALL_STATE(1089)] = 44951, + [SMALL_STATE(1090)] = 44967, + [SMALL_STATE(1091)] = 44977, + [SMALL_STATE(1092)] = 44993, + [SMALL_STATE(1093)] = 45009, + [SMALL_STATE(1094)] = 45021, + [SMALL_STATE(1095)] = 45031, + [SMALL_STATE(1096)] = 45047, + [SMALL_STATE(1097)] = 45057, + [SMALL_STATE(1098)] = 45073, + [SMALL_STATE(1099)] = 45089, + [SMALL_STATE(1100)] = 45105, + [SMALL_STATE(1101)] = 45121, + [SMALL_STATE(1102)] = 45137, + [SMALL_STATE(1103)] = 45151, + [SMALL_STATE(1104)] = 45161, + [SMALL_STATE(1105)] = 45177, + [SMALL_STATE(1106)] = 45193, + [SMALL_STATE(1107)] = 45207, + [SMALL_STATE(1108)] = 45221, + [SMALL_STATE(1109)] = 45237, + [SMALL_STATE(1110)] = 45251, + [SMALL_STATE(1111)] = 45267, + [SMALL_STATE(1112)] = 45279, + [SMALL_STATE(1113)] = 45295, + [SMALL_STATE(1114)] = 45309, + [SMALL_STATE(1115)] = 45323, + [SMALL_STATE(1116)] = 45337, + [SMALL_STATE(1117)] = 45353, + [SMALL_STATE(1118)] = 45369, + [SMALL_STATE(1119)] = 45385, + [SMALL_STATE(1120)] = 45399, + [SMALL_STATE(1121)] = 45409, + [SMALL_STATE(1122)] = 45423, + [SMALL_STATE(1123)] = 45439, + [SMALL_STATE(1124)] = 45451, + [SMALL_STATE(1125)] = 45467, + [SMALL_STATE(1126)] = 45483, + [SMALL_STATE(1127)] = 45499, + [SMALL_STATE(1128)] = 45515, + [SMALL_STATE(1129)] = 45531, + [SMALL_STATE(1130)] = 45547, + [SMALL_STATE(1131)] = 45560, + [SMALL_STATE(1132)] = 45571, + [SMALL_STATE(1133)] = 45584, + [SMALL_STATE(1134)] = 45597, + [SMALL_STATE(1135)] = 45608, + [SMALL_STATE(1136)] = 45621, + [SMALL_STATE(1137)] = 45630, + [SMALL_STATE(1138)] = 45639, + [SMALL_STATE(1139)] = 45652, + [SMALL_STATE(1140)] = 45661, + [SMALL_STATE(1141)] = 45670, + [SMALL_STATE(1142)] = 45683, + [SMALL_STATE(1143)] = 45696, + [SMALL_STATE(1144)] = 45707, + [SMALL_STATE(1145)] = 45720, + [SMALL_STATE(1146)] = 45729, + [SMALL_STATE(1147)] = 45742, + [SMALL_STATE(1148)] = 45755, + [SMALL_STATE(1149)] = 45768, + [SMALL_STATE(1150)] = 45777, + [SMALL_STATE(1151)] = 45788, + [SMALL_STATE(1152)] = 45797, + [SMALL_STATE(1153)] = 45810, + [SMALL_STATE(1154)] = 45819, + [SMALL_STATE(1155)] = 45832, + [SMALL_STATE(1156)] = 45845, + [SMALL_STATE(1157)] = 45858, + [SMALL_STATE(1158)] = 45867, + [SMALL_STATE(1159)] = 45880, + [SMALL_STATE(1160)] = 45893, + [SMALL_STATE(1161)] = 45906, + [SMALL_STATE(1162)] = 45915, + [SMALL_STATE(1163)] = 45928, + [SMALL_STATE(1164)] = 45941, + [SMALL_STATE(1165)] = 45954, + [SMALL_STATE(1166)] = 45967, + [SMALL_STATE(1167)] = 45976, + [SMALL_STATE(1168)] = 45989, + [SMALL_STATE(1169)] = 45998, + [SMALL_STATE(1170)] = 46011, + [SMALL_STATE(1171)] = 46024, + [SMALL_STATE(1172)] = 46033, + [SMALL_STATE(1173)] = 46046, + [SMALL_STATE(1174)] = 46059, + [SMALL_STATE(1175)] = 46072, + [SMALL_STATE(1176)] = 46081, + [SMALL_STATE(1177)] = 46094, + [SMALL_STATE(1178)] = 46107, + [SMALL_STATE(1179)] = 46120, + [SMALL_STATE(1180)] = 46133, + [SMALL_STATE(1181)] = 46146, + [SMALL_STATE(1182)] = 46159, + [SMALL_STATE(1183)] = 46172, + [SMALL_STATE(1184)] = 46185, + [SMALL_STATE(1185)] = 46198, + [SMALL_STATE(1186)] = 46211, + [SMALL_STATE(1187)] = 46220, + [SMALL_STATE(1188)] = 46233, + [SMALL_STATE(1189)] = 46246, + [SMALL_STATE(1190)] = 46255, + [SMALL_STATE(1191)] = 46268, + [SMALL_STATE(1192)] = 46281, + [SMALL_STATE(1193)] = 46294, + [SMALL_STATE(1194)] = 46307, + [SMALL_STATE(1195)] = 46320, + [SMALL_STATE(1196)] = 46333, + [SMALL_STATE(1197)] = 46346, + [SMALL_STATE(1198)] = 46355, + [SMALL_STATE(1199)] = 46368, + [SMALL_STATE(1200)] = 46381, + [SMALL_STATE(1201)] = 46394, + [SMALL_STATE(1202)] = 46407, + [SMALL_STATE(1203)] = 46418, + [SMALL_STATE(1204)] = 46431, + [SMALL_STATE(1205)] = 46444, + [SMALL_STATE(1206)] = 46457, + [SMALL_STATE(1207)] = 46470, + [SMALL_STATE(1208)] = 46483, + [SMALL_STATE(1209)] = 46496, + [SMALL_STATE(1210)] = 46505, + [SMALL_STATE(1211)] = 46514, + [SMALL_STATE(1212)] = 46527, + [SMALL_STATE(1213)] = 46540, + [SMALL_STATE(1214)] = 46549, + [SMALL_STATE(1215)] = 46560, + [SMALL_STATE(1216)] = 46569, + [SMALL_STATE(1217)] = 46578, + [SMALL_STATE(1218)] = 46591, + [SMALL_STATE(1219)] = 46604, + [SMALL_STATE(1220)] = 46613, + [SMALL_STATE(1221)] = 46626, + [SMALL_STATE(1222)] = 46639, + [SMALL_STATE(1223)] = 46648, + [SMALL_STATE(1224)] = 46657, + [SMALL_STATE(1225)] = 46666, + [SMALL_STATE(1226)] = 46679, + [SMALL_STATE(1227)] = 46692, + [SMALL_STATE(1228)] = 46701, + [SMALL_STATE(1229)] = 46710, + [SMALL_STATE(1230)] = 46723, + [SMALL_STATE(1231)] = 46732, + [SMALL_STATE(1232)] = 46745, + [SMALL_STATE(1233)] = 46758, + [SMALL_STATE(1234)] = 46767, + [SMALL_STATE(1235)] = 46780, + [SMALL_STATE(1236)] = 46789, + [SMALL_STATE(1237)] = 46798, + [SMALL_STATE(1238)] = 46811, + [SMALL_STATE(1239)] = 46824, + [SMALL_STATE(1240)] = 46837, + [SMALL_STATE(1241)] = 46846, + [SMALL_STATE(1242)] = 46855, + [SMALL_STATE(1243)] = 46868, + [SMALL_STATE(1244)] = 46881, + [SMALL_STATE(1245)] = 46894, + [SMALL_STATE(1246)] = 46907, + [SMALL_STATE(1247)] = 46920, + [SMALL_STATE(1248)] = 46933, + [SMALL_STATE(1249)] = 46946, + [SMALL_STATE(1250)] = 46959, + [SMALL_STATE(1251)] = 46972, + [SMALL_STATE(1252)] = 46985, + [SMALL_STATE(1253)] = 46998, + [SMALL_STATE(1254)] = 47011, + [SMALL_STATE(1255)] = 47024, + [SMALL_STATE(1256)] = 47037, + [SMALL_STATE(1257)] = 47046, + [SMALL_STATE(1258)] = 47055, + [SMALL_STATE(1259)] = 47064, + [SMALL_STATE(1260)] = 47077, + [SMALL_STATE(1261)] = 47086, + [SMALL_STATE(1262)] = 47099, + [SMALL_STATE(1263)] = 47112, + [SMALL_STATE(1264)] = 47121, + [SMALL_STATE(1265)] = 47130, + [SMALL_STATE(1266)] = 47143, + [SMALL_STATE(1267)] = 47152, + [SMALL_STATE(1268)] = 47165, + [SMALL_STATE(1269)] = 47178, + [SMALL_STATE(1270)] = 47191, + [SMALL_STATE(1271)] = 47204, + [SMALL_STATE(1272)] = 47217, + [SMALL_STATE(1273)] = 47230, + [SMALL_STATE(1274)] = 47243, + [SMALL_STATE(1275)] = 47252, + [SMALL_STATE(1276)] = 47265, + [SMALL_STATE(1277)] = 47278, + [SMALL_STATE(1278)] = 47291, + [SMALL_STATE(1279)] = 47304, + [SMALL_STATE(1280)] = 47317, + [SMALL_STATE(1281)] = 47330, + [SMALL_STATE(1282)] = 47341, + [SMALL_STATE(1283)] = 47354, + [SMALL_STATE(1284)] = 47367, + [SMALL_STATE(1285)] = 47380, + [SMALL_STATE(1286)] = 47393, + [SMALL_STATE(1287)] = 47406, + [SMALL_STATE(1288)] = 47417, + [SMALL_STATE(1289)] = 47430, + [SMALL_STATE(1290)] = 47443, + [SMALL_STATE(1291)] = 47456, + [SMALL_STATE(1292)] = 47469, + [SMALL_STATE(1293)] = 47482, + [SMALL_STATE(1294)] = 47493, + [SMALL_STATE(1295)] = 47506, + [SMALL_STATE(1296)] = 47515, + [SMALL_STATE(1297)] = 47524, + [SMALL_STATE(1298)] = 47537, + [SMALL_STATE(1299)] = 47550, + [SMALL_STATE(1300)] = 47561, + [SMALL_STATE(1301)] = 47574, + [SMALL_STATE(1302)] = 47587, + [SMALL_STATE(1303)] = 47600, + [SMALL_STATE(1304)] = 47613, + [SMALL_STATE(1305)] = 47626, + [SMALL_STATE(1306)] = 47637, + [SMALL_STATE(1307)] = 47650, + [SMALL_STATE(1308)] = 47659, + [SMALL_STATE(1309)] = 47672, + [SMALL_STATE(1310)] = 47681, + [SMALL_STATE(1311)] = 47694, + [SMALL_STATE(1312)] = 47703, + [SMALL_STATE(1313)] = 47716, + [SMALL_STATE(1314)] = 47725, + [SMALL_STATE(1315)] = 47738, + [SMALL_STATE(1316)] = 47751, + [SMALL_STATE(1317)] = 47764, + [SMALL_STATE(1318)] = 47773, + [SMALL_STATE(1319)] = 47786, + [SMALL_STATE(1320)] = 47799, + [SMALL_STATE(1321)] = 47810, + [SMALL_STATE(1322)] = 47823, + [SMALL_STATE(1323)] = 47832, + [SMALL_STATE(1324)] = 47845, + [SMALL_STATE(1325)] = 47854, + [SMALL_STATE(1326)] = 47862, + [SMALL_STATE(1327)] = 47870, + [SMALL_STATE(1328)] = 47878, + [SMALL_STATE(1329)] = 47886, + [SMALL_STATE(1330)] = 47896, + [SMALL_STATE(1331)] = 47906, + [SMALL_STATE(1332)] = 47916, + [SMALL_STATE(1333)] = 47926, + [SMALL_STATE(1334)] = 47934, + [SMALL_STATE(1335)] = 47942, + [SMALL_STATE(1336)] = 47952, + [SMALL_STATE(1337)] = 47960, + [SMALL_STATE(1338)] = 47968, + [SMALL_STATE(1339)] = 47978, + [SMALL_STATE(1340)] = 47988, + [SMALL_STATE(1341)] = 47996, + [SMALL_STATE(1342)] = 48006, + [SMALL_STATE(1343)] = 48014, + [SMALL_STATE(1344)] = 48022, + [SMALL_STATE(1345)] = 48030, + [SMALL_STATE(1346)] = 48038, + [SMALL_STATE(1347)] = 48046, + [SMALL_STATE(1348)] = 48054, + [SMALL_STATE(1349)] = 48062, + [SMALL_STATE(1350)] = 48072, + [SMALL_STATE(1351)] = 48082, + [SMALL_STATE(1352)] = 48090, + [SMALL_STATE(1353)] = 48098, + [SMALL_STATE(1354)] = 48106, + [SMALL_STATE(1355)] = 48116, + [SMALL_STATE(1356)] = 48124, + [SMALL_STATE(1357)] = 48134, + [SMALL_STATE(1358)] = 48144, + [SMALL_STATE(1359)] = 48152, + [SMALL_STATE(1360)] = 48160, + [SMALL_STATE(1361)] = 48168, + [SMALL_STATE(1362)] = 48176, + [SMALL_STATE(1363)] = 48184, + [SMALL_STATE(1364)] = 48194, + [SMALL_STATE(1365)] = 48202, + [SMALL_STATE(1366)] = 48210, + [SMALL_STATE(1367)] = 48218, + [SMALL_STATE(1368)] = 48228, + [SMALL_STATE(1369)] = 48238, + [SMALL_STATE(1370)] = 48248, + [SMALL_STATE(1371)] = 48258, + [SMALL_STATE(1372)] = 48268, + [SMALL_STATE(1373)] = 48276, + [SMALL_STATE(1374)] = 48286, + [SMALL_STATE(1375)] = 48294, + [SMALL_STATE(1376)] = 48302, + [SMALL_STATE(1377)] = 48310, + [SMALL_STATE(1378)] = 48320, + [SMALL_STATE(1379)] = 48328, + [SMALL_STATE(1380)] = 48336, + [SMALL_STATE(1381)] = 48346, + [SMALL_STATE(1382)] = 48356, + [SMALL_STATE(1383)] = 48364, + [SMALL_STATE(1384)] = 48374, + [SMALL_STATE(1385)] = 48384, + [SMALL_STATE(1386)] = 48392, + [SMALL_STATE(1387)] = 48402, + [SMALL_STATE(1388)] = 48410, + [SMALL_STATE(1389)] = 48418, + [SMALL_STATE(1390)] = 48426, + [SMALL_STATE(1391)] = 48436, + [SMALL_STATE(1392)] = 48444, + [SMALL_STATE(1393)] = 48454, + [SMALL_STATE(1394)] = 48464, + [SMALL_STATE(1395)] = 48474, + [SMALL_STATE(1396)] = 48484, + [SMALL_STATE(1397)] = 48494, + [SMALL_STATE(1398)] = 48504, + [SMALL_STATE(1399)] = 48512, + [SMALL_STATE(1400)] = 48520, + [SMALL_STATE(1401)] = 48530, + [SMALL_STATE(1402)] = 48540, + [SMALL_STATE(1403)] = 48550, + [SMALL_STATE(1404)] = 48558, + [SMALL_STATE(1405)] = 48568, + [SMALL_STATE(1406)] = 48576, + [SMALL_STATE(1407)] = 48586, + [SMALL_STATE(1408)] = 48594, + [SMALL_STATE(1409)] = 48604, + [SMALL_STATE(1410)] = 48614, + [SMALL_STATE(1411)] = 48622, + [SMALL_STATE(1412)] = 48632, + [SMALL_STATE(1413)] = 48642, + [SMALL_STATE(1414)] = 48650, + [SMALL_STATE(1415)] = 48658, + [SMALL_STATE(1416)] = 48668, + [SMALL_STATE(1417)] = 48676, + [SMALL_STATE(1418)] = 48684, + [SMALL_STATE(1419)] = 48692, + [SMALL_STATE(1420)] = 48702, + [SMALL_STATE(1421)] = 48712, + [SMALL_STATE(1422)] = 48720, + [SMALL_STATE(1423)] = 48730, + [SMALL_STATE(1424)] = 48740, + [SMALL_STATE(1425)] = 48750, + [SMALL_STATE(1426)] = 48760, + [SMALL_STATE(1427)] = 48770, + [SMALL_STATE(1428)] = 48778, + [SMALL_STATE(1429)] = 48788, + [SMALL_STATE(1430)] = 48796, + [SMALL_STATE(1431)] = 48806, + [SMALL_STATE(1432)] = 48816, + [SMALL_STATE(1433)] = 48826, + [SMALL_STATE(1434)] = 48836, + [SMALL_STATE(1435)] = 48846, + [SMALL_STATE(1436)] = 48856, + [SMALL_STATE(1437)] = 48866, + [SMALL_STATE(1438)] = 48874, + [SMALL_STATE(1439)] = 48884, + [SMALL_STATE(1440)] = 48894, + [SMALL_STATE(1441)] = 48904, + [SMALL_STATE(1442)] = 48914, + [SMALL_STATE(1443)] = 48922, + [SMALL_STATE(1444)] = 48932, + [SMALL_STATE(1445)] = 48940, + [SMALL_STATE(1446)] = 48950, + [SMALL_STATE(1447)] = 48958, + [SMALL_STATE(1448)] = 48968, + [SMALL_STATE(1449)] = 48976, + [SMALL_STATE(1450)] = 48984, + [SMALL_STATE(1451)] = 48992, + [SMALL_STATE(1452)] = 49002, + [SMALL_STATE(1453)] = 49010, + [SMALL_STATE(1454)] = 49018, + [SMALL_STATE(1455)] = 49026, + [SMALL_STATE(1456)] = 49036, + [SMALL_STATE(1457)] = 49044, + [SMALL_STATE(1458)] = 49054, + [SMALL_STATE(1459)] = 49064, + [SMALL_STATE(1460)] = 49072, + [SMALL_STATE(1461)] = 49080, + [SMALL_STATE(1462)] = 49090, + [SMALL_STATE(1463)] = 49098, + [SMALL_STATE(1464)] = 49108, + [SMALL_STATE(1465)] = 49116, + [SMALL_STATE(1466)] = 49124, + [SMALL_STATE(1467)] = 49134, + [SMALL_STATE(1468)] = 49144, + [SMALL_STATE(1469)] = 49152, + [SMALL_STATE(1470)] = 49162, + [SMALL_STATE(1471)] = 49170, + [SMALL_STATE(1472)] = 49178, + [SMALL_STATE(1473)] = 49186, + [SMALL_STATE(1474)] = 49194, + [SMALL_STATE(1475)] = 49201, + [SMALL_STATE(1476)] = 49208, + [SMALL_STATE(1477)] = 49215, + [SMALL_STATE(1478)] = 49222, + [SMALL_STATE(1479)] = 49229, + [SMALL_STATE(1480)] = 49236, + [SMALL_STATE(1481)] = 49243, + [SMALL_STATE(1482)] = 49250, + [SMALL_STATE(1483)] = 49257, + [SMALL_STATE(1484)] = 49264, + [SMALL_STATE(1485)] = 49271, + [SMALL_STATE(1486)] = 49278, + [SMALL_STATE(1487)] = 49285, + [SMALL_STATE(1488)] = 49292, + [SMALL_STATE(1489)] = 49299, + [SMALL_STATE(1490)] = 49306, + [SMALL_STATE(1491)] = 49313, + [SMALL_STATE(1492)] = 49320, + [SMALL_STATE(1493)] = 49327, + [SMALL_STATE(1494)] = 49334, + [SMALL_STATE(1495)] = 49341, + [SMALL_STATE(1496)] = 49348, + [SMALL_STATE(1497)] = 49355, + [SMALL_STATE(1498)] = 49362, + [SMALL_STATE(1499)] = 49369, + [SMALL_STATE(1500)] = 49376, + [SMALL_STATE(1501)] = 49383, + [SMALL_STATE(1502)] = 49390, + [SMALL_STATE(1503)] = 49397, + [SMALL_STATE(1504)] = 49404, + [SMALL_STATE(1505)] = 49411, + [SMALL_STATE(1506)] = 49418, + [SMALL_STATE(1507)] = 49425, + [SMALL_STATE(1508)] = 49432, + [SMALL_STATE(1509)] = 49439, + [SMALL_STATE(1510)] = 49446, + [SMALL_STATE(1511)] = 49453, + [SMALL_STATE(1512)] = 49460, + [SMALL_STATE(1513)] = 49467, + [SMALL_STATE(1514)] = 49474, + [SMALL_STATE(1515)] = 49481, + [SMALL_STATE(1516)] = 49488, + [SMALL_STATE(1517)] = 49495, + [SMALL_STATE(1518)] = 49502, + [SMALL_STATE(1519)] = 49509, + [SMALL_STATE(1520)] = 49516, + [SMALL_STATE(1521)] = 49523, + [SMALL_STATE(1522)] = 49530, + [SMALL_STATE(1523)] = 49537, + [SMALL_STATE(1524)] = 49544, + [SMALL_STATE(1525)] = 49551, + [SMALL_STATE(1526)] = 49558, + [SMALL_STATE(1527)] = 49565, + [SMALL_STATE(1528)] = 49572, + [SMALL_STATE(1529)] = 49579, + [SMALL_STATE(1530)] = 49586, + [SMALL_STATE(1531)] = 49593, + [SMALL_STATE(1532)] = 49600, + [SMALL_STATE(1533)] = 49607, + [SMALL_STATE(1534)] = 49614, + [SMALL_STATE(1535)] = 49621, + [SMALL_STATE(1536)] = 49628, + [SMALL_STATE(1537)] = 49635, + [SMALL_STATE(1538)] = 49642, + [SMALL_STATE(1539)] = 49649, + [SMALL_STATE(1540)] = 49656, + [SMALL_STATE(1541)] = 49663, + [SMALL_STATE(1542)] = 49670, + [SMALL_STATE(1543)] = 49677, + [SMALL_STATE(1544)] = 49684, + [SMALL_STATE(1545)] = 49691, + [SMALL_STATE(1546)] = 49698, + [SMALL_STATE(1547)] = 49705, + [SMALL_STATE(1548)] = 49712, + [SMALL_STATE(1549)] = 49719, + [SMALL_STATE(1550)] = 49726, + [SMALL_STATE(1551)] = 49733, + [SMALL_STATE(1552)] = 49740, + [SMALL_STATE(1553)] = 49747, + [SMALL_STATE(1554)] = 49754, + [SMALL_STATE(1555)] = 49761, + [SMALL_STATE(1556)] = 49768, + [SMALL_STATE(1557)] = 49775, + [SMALL_STATE(1558)] = 49782, + [SMALL_STATE(1559)] = 49789, + [SMALL_STATE(1560)] = 49796, + [SMALL_STATE(1561)] = 49803, + [SMALL_STATE(1562)] = 49810, + [SMALL_STATE(1563)] = 49817, + [SMALL_STATE(1564)] = 49824, + [SMALL_STATE(1565)] = 49831, + [SMALL_STATE(1566)] = 49838, + [SMALL_STATE(1567)] = 49845, + [SMALL_STATE(1568)] = 49852, + [SMALL_STATE(1569)] = 49859, + [SMALL_STATE(1570)] = 49866, + [SMALL_STATE(1571)] = 49873, + [SMALL_STATE(1572)] = 49880, + [SMALL_STATE(1573)] = 49887, + [SMALL_STATE(1574)] = 49894, + [SMALL_STATE(1575)] = 49901, + [SMALL_STATE(1576)] = 49908, + [SMALL_STATE(1577)] = 49915, + [SMALL_STATE(1578)] = 49922, + [SMALL_STATE(1579)] = 49929, + [SMALL_STATE(1580)] = 49936, + [SMALL_STATE(1581)] = 49943, + [SMALL_STATE(1582)] = 49950, + [SMALL_STATE(1583)] = 49957, + [SMALL_STATE(1584)] = 49964, + [SMALL_STATE(1585)] = 49971, + [SMALL_STATE(1586)] = 49978, + [SMALL_STATE(1587)] = 49985, + [SMALL_STATE(1588)] = 49992, + [SMALL_STATE(1589)] = 49999, + [SMALL_STATE(1590)] = 50006, + [SMALL_STATE(1591)] = 50013, + [SMALL_STATE(1592)] = 50020, + [SMALL_STATE(1593)] = 50027, + [SMALL_STATE(1594)] = 50034, + [SMALL_STATE(1595)] = 50041, + [SMALL_STATE(1596)] = 50048, + [SMALL_STATE(1597)] = 50055, + [SMALL_STATE(1598)] = 50062, + [SMALL_STATE(1599)] = 50069, + [SMALL_STATE(1600)] = 50076, + [SMALL_STATE(1601)] = 50083, + [SMALL_STATE(1602)] = 50090, + [SMALL_STATE(1603)] = 50097, + [SMALL_STATE(1604)] = 50104, + [SMALL_STATE(1605)] = 50111, + [SMALL_STATE(1606)] = 50118, + [SMALL_STATE(1607)] = 50125, + [SMALL_STATE(1608)] = 50132, + [SMALL_STATE(1609)] = 50139, + [SMALL_STATE(1610)] = 50146, + [SMALL_STATE(1611)] = 50153, + [SMALL_STATE(1612)] = 50160, + [SMALL_STATE(1613)] = 50167, + [SMALL_STATE(1614)] = 50174, + [SMALL_STATE(1615)] = 50181, + [SMALL_STATE(1616)] = 50188, + [SMALL_STATE(1617)] = 50195, + [SMALL_STATE(1618)] = 50202, + [SMALL_STATE(1619)] = 50209, + [SMALL_STATE(1620)] = 50216, + [SMALL_STATE(1621)] = 50223, + [SMALL_STATE(1622)] = 50230, + [SMALL_STATE(1623)] = 50237, + [SMALL_STATE(1624)] = 50244, + [SMALL_STATE(1625)] = 50251, + [SMALL_STATE(1626)] = 50258, + [SMALL_STATE(1627)] = 50265, + [SMALL_STATE(1628)] = 50272, + [SMALL_STATE(1629)] = 50279, + [SMALL_STATE(1630)] = 50286, + [SMALL_STATE(1631)] = 50293, + [SMALL_STATE(1632)] = 50300, + [SMALL_STATE(1633)] = 50307, + [SMALL_STATE(1634)] = 50314, + [SMALL_STATE(1635)] = 50321, + [SMALL_STATE(1636)] = 50328, + [SMALL_STATE(1637)] = 50335, + [SMALL_STATE(1638)] = 50342, + [SMALL_STATE(1639)] = 50349, + [SMALL_STATE(1640)] = 50356, + [SMALL_STATE(1641)] = 50363, + [SMALL_STATE(1642)] = 50370, + [SMALL_STATE(1643)] = 50377, + [SMALL_STATE(1644)] = 50384, + [SMALL_STATE(1645)] = 50391, + [SMALL_STATE(1646)] = 50398, + [SMALL_STATE(1647)] = 50405, + [SMALL_STATE(1648)] = 50412, + [SMALL_STATE(1649)] = 50419, + [SMALL_STATE(1650)] = 50426, + [SMALL_STATE(1651)] = 50433, + [SMALL_STATE(1652)] = 50440, + [SMALL_STATE(1653)] = 50447, + [SMALL_STATE(1654)] = 50454, + [SMALL_STATE(1655)] = 50461, + [SMALL_STATE(1656)] = 50468, + [SMALL_STATE(1657)] = 50475, + [SMALL_STATE(1658)] = 50482, + [SMALL_STATE(1659)] = 50489, + [SMALL_STATE(1660)] = 50496, + [SMALL_STATE(1661)] = 50503, + [SMALL_STATE(1662)] = 50510, + [SMALL_STATE(1663)] = 50517, + [SMALL_STATE(1664)] = 50524, + [SMALL_STATE(1665)] = 50531, + [SMALL_STATE(1666)] = 50538, + [SMALL_STATE(1667)] = 50545, + [SMALL_STATE(1668)] = 50552, + [SMALL_STATE(1669)] = 50559, + [SMALL_STATE(1670)] = 50566, + [SMALL_STATE(1671)] = 50573, + [SMALL_STATE(1672)] = 50580, + [SMALL_STATE(1673)] = 50587, + [SMALL_STATE(1674)] = 50594, + [SMALL_STATE(1675)] = 50601, + [SMALL_STATE(1676)] = 50608, + [SMALL_STATE(1677)] = 50615, + [SMALL_STATE(1678)] = 50622, + [SMALL_STATE(1679)] = 50629, + [SMALL_STATE(1680)] = 50636, + [SMALL_STATE(1681)] = 50643, + [SMALL_STATE(1682)] = 50650, + [SMALL_STATE(1683)] = 50657, + [SMALL_STATE(1684)] = 50664, + [SMALL_STATE(1685)] = 50671, + [SMALL_STATE(1686)] = 50678, + [SMALL_STATE(1687)] = 50685, + [SMALL_STATE(1688)] = 50692, + [SMALL_STATE(1689)] = 50699, + [SMALL_STATE(1690)] = 50706, + [SMALL_STATE(1691)] = 50713, + [SMALL_STATE(1692)] = 50720, + [SMALL_STATE(1693)] = 50727, + [SMALL_STATE(1694)] = 50734, + [SMALL_STATE(1695)] = 50741, + [SMALL_STATE(1696)] = 50748, + [SMALL_STATE(1697)] = 50755, + [SMALL_STATE(1698)] = 50762, + [SMALL_STATE(1699)] = 50769, + [SMALL_STATE(1700)] = 50776, + [SMALL_STATE(1701)] = 50783, + [SMALL_STATE(1702)] = 50790, + [SMALL_STATE(1703)] = 50797, + [SMALL_STATE(1704)] = 50804, + [SMALL_STATE(1705)] = 50811, + [SMALL_STATE(1706)] = 50818, + [SMALL_STATE(1707)] = 50825, + [SMALL_STATE(1708)] = 50832, + [SMALL_STATE(1709)] = 50839, + [SMALL_STATE(1710)] = 50846, + [SMALL_STATE(1711)] = 50853, + [SMALL_STATE(1712)] = 50860, + [SMALL_STATE(1713)] = 50867, + [SMALL_STATE(1714)] = 50874, + [SMALL_STATE(1715)] = 50881, + [SMALL_STATE(1716)] = 50888, + [SMALL_STATE(1717)] = 50895, + [SMALL_STATE(1718)] = 50902, + [SMALL_STATE(1719)] = 50909, + [SMALL_STATE(1720)] = 50916, + [SMALL_STATE(1721)] = 50923, + [SMALL_STATE(1722)] = 50930, + [SMALL_STATE(1723)] = 50937, + [SMALL_STATE(1724)] = 50944, + [SMALL_STATE(1725)] = 50951, + [SMALL_STATE(1726)] = 50958, + [SMALL_STATE(1727)] = 50965, + [SMALL_STATE(1728)] = 50972, + [SMALL_STATE(1729)] = 50979, + [SMALL_STATE(1730)] = 50986, + [SMALL_STATE(1731)] = 50993, + [SMALL_STATE(1732)] = 51000, + [SMALL_STATE(1733)] = 51007, + [SMALL_STATE(1734)] = 51014, + [SMALL_STATE(1735)] = 51021, + [SMALL_STATE(1736)] = 51028, + [SMALL_STATE(1737)] = 51035, + [SMALL_STATE(1738)] = 51042, + [SMALL_STATE(1739)] = 51049, + [SMALL_STATE(1740)] = 51056, + [SMALL_STATE(1741)] = 51063, + [SMALL_STATE(1742)] = 51070, + [SMALL_STATE(1743)] = 51077, + [SMALL_STATE(1744)] = 51084, + [SMALL_STATE(1745)] = 51091, + [SMALL_STATE(1746)] = 51098, + [SMALL_STATE(1747)] = 51105, + [SMALL_STATE(1748)] = 51112, + [SMALL_STATE(1749)] = 51119, + [SMALL_STATE(1750)] = 51126, + [SMALL_STATE(1751)] = 51133, + [SMALL_STATE(1752)] = 51140, + [SMALL_STATE(1753)] = 51147, + [SMALL_STATE(1754)] = 51154, + [SMALL_STATE(1755)] = 51161, + [SMALL_STATE(1756)] = 51168, + [SMALL_STATE(1757)] = 51175, + [SMALL_STATE(1758)] = 51182, + [SMALL_STATE(1759)] = 51189, + [SMALL_STATE(1760)] = 51196, + [SMALL_STATE(1761)] = 51203, + [SMALL_STATE(1762)] = 51210, + [SMALL_STATE(1763)] = 51217, + [SMALL_STATE(1764)] = 51224, + [SMALL_STATE(1765)] = 51231, + [SMALL_STATE(1766)] = 51238, + [SMALL_STATE(1767)] = 51245, + [SMALL_STATE(1768)] = 51252, + [SMALL_STATE(1769)] = 51259, + [SMALL_STATE(1770)] = 51266, + [SMALL_STATE(1771)] = 51273, + [SMALL_STATE(1772)] = 51280, + [SMALL_STATE(1773)] = 51287, + [SMALL_STATE(1774)] = 51294, + [SMALL_STATE(1775)] = 51301, + [SMALL_STATE(1776)] = 51308, + [SMALL_STATE(1777)] = 51315, + [SMALL_STATE(1778)] = 51322, + [SMALL_STATE(1779)] = 51329, + [SMALL_STATE(1780)] = 51336, + [SMALL_STATE(1781)] = 51343, + [SMALL_STATE(1782)] = 51350, + [SMALL_STATE(1783)] = 51357, + [SMALL_STATE(1784)] = 51364, + [SMALL_STATE(1785)] = 51371, + [SMALL_STATE(1786)] = 51378, + [SMALL_STATE(1787)] = 51385, + [SMALL_STATE(1788)] = 51392, + [SMALL_STATE(1789)] = 51399, + [SMALL_STATE(1790)] = 51406, + [SMALL_STATE(1791)] = 51413, + [SMALL_STATE(1792)] = 51420, + [SMALL_STATE(1793)] = 51427, + [SMALL_STATE(1794)] = 51434, + [SMALL_STATE(1795)] = 51441, + [SMALL_STATE(1796)] = 51448, + [SMALL_STATE(1797)] = 51455, + [SMALL_STATE(1798)] = 51462, + [SMALL_STATE(1799)] = 51469, + [SMALL_STATE(1800)] = 51476, + [SMALL_STATE(1801)] = 51483, + [SMALL_STATE(1802)] = 51490, + [SMALL_STATE(1803)] = 51497, + [SMALL_STATE(1804)] = 51504, + [SMALL_STATE(1805)] = 51511, + [SMALL_STATE(1806)] = 51518, + [SMALL_STATE(1807)] = 51525, + [SMALL_STATE(1808)] = 51532, + [SMALL_STATE(1809)] = 51539, + [SMALL_STATE(1810)] = 51546, + [SMALL_STATE(1811)] = 51553, + [SMALL_STATE(1812)] = 51560, + [SMALL_STATE(1813)] = 51567, + [SMALL_STATE(1814)] = 51574, + [SMALL_STATE(1815)] = 51581, + [SMALL_STATE(1816)] = 51588, + [SMALL_STATE(1817)] = 51595, + [SMALL_STATE(1818)] = 51602, + [SMALL_STATE(1819)] = 51609, + [SMALL_STATE(1820)] = 51616, + [SMALL_STATE(1821)] = 51623, + [SMALL_STATE(1822)] = 51630, + [SMALL_STATE(1823)] = 51637, + [SMALL_STATE(1824)] = 51644, + [SMALL_STATE(1825)] = 51651, + [SMALL_STATE(1826)] = 51658, + [SMALL_STATE(1827)] = 51665, + [SMALL_STATE(1828)] = 51672, + [SMALL_STATE(1829)] = 51679, + [SMALL_STATE(1830)] = 51686, + [SMALL_STATE(1831)] = 51693, + [SMALL_STATE(1832)] = 51700, + [SMALL_STATE(1833)] = 51707, + [SMALL_STATE(1834)] = 51714, + [SMALL_STATE(1835)] = 51721, + [SMALL_STATE(1836)] = 51728, + [SMALL_STATE(1837)] = 51735, + [SMALL_STATE(1838)] = 51742, + [SMALL_STATE(1839)] = 51749, + [SMALL_STATE(1840)] = 51756, + [SMALL_STATE(1841)] = 51763, + [SMALL_STATE(1842)] = 51770, + [SMALL_STATE(1843)] = 51777, + [SMALL_STATE(1844)] = 51784, + [SMALL_STATE(1845)] = 51791, + [SMALL_STATE(1846)] = 51798, + [SMALL_STATE(1847)] = 51805, + [SMALL_STATE(1848)] = 51812, + [SMALL_STATE(1849)] = 51819, + [SMALL_STATE(1850)] = 51826, + [SMALL_STATE(1851)] = 51833, + [SMALL_STATE(1852)] = 51840, + [SMALL_STATE(1853)] = 51847, + [SMALL_STATE(1854)] = 51854, + [SMALL_STATE(1855)] = 51861, + [SMALL_STATE(1856)] = 51868, + [SMALL_STATE(1857)] = 51875, + [SMALL_STATE(1858)] = 51882, + [SMALL_STATE(1859)] = 51889, + [SMALL_STATE(1860)] = 51896, + [SMALL_STATE(1861)] = 51903, + [SMALL_STATE(1862)] = 51910, + [SMALL_STATE(1863)] = 51917, + [SMALL_STATE(1864)] = 51924, + [SMALL_STATE(1865)] = 51931, + [SMALL_STATE(1866)] = 51938, + [SMALL_STATE(1867)] = 51945, + [SMALL_STATE(1868)] = 51952, + [SMALL_STATE(1869)] = 51959, + [SMALL_STATE(1870)] = 51966, + [SMALL_STATE(1871)] = 51973, + [SMALL_STATE(1872)] = 51980, + [SMALL_STATE(1873)] = 51987, + [SMALL_STATE(1874)] = 51994, + [SMALL_STATE(1875)] = 52001, + [SMALL_STATE(1876)] = 52008, + [SMALL_STATE(1877)] = 52015, + [SMALL_STATE(1878)] = 52022, + [SMALL_STATE(1879)] = 52029, + [SMALL_STATE(1880)] = 52036, + [SMALL_STATE(1881)] = 52043, + [SMALL_STATE(1882)] = 52050, + [SMALL_STATE(1883)] = 52057, + [SMALL_STATE(1884)] = 52064, + [SMALL_STATE(1885)] = 52071, + [SMALL_STATE(1886)] = 52078, + [SMALL_STATE(1887)] = 52085, + [SMALL_STATE(1888)] = 52092, + [SMALL_STATE(1889)] = 52099, + [SMALL_STATE(1890)] = 52106, + [SMALL_STATE(1891)] = 52113, + [SMALL_STATE(1892)] = 52120, + [SMALL_STATE(1893)] = 52127, + [SMALL_STATE(1894)] = 52134, + [SMALL_STATE(1895)] = 52141, + [SMALL_STATE(1896)] = 52148, + [SMALL_STATE(1897)] = 52155, + [SMALL_STATE(1898)] = 52162, + [SMALL_STATE(1899)] = 52169, + [SMALL_STATE(1900)] = 52176, + [SMALL_STATE(1901)] = 52183, + [SMALL_STATE(1902)] = 52190, + [SMALL_STATE(1903)] = 52197, + [SMALL_STATE(1904)] = 52204, + [SMALL_STATE(1905)] = 52211, + [SMALL_STATE(1906)] = 52218, + [SMALL_STATE(1907)] = 52225, + [SMALL_STATE(1908)] = 52232, + [SMALL_STATE(1909)] = 52239, + [SMALL_STATE(1910)] = 52246, + [SMALL_STATE(1911)] = 52253, + [SMALL_STATE(1912)] = 52260, + [SMALL_STATE(1913)] = 52267, + [SMALL_STATE(1914)] = 52274, + [SMALL_STATE(1915)] = 52281, + [SMALL_STATE(1916)] = 52288, + [SMALL_STATE(1917)] = 52295, + [SMALL_STATE(1918)] = 52302, + [SMALL_STATE(1919)] = 52309, + [SMALL_STATE(1920)] = 52316, + [SMALL_STATE(1921)] = 52323, + [SMALL_STATE(1922)] = 52330, + [SMALL_STATE(1923)] = 52337, + [SMALL_STATE(1924)] = 52344, + [SMALL_STATE(1925)] = 52351, + [SMALL_STATE(1926)] = 52358, + [SMALL_STATE(1927)] = 52365, + [SMALL_STATE(1928)] = 52372, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -57470,2432 +57618,2437 @@ 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(821), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(821), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(918), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1241), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(671), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(644), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(820), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(935), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1242), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(679), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(659), [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(27), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(710), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1462), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(712), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1916), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1915), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(50), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1913), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(721), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1905), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1166), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(765), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(764), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(15), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(241), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1167), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1897), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(566), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1192), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1889), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1888), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(237), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(173), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(572), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(751), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(749), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1886), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(681), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(748), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(187), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(64), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(223), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1884), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(734), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1467), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(702), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1927), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1926), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(38), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1924), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(706), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1922), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1159), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(761), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(813), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(17), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(247), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1164), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1916), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(563), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1166), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1910), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1909), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(225), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(172), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(570), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(808), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(798), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1908), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(676), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(786), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(182), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(67), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(205), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1906), [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(967), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(794), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(644), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(710), - [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1916), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1913), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1166), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(765), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(764), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1167), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(566), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1192), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1888), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1884), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(908), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(918), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1241), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1270), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1047), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(799), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(659), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(734), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1927), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1924), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1159), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(761), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(813), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1164), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(563), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1166), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1909), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1906), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(919), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(935), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1242), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1320), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(50), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(721), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1905), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(15), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(241), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1889), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1888), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(237), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(173), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(572), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(751), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(749), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1886), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(681), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(748), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(187), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(64), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(223), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(38), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(706), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1922), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(17), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(247), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1910), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1909), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(225), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(172), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(570), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(808), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(798), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1908), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(676), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(786), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(182), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(67), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(205), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 1), [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(967), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(794), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(644), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(796), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1916), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1913), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1389), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(765), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(764), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1326), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(566), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1192), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1888), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1884), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1047), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(799), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(659), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(753), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1927), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1924), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1439), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(761), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(813), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1435), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(563), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1166), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1909), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1906), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 80), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 80), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 65), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 65), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 100), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 100), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 68), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 68), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 81), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 81), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 26), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 26), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 79), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 79), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 106), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 106), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 2), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 2), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 26), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 26), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 80), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 80), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 79), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 79), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 91), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 91), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 68), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 68), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 27), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 27), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 65), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 65), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 26), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 26), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 2), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 2), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 80), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 80), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 65), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 65), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 46), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 46), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 47), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 47), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 16), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 16), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 27), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 27), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 26), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 26), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 66), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 66), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 47), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 47), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 2), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 2), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 82), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 82), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 69), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 69), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 2), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 2), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 46), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 46), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 47), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 47), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 66), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 66), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 102), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 102), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 26), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 26), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 80), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 80), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 69), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 69), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 81), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 81), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 93), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 93), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 16), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 16), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 26), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 26), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 80), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 80), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 82), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 82), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 108), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 108), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 66), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 66), [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 47), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 47), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 81), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 81), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 3), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 3), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 3), SHIFT(597), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 3), SHIFT(89), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 34), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 34), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 34), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 34), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 34), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 34), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 102), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 102), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 34), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 34), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 34), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 34), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 94), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 94), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 85), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 85), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 71), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 71), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 82), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 82), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 48), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 48), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 67), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 67), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 109), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 109), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 3), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 3), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 109), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 109), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 97), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 97), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 104), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 104), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 37), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 37), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 64), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 64), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 26), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 26), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 97), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 97), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 35), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 35), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 33), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 33), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 60), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 60), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 83), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 83), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 61), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 61), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 18), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 18), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 60), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 60), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 33), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 33), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 69), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 69), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 61), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 61), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 48), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 48), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 3), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 3), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 30), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 30), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 57), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 57), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 86), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 86), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 76), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 76), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 33), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 33), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 97), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 97), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 64), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 64), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 28), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 28), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 64), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 64), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 29), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 29), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 49), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 49), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 50), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 50), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 64), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 64), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 51), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 51), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 29), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 29), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 108), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 108), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 57), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 57), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 30), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 30), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 52), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 52), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 53), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 53), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 3), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 3), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 28), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 28), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 97), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 97), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 95), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 95), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 57), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 57), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 59), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 59), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 64), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 64), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 37), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 37), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 59), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 59), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 57), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 57), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 57), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 57), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 76), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 76), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 93), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 93), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 69), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 69), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 92), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 92), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 103), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 103), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 33), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 33), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 26), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 26), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 53), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 53), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 18), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 18), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 52), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 52), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 48), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 48), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 64), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 64), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 101), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 101), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 51), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 51), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 50), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 50), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 92), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 92), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 67), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 67), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 49), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 49), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 3), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 3), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 82), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 82), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 22), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 22), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 28), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 28), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 107), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 107), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 3), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 3), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 67), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 67), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 3), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 3), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 81), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 81), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 81), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 81), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 3), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 3), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 3), SHIFT(592), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 3), SHIFT(89), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 104), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 104), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 34), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 34), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 34), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 34), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 96), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 96), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 34), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 34), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 34), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 34), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 34), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 34), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 86), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 86), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 68), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 68), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 61), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 61), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 33), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 33), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 63), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 63), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 106), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 106), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 99), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 99), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 65), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 65), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 3), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 3), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 26), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 26), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 106), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 106), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 65), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 65), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 33), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 33), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 28), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 28), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 99), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 99), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 57), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 57), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 105), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 105), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 48), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 48), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 87), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 87), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 57), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 57), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 18), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 18), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 70), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 70), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 84), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 84), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 3), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 3), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 3), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 3), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 83), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 83), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 103), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 103), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 94), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 94), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 68), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 68), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 57), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 57), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 65), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 65), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 83), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 83), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 48), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 48), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 68), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 68), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 77), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 77), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 106), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 106), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 26), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 26), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 29), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 29), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 3), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 3), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 28), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 28), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 109), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 109), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 110), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 110), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 59), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 59), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 49), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 49), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 111), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 111), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 50), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 50), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 51), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 51), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 106), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 106), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 65), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 65), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 3), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 3), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 33), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 33), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 52), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 52), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 48), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 48), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 3), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 3), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 53), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 53), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 63), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 63), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 28), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 28), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 65), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 65), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 49), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 49), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 50), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 50), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 51), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 51), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 29), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 29), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 30), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 30), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 61), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 61), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 77), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 77), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 94), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 94), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 33), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 33), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 52), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 52), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 95), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 95), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 53), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 53), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 99), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 99), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 18), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 18), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 57), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 57), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 59), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 59), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 70), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 70), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 72), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 72), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 97), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 97), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 57), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 57), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 99), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 99), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 30), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 30), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 65), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 65), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 37), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 37), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 37), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 37), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 22), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 22), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 35), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 35), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 23), [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 23), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 40), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 40), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 38), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 38), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 38), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 38), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 40), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 40), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(754), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(754), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 75), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 75), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 39), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 39), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 25), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 25), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(759), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(759), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(758), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(758), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 39), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 39), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 76), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 76), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 25), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 25), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(757), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(757), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1889), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1910), [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_component_choice_list, 1), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1628), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1556), [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 12), [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 12), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1855), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1880), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 17), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1227), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(794), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1913), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(789), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(785), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1897), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1192), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1888), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 3, .production_id = 20), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(218), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 4, .production_id = 32), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 4, .production_id = 32), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(250), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1249), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(799), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1924), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(781), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(754), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1916), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1166), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1909), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 3, .production_id = 20), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1728), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1719), [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(794), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1913), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(789), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(785), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1881), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1192), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 42), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(794), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1913), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(789), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(785), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1897), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1192), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1888), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(291), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(807), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(812), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(791), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1227), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(644), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(916), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1767), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1888), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(240), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(232), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(255), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(799), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1924), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(781), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(754), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1883), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1166), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(799), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1924), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(781), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(754), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1916), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1166), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1909), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 42), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1249), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(659), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(915), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1810), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1909), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(810), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(780), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(807), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(289), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(194), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(259), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(195), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 17), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(794), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1913), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1897), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1192), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(188), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1097), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1241), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 17), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 17), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 31), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 55), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 31), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1227), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(794), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 2), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 2), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 2), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 2), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 2), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1045), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1632), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1633), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 17), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(799), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1924), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1916), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1166), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(180), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1128), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1242), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1249), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(799), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 31), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 55), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 17), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 31), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 17), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 2), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 2), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 2), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 2), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1058), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1561), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1562), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1746), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1588), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(567), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__defining_identifier_list, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 45), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 45), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 77), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 77), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 90), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 90), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 99), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 99), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 70), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 63), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 63), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 78), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 78), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 45), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 45), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 105), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 105), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 105), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 105), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 56), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 78), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 78), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 89), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 89), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 78), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 78), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 63), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 63), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 63), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 63), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 99), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 99), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 99), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 99), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 89), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 89), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 32), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 20), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 105), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 105), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 45), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 45), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 55), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 31), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 31), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 31), SHIFT(1679), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 88), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 98), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 31), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 55), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 17), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 17), SHIFT(1506), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1640), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 55), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 55), SHIFT(1785), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 43), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 43), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 110), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 110), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(622), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1888), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(191), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 44), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(613), - [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(773), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 41), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(205), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1236), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1529), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 33), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 21), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1855), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(95), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 87), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(233), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(238), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(674), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 2), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 72), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 39), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1687), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(636), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), SHIFT(1186), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(100), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 33), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), SHIFT(1042), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 96), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), SHIFT(1186), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(808), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 36), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 2), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(1132), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 58), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), SHIFT(158), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unconstrained_array_definition, 6), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_array_definition, 6, .production_id = 21), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(670), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 21), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1502), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), SHIFT(1043), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 64), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), SHIFT(1107), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), SHIFT(1186), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 2), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guard_select, 2), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 79), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(927), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(172), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 66), SHIFT_REPEAT(253), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 66), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1288), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 21), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 17), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(668), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 33), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 32), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1442), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 55), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_specification_list_repeat1, 2), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1213), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification_list, 2), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification_list, 1), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 31), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1144), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1628), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 31), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 56), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1189), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(160), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(101), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 70), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 39), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 20), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 21), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(235), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(169), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(707), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 66), SHIFT_REPEAT(252), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 66), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 66), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 55), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 17), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 39), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 64), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 33), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 98), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 49), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 84), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 21), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 33), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 55), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(492), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 39), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1645), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 88), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 31), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 33), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 21), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 55), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 21), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 73), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 31), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 39), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 39), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 74), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 19), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 19), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 21), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 33), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5003] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(569), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 89), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 31), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 100), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 55), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 71), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 45), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 45), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 64), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 64), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 79), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 79), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 56), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 79), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 79), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 64), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 64), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 45), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 45), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 20), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 92), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 92), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1655), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 45), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 45), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 107), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 107), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 32), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 64), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 64), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 101), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 101), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 107), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 107), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1699), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 107), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 107), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 91), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 91), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 79), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 79), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 78), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 78), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 91), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 91), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 101), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 101), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 101), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 101), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1713), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 55), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 55), SHIFT(1793), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 31), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 31), SHIFT(1685), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 55), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 31), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 17), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 17), SHIFT(1509), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 43), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 43), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(628), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1909), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1176), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 112), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 112), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1479), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 44), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(778), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(237), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 21), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 41), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(245), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 33), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 39), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1735), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 88), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 65), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 21), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), + [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), SHIFT(1185), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 100), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 55), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(1306), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 2), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 2), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(616), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 33), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(622), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), SHIFT(1127), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(95), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 73), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 89), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 21), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(668), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), SHIFT(152), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 58), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), SHIFT(1022), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), SHIFT(1185), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(218), + [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(812), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(99), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1517), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 31), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(243), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(98), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 36), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(680), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), SHIFT(1085), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), SHIFT(1185), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 98), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1250), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 21), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(101), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1308), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(191), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 21), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(171), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 20), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 67), SHIFT_REPEAT(257), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 67), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 2), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(922), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(678), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1880), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 55), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 39), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1244), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 80), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1556), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 33), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 32), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 17), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 31), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 31), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1134), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1447), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 56), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(174), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 67), SHIFT_REPEAT(256), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 67), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(690), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(110), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guard_select, 2), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 71), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 17), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 67), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 55), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 21), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 85), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 21), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 89), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 33), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 49), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 55), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 39), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 39), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 65), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 33), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 33), + [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1714), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 31), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 100), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 31), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(500), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 55), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 74), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 39), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 21), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 39), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 19), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 75), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 19), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 60), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 90), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 21), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 33), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5032] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), }; #ifdef __cplusplus diff --git a/test/corpus/arrays.txt b/test/corpus/arrays.txt index 0cfdb1e..13137b9 100644 --- a/test/corpus/arrays.txt +++ b/test/corpus/arrays.txt @@ -16,7 +16,7 @@ end P; (identifier) (full_type_declaration (identifier) - (constrained_array_definition + (array_type_definition (range_g (term (numeric_literal)) @@ -88,7 +88,7 @@ end; (identifier) (full_type_declaration (identifier) - (constrained_array_definition + (array_type_definition (range_g (term (numeric_literal)) @@ -129,7 +129,7 @@ end P; (identifier) (full_type_declaration (identifier) - (unconstrained_array_definition + (array_type_definition (index_subtype_definition (identifier)) (component_definition @@ -170,7 +170,7 @@ end P; (identifier) (full_type_declaration (identifier) - (unconstrained_array_definition + (array_type_definition (index_subtype_definition (identifier)) (index_subtype_definition diff --git a/test/corpus/protected.txt b/test/corpus/protected.txt index a8ecfa4..2e6fa48 100644 --- a/test/corpus/protected.txt +++ b/test/corpus/protected.txt @@ -51,10 +51,9 @@ end; (identifier) (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (component_declaration (identifier) (component_definition @@ -101,10 +100,9 @@ end; (identifier) (identifier)) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (entry_barrier (expression (term diff --git a/test/corpus/renames.txt b/test/corpus/renames.txt index 165eb5d..f30044f 100644 --- a/test/corpus/renames.txt +++ b/test/corpus/renames.txt @@ -39,10 +39,9 @@ end P; (procedure_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (identifier)) (generic_renaming_declaration (identifier) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 5106a20..a92f11b 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -1,3 +1,19 @@ +================================================================================ +Untyped Constant +================================================================================ + +A : constant := 111; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (number_declaration + (identifier) + (expression + (term + (numeric_literal)))))) + ================================================================================ Factors ================================================================================ @@ -202,10 +218,9 @@ end P; (procedure_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (handled_sequence_of_statements (statement (procedure_call_statement diff --git a/test/corpus/subprograms.txt b/test/corpus/subprograms.txt index 631db35..8eb05ef 100644 --- a/test/corpus/subprograms.txt +++ b/test/corpus/subprograms.txt @@ -48,14 +48,13 @@ end; (procedure_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier) - (identifier)) - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier) + (identifier)) + (parameter_specification + (identifier) + (identifier)))) (aspect_specification (aspect_mark_list (aspect_association @@ -107,11 +106,10 @@ end; (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier) + (identifier))) (result_profile (access_definition (null_exclusion) @@ -149,10 +147,9 @@ end; (procedure_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (non_empty_declarative_part (object_declaration (identifier) @@ -177,10 +174,9 @@ function F2 (A : Integer) return Boolean (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (result_profile (identifier))) (expression @@ -206,10 +202,9 @@ function F2 (A : Integer) return Boolean (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (result_profile (identifier))) (declare_expression @@ -280,10 +275,9 @@ function F (A : Integer) return Boolean (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (result_profile (identifier))) (if_expression @@ -320,10 +314,9 @@ function F5 (A : Integer) return Boolean (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (result_profile (identifier))) (expression @@ -359,10 +352,9 @@ function F (A : Integer) return Boolean (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (result_profile (identifier))) (case_expression @@ -440,10 +432,9 @@ function F (A : My_Array) return Boolean (function_specification (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (result_profile (identifier))) (quantified_expression @@ -476,11 +467,10 @@ end "<"; (function_specification (string_literal) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier) + (identifier))) (result_profile (identifier))) (handled_sequence_of_statements @@ -490,3 +480,22 @@ end "<"; (term (identifier)))))) (string_literal)))) + +================================================================================ +Access Parameters +================================================================================ + +procedure Proc (A : access Integer); + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (subprogram_declaration + (procedure_specification + (identifier) + (formal_part + (parameter_specification + (identifier) + (access_definition + (identifier)))))))) diff --git a/test/corpus/tasking.txt b/test/corpus/tasking.txt index 8f3b767..9131723 100644 --- a/test/corpus/tasking.txt +++ b/test/corpus/tasking.txt @@ -44,10 +44,9 @@ end P; (entry_declaration (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (entry_declaration (identifier)) (identifier)))) @@ -62,10 +61,9 @@ end P; (accept_statement (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier)))) + (parameter_specification + (identifier) + (identifier))) (handled_sequence_of_statements (statement (null_statement))) @@ -131,10 +129,9 @@ end; (entry_declaration (identifier) (formal_part - (parameter_specification_list - (parameter_specification - (identifier) - (identifier))))) + (parameter_specification + (identifier) + (identifier)))) (identifier)))) (full_type_declaration (task_type_declaration