diff --git a/grammar.js b/grammar.js index 36ffb4f..e1ca6f0 100644 --- a/grammar.js +++ b/grammar.js @@ -272,7 +272,7 @@ module.exports = grammar({ optional(reservedWord('private')), $._declarative_item, ), - $.statement, + $._statement, $.subunit, $.entry_declaration, ), @@ -1946,7 +1946,7 @@ module.exports = grammar({ ), ), _sequence_of_statements: $ => prec.left(seq( - repeat1($.statement), + repeat1($._statement), repeat($.label), )), _simple_statement: $ => choice( @@ -1962,7 +1962,7 @@ module.exports = grammar({ $.raise_statement, $.pragma_g, ), - statement: $ => seq( + _statement: $ => seq( repeat($.label), choice( $._simple_statement, diff --git a/queries/highlights.scm b/queries/highlights.scm index c6dd3f0..71304f2 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -25,6 +25,7 @@ "out" "pragma" "renames" + "task" "terminate" "when" ] @keyword @@ -50,7 +51,6 @@ "protected" "record" "subtype" - "task" "type" ] @type.definition [ @@ -144,6 +144,7 @@ (signed_integer_type_definition "range" @type.definition) (index_subtype_definition "range" @type.definition) (private_type_declaration "is" @type.definition "private" @type.definition) +(task_type_declaration "task" @type.definition "is" @type.definition) ;; Gray the body of expression functions (expression_function_declaration diff --git a/src/grammar.json b/src/grammar.json index 547cc2f..611085d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -960,7 +960,7 @@ }, { "type": "SYMBOL", - "name": "statement" + "name": "_statement" }, { "type": "SYMBOL", @@ -12078,7 +12078,7 @@ "type": "REPEAT1", "content": { "type": "SYMBOL", - "name": "statement" + "name": "_statement" } }, { @@ -12140,7 +12140,7 @@ } ] }, - "statement": { + "_statement": { "type": "SEQ", "members": [ { diff --git a/src/node-types.json b/src/node-types.json index 22afa67..129a731 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -62,16 +62,96 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, { "type": "accept_statement", "named": true }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -677,12 +757,96 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -931,16 +1095,100 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, { "type": "discrete_choice_list", "named": true }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -1083,9 +1331,25 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, { "type": "at_clause", "named": true @@ -1094,10 +1358,30 @@ "type": "attribute_definition_clause", "named": true }, + { + "type": "block_statement", + "named": true + }, { "type": "body_stub", "named": true }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, { "type": "entry_declaration", "named": true @@ -1114,10 +1398,18 @@ "type": "exception_renaming_declaration", "named": true }, + { + "type": "exit_statement", + "named": true + }, { "type": "expression_function_declaration", "named": true }, + { + "type": "extended_return_statement", + "named": true + }, { "type": "full_type_declaration", "named": true @@ -1138,14 +1430,34 @@ "type": "generic_subprogram_declaration", "named": true }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "incomplete_type_declaration", "named": true }, + { + "type": "label", + "named": true + }, + { + "type": "loop_statement", + "named": true + }, { "type": "null_procedure_declaration", "named": true }, + { + "type": "null_statement", + "named": true + }, { "type": "number_declaration", "named": true @@ -1170,6 +1482,10 @@ "type": "package_specification", "named": true }, + { + "type": "pragma_g", + "named": true + }, { "type": "private_extension_declaration", "named": true @@ -1178,16 +1494,32 @@ "type": "private_type_declaration", "named": true }, + { + "type": "procedure_call_statement", + "named": true + }, { "type": "protected_body", "named": true }, + { + "type": "raise_statement", + "named": true + }, { "type": "record_representation_clause", "named": true }, { - "type": "statement", + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", "named": true }, { @@ -1214,6 +1546,10 @@ "type": "task_body", "named": true }, + { + "type": "timed_entry_call", + "named": true + }, { "type": "use_clause", "named": true @@ -1498,16 +1834,100 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, { "type": "entry_call_alternative", "named": true }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -1563,6 +1983,34 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, { "type": "delay_relative_statement", "named": true @@ -1571,12 +2019,60 @@ "type": "delay_until_statement", "named": true }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -2038,12 +2534,96 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -2109,16 +2689,96 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, { "type": "procedure_call_statement", "named": true }, { - "type": "statement", + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -2528,20 +3188,104 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, { "type": "choice_parameter_specification", "named": true }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, { "type": "exception_choice_list", "named": true }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -4958,20 +5702,100 @@ "multiple": true, "required": false, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, { "type": "exception_handler", "named": true }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, { "type": "pragma_g", "named": true }, { - "type": "statement", + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -5025,12 +5849,96 @@ "multiple": true, "required": false, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -5039,12 +5947,96 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -5643,12 +6635,96 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, { - "type": "statement", + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -8369,20 +9445,104 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, + { + "type": "delay_relative_statement", + "named": true + }, + { + "type": "delay_until_statement", + "named": true + }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, { "type": "guard", "named": true }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, + { + "type": "procedure_call_statement", + "named": true + }, + { + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, { "type": "select_alternative", "named": true }, { - "type": "statement", + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] @@ -8552,109 +9712,6 @@ ] } }, - { - "type": "statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "abort_statement", - "named": true - }, - { - "type": "accept_statement", - "named": true - }, - { - "type": "assignment_statement", - "named": true - }, - { - "type": "asynchronous_select", - "named": true - }, - { - "type": "block_statement", - "named": true - }, - { - "type": "case_statement", - "named": true - }, - { - "type": "conditional_entry_call", - "named": true - }, - { - "type": "delay_relative_statement", - "named": true - }, - { - "type": "delay_until_statement", - "named": true - }, - { - "type": "exit_statement", - "named": true - }, - { - "type": "extended_return_statement", - "named": true - }, - { - "type": "goto_statement", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "label", - "named": true - }, - { - "type": "loop_statement", - "named": true - }, - { - "type": "null_statement", - "named": true - }, - { - "type": "pragma_g", - "named": true - }, - { - "type": "procedure_call_statement", - "named": true - }, - { - "type": "raise_statement", - "named": true - }, - { - "type": "requeue_statement", - "named": true - }, - { - "type": "selective_accept", - "named": true - }, - { - "type": "simple_return_statement", - "named": true - }, - { - "type": "timed_entry_call", - "named": true - } - ] - } - }, { "type": "subpool_specification", "named": true, @@ -9493,6 +10550,34 @@ "multiple": true, "required": true, "types": [ + { + "type": "abort_statement", + "named": true + }, + { + "type": "accept_statement", + "named": true + }, + { + "type": "assignment_statement", + "named": true + }, + { + "type": "asynchronous_select", + "named": true + }, + { + "type": "block_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "conditional_entry_call", + "named": true + }, { "type": "delay_relative_statement", "named": true @@ -9501,16 +10586,60 @@ "type": "delay_until_statement", "named": true }, + { + "type": "exit_statement", + "named": true + }, + { + "type": "extended_return_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, { "type": "label", "named": true }, + { + "type": "loop_statement", + "named": true + }, + { + "type": "null_statement", + "named": true + }, + { + "type": "pragma_g", + "named": true + }, { "type": "procedure_call_statement", "named": true }, { - "type": "statement", + "type": "raise_statement", + "named": true + }, + { + "type": "requeue_statement", + "named": true + }, + { + "type": "selective_accept", + "named": true + }, + { + "type": "simple_return_statement", + "named": true + }, + { + "type": "timed_entry_call", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 33c1040..524892a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1939 +#define STATE_COUNT 1938 #define LARGE_STATE_COUNT 72 #define SYMBOL_COUNT 438 #define ALIAS_COUNT 0 @@ -366,7 +366,7 @@ enum { sym_result_profile = 347, sym__sequence_of_statements = 348, sym__simple_statement = 349, - sym_statement = 350, + sym__statement = 350, sym__compound_statement = 351, sym__select_statement = 352, sym_entry_call_alternative = 353, @@ -807,7 +807,7 @@ static const char * const ts_symbol_names[] = { [sym_result_profile] = "result_profile", [sym__sequence_of_statements] = "_sequence_of_statements", [sym__simple_statement] = "_simple_statement", - [sym_statement] = "statement", + [sym__statement] = "_statement", [sym__compound_statement] = "_compound_statement", [sym__select_statement] = "_select_statement", [sym_entry_call_alternative] = "entry_call_alternative", @@ -1248,7 +1248,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_result_profile] = sym_result_profile, [sym__sequence_of_statements] = sym__sequence_of_statements, [sym__simple_statement] = sym__simple_statement, - [sym_statement] = sym_statement, + [sym__statement] = sym__statement, [sym__compound_statement] = sym__compound_statement, [sym__select_statement] = sym__select_statement, [sym_entry_call_alternative] = sym_entry_call_alternative, @@ -2739,8 +2739,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_statement] = { - .visible = true, + [sym__statement] = { + .visible = false, .named = true, }, [sym__compound_statement] = { @@ -3681,14 +3681,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [43] = 43, [44] = 44, [45] = 45, - [46] = 46, + [46] = 25, [47] = 47, [48] = 48, [49] = 49, [50] = 50, [51] = 51, [52] = 52, - [53] = 25, + [53] = 53, [54] = 54, [55] = 55, [56] = 56, @@ -4150,8 +4150,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [512] = 512, [513] = 513, [514] = 514, - [515] = 515, - [516] = 515, + [515] = 514, + [516] = 516, [517] = 517, [518] = 518, [519] = 519, @@ -4177,7 +4177,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [539] = 539, [540] = 540, [541] = 541, - [542] = 495, + [542] = 542, [543] = 543, [544] = 544, [545] = 545, @@ -4185,7 +4185,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [547] = 547, [548] = 548, [549] = 549, - [550] = 550, + [550] = 493, [551] = 551, [552] = 552, [553] = 553, @@ -4548,7 +4548,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [910] = 910, [911] = 911, [912] = 912, - [913] = 913, + [913] = 891, [914] = 914, [915] = 915, [916] = 916, @@ -4556,7 +4556,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [918] = 918, [919] = 919, [920] = 920, - [921] = 900, + [921] = 921, [922] = 922, [923] = 923, [924] = 924, @@ -4817,11 +4817,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1179] = 1179, [1180] = 1180, [1181] = 1181, - [1182] = 1182, + [1182] = 1140, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1139, + [1186] = 1186, [1187] = 1187, [1188] = 1188, [1189] = 1189, @@ -5573,7 +5573,6 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1938, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7614,23 +7613,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 26}, [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 = 26}, [194] = {.lex_state = 26}, [195] = {.lex_state = 26}, [196] = {.lex_state = 26}, - [197] = {.lex_state = 10}, + [197] = {.lex_state = 26}, [198] = {.lex_state = 10}, - [199] = {.lex_state = 26}, - [200] = {.lex_state = 10}, - [201] = {.lex_state = 26}, - [202] = {.lex_state = 10}, - [203] = {.lex_state = 10}, + [199] = {.lex_state = 10}, + [200] = {.lex_state = 26}, + [201] = {.lex_state = 10}, + [202] = {.lex_state = 26}, + [203] = {.lex_state = 26}, [204] = {.lex_state = 26}, [205] = {.lex_state = 26}, - [206] = {.lex_state = 10}, + [206] = {.lex_state = 26}, [207] = {.lex_state = 26}, [208] = {.lex_state = 26}, [209] = {.lex_state = 26}, @@ -7638,44 +7637,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 26}, [212] = {.lex_state = 26}, [213] = {.lex_state = 26}, - [214] = {.lex_state = 10}, - [215] = {.lex_state = 10}, - [216] = {.lex_state = 26}, + [214] = {.lex_state = 26}, + [215] = {.lex_state = 26}, + [216] = {.lex_state = 10}, [217] = {.lex_state = 10}, - [218] = {.lex_state = 26}, - [219] = {.lex_state = 26}, + [218] = {.lex_state = 10}, + [219] = {.lex_state = 10}, [220] = {.lex_state = 26}, - [221] = {.lex_state = 26}, + [221] = {.lex_state = 10}, [222] = {.lex_state = 26}, [223] = {.lex_state = 10}, [224] = {.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 = 10}, + [228] = {.lex_state = 26}, + [229] = {.lex_state = 10}, + [230] = {.lex_state = 26}, [231] = {.lex_state = 10}, [232] = {.lex_state = 10}, [233] = {.lex_state = 26}, - [234] = {.lex_state = 26}, - [235] = {.lex_state = 26}, + [234] = {.lex_state = 10}, + [235] = {.lex_state = 10}, [236] = {.lex_state = 26}, [237] = {.lex_state = 26}, [238] = {.lex_state = 26}, [239] = {.lex_state = 26}, - [240] = {.lex_state = 10}, + [240] = {.lex_state = 26}, [241] = {.lex_state = 10}, - [242] = {.lex_state = 10}, + [242] = {.lex_state = 26}, [243] = {.lex_state = 10}, - [244] = {.lex_state = 26}, + [244] = {.lex_state = 10}, [245] = {.lex_state = 26}, - [246] = {.lex_state = 26}, + [246] = {.lex_state = 10}, [247] = {.lex_state = 26}, [248] = {.lex_state = 26}, - [249] = {.lex_state = 10}, - [250] = {.lex_state = 10}, - [251] = {.lex_state = 26}, + [249] = {.lex_state = 26}, + [250] = {.lex_state = 26}, + [251] = {.lex_state = 10}, [252] = {.lex_state = 26}, [253] = {.lex_state = 26}, [254] = {.lex_state = 26}, @@ -7684,17 +7683,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 26}, [258] = {.lex_state = 26}, [259] = {.lex_state = 26}, - [260] = {.lex_state = 26}, - [261] = {.lex_state = 10}, - [262] = {.lex_state = 10}, - [263] = {.lex_state = 26}, + [260] = {.lex_state = 10}, + [261] = {.lex_state = 26}, + [262] = {.lex_state = 26}, + [263] = {.lex_state = 10}, [264] = {.lex_state = 26}, [265] = {.lex_state = 26}, [266] = {.lex_state = 26}, [267] = {.lex_state = 26}, [268] = {.lex_state = 26}, - [269] = {.lex_state = 10}, - [270] = {.lex_state = 26}, + [269] = {.lex_state = 26}, + [270] = {.lex_state = 10}, [271] = {.lex_state = 26}, [272] = {.lex_state = 26}, [273] = {.lex_state = 26}, @@ -7906,7 +7905,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [479] = {.lex_state = 26}, [480] = {.lex_state = 26}, [481] = {.lex_state = 26}, - [482] = {.lex_state = 26}, + [482] = {.lex_state = 10}, [483] = {.lex_state = 10}, [484] = {.lex_state = 10}, [485] = {.lex_state = 10}, @@ -7923,43 +7922,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [496] = {.lex_state = 10}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, - [499] = {.lex_state = 10}, + [499] = {.lex_state = 26}, [500] = {.lex_state = 26}, [501] = {.lex_state = 26}, [502] = {.lex_state = 26}, - [503] = {.lex_state = 26}, + [503] = {.lex_state = 11}, [504] = {.lex_state = 11}, - [505] = {.lex_state = 26}, + [505] = {.lex_state = 11}, [506] = {.lex_state = 11}, [507] = {.lex_state = 11}, - [508] = {.lex_state = 11}, - [509] = {.lex_state = 11}, + [508] = {.lex_state = 26}, + [509] = {.lex_state = 26}, [510] = {.lex_state = 26}, - [511] = {.lex_state = 26}, - [512] = {.lex_state = 11}, + [511] = {.lex_state = 11}, + [512] = {.lex_state = 26}, [513] = {.lex_state = 10}, - [514] = {.lex_state = 26}, + [514] = {.lex_state = 10}, [515] = {.lex_state = 10}, - [516] = {.lex_state = 10}, + [516] = {.lex_state = 26}, [517] = {.lex_state = 26}, - [518] = {.lex_state = 7}, - [519] = {.lex_state = 26}, - [520] = {.lex_state = 26}, + [518] = {.lex_state = 26}, + [519] = {.lex_state = 10}, + [520] = {.lex_state = 7}, [521] = {.lex_state = 26}, - [522] = {.lex_state = 10}, - [523] = {.lex_state = 26}, + [522] = {.lex_state = 26}, + [523] = {.lex_state = 10}, [524] = {.lex_state = 11}, - [525] = {.lex_state = 10}, + [525] = {.lex_state = 11}, [526] = {.lex_state = 26}, - [527] = {.lex_state = 11}, + [527] = {.lex_state = 10}, [528] = {.lex_state = 10}, - [529] = {.lex_state = 10}, - [530] = {.lex_state = 26}, + [529] = {.lex_state = 26}, + [530] = {.lex_state = 10}, [531] = {.lex_state = 26}, [532] = {.lex_state = 26}, [533] = {.lex_state = 26}, [534] = {.lex_state = 26}, - [535] = {.lex_state = 10}, + [535] = {.lex_state = 26}, [536] = {.lex_state = 26}, [537] = {.lex_state = 26}, [538] = {.lex_state = 10}, @@ -7968,15 +7967,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [541] = {.lex_state = 26}, [542] = {.lex_state = 10}, [543] = {.lex_state = 26}, - [544] = {.lex_state = 10}, - [545] = {.lex_state = 26}, + [544] = {.lex_state = 26}, + [545] = {.lex_state = 10}, [546] = {.lex_state = 26}, - [547] = {.lex_state = 26}, + [547] = {.lex_state = 11}, [548] = {.lex_state = 26}, [549] = {.lex_state = 26}, [550] = {.lex_state = 10}, [551] = {.lex_state = 26}, - [552] = {.lex_state = 11}, + [552] = {.lex_state = 26}, [553] = {.lex_state = 26}, [554] = {.lex_state = 26}, [555] = {.lex_state = 26}, @@ -7990,8 +7989,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [563] = {.lex_state = 26}, [564] = {.lex_state = 26}, [565] = {.lex_state = 26}, - [566] = {.lex_state = 11}, - [567] = {.lex_state = 26}, + [566] = {.lex_state = 26}, + [567] = {.lex_state = 11}, [568] = {.lex_state = 26}, [569] = {.lex_state = 26}, [570] = {.lex_state = 26}, @@ -8013,8 +8012,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [586] = {.lex_state = 26}, [587] = {.lex_state = 26}, [588] = {.lex_state = 26}, - [589] = {.lex_state = 26}, - [590] = {.lex_state = 11}, + [589] = {.lex_state = 11}, + [590] = {.lex_state = 26}, [591] = {.lex_state = 26}, [592] = {.lex_state = 26}, [593] = {.lex_state = 26}, @@ -8083,21 +8082,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [656] = {.lex_state = 26}, [657] = {.lex_state = 26}, [658] = {.lex_state = 26}, - [659] = {.lex_state = 11}, + [659] = {.lex_state = 26}, [660] = {.lex_state = 11}, [661] = {.lex_state = 26}, - [662] = {.lex_state = 26}, - [663] = {.lex_state = 26}, + [662] = {.lex_state = 11}, + [663] = {.lex_state = 11}, [664] = {.lex_state = 26}, [665] = {.lex_state = 26}, [666] = {.lex_state = 26}, - [667] = {.lex_state = 26}, + [667] = {.lex_state = 11}, [668] = {.lex_state = 26}, [669] = {.lex_state = 26}, - [670] = {.lex_state = 11}, - [671] = {.lex_state = 11}, - [672] = {.lex_state = 11}, - [673] = {.lex_state = 26}, + [670] = {.lex_state = 26}, + [671] = {.lex_state = 26}, + [672] = {.lex_state = 26}, + [673] = {.lex_state = 11}, [674] = {.lex_state = 26}, [675] = {.lex_state = 26}, [676] = {.lex_state = 26}, @@ -8106,7 +8105,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 26}, [680] = {.lex_state = 26}, [681] = {.lex_state = 26}, - [682] = {.lex_state = 0}, + [682] = {.lex_state = 26}, [683] = {.lex_state = 26}, [684] = {.lex_state = 26}, [685] = {.lex_state = 26}, @@ -8114,11 +8113,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 26}, [688] = {.lex_state = 26}, [689] = {.lex_state = 26}, - [690] = {.lex_state = 0}, + [690] = {.lex_state = 26}, [691] = {.lex_state = 26}, [692] = {.lex_state = 26}, [693] = {.lex_state = 26}, - [694] = {.lex_state = 26}, + [694] = {.lex_state = 10}, [695] = {.lex_state = 26}, [696] = {.lex_state = 26}, [697] = {.lex_state = 26}, @@ -8131,7 +8130,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [704] = {.lex_state = 26}, [705] = {.lex_state = 26}, [706] = {.lex_state = 26}, - [707] = {.lex_state = 26}, + [707] = {.lex_state = 0}, [708] = {.lex_state = 26}, [709] = {.lex_state = 26}, [710] = {.lex_state = 26}, @@ -8146,7 +8145,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [719] = {.lex_state = 26}, [720] = {.lex_state = 26}, [721] = {.lex_state = 26}, - [722] = {.lex_state = 10}, + [722] = {.lex_state = 26}, [723] = {.lex_state = 26}, [724] = {.lex_state = 26}, [725] = {.lex_state = 26}, @@ -8168,7 +8167,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [741] = {.lex_state = 26}, [742] = {.lex_state = 26}, [743] = {.lex_state = 26}, - [744] = {.lex_state = 26}, + [744] = {.lex_state = 0}, [745] = {.lex_state = 26}, [746] = {.lex_state = 26}, [747] = {.lex_state = 26}, @@ -8241,16 +8240,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [814] = {.lex_state = 26}, [815] = {.lex_state = 26}, [816] = {.lex_state = 26}, - [817] = {.lex_state = 26}, - [818] = {.lex_state = 11}, + [817] = {.lex_state = 11}, + [818] = {.lex_state = 26}, [819] = {.lex_state = 11}, [820] = {.lex_state = 26}, - [821] = {.lex_state = 11}, + [821] = {.lex_state = 26}, [822] = {.lex_state = 26}, - [823] = {.lex_state = 11}, - [824] = {.lex_state = 26}, - [825] = {.lex_state = 26}, - [826] = {.lex_state = 26}, + [823] = {.lex_state = 26}, + [824] = {.lex_state = 11}, + [825] = {.lex_state = 11}, + [826] = {.lex_state = 11}, [827] = {.lex_state = 11}, [828] = {.lex_state = 11}, [829] = {.lex_state = 11}, @@ -8265,15 +8264,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [838] = {.lex_state = 11}, [839] = {.lex_state = 11}, [840] = {.lex_state = 11}, - [841] = {.lex_state = 11}, - [842] = {.lex_state = 11}, + [841] = {.lex_state = 26}, + [842] = {.lex_state = 26}, [843] = {.lex_state = 11}, [844] = {.lex_state = 26}, - [845] = {.lex_state = 11}, + [845] = {.lex_state = 26}, [846] = {.lex_state = 26}, [847] = {.lex_state = 26}, [848] = {.lex_state = 26}, - [849] = {.lex_state = 26}, + [849] = {.lex_state = 11}, [850] = {.lex_state = 26}, [851] = {.lex_state = 26}, [852] = {.lex_state = 26}, @@ -8283,70 +8282,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [856] = {.lex_state = 26}, [857] = {.lex_state = 26}, [858] = {.lex_state = 26}, - [859] = {.lex_state = 26}, - [860] = {.lex_state = 11}, - [861] = {.lex_state = 26}, + [859] = {.lex_state = 10}, + [860] = {.lex_state = 26}, + [861] = {.lex_state = 11}, [862] = {.lex_state = 26}, [863] = {.lex_state = 26}, [864] = {.lex_state = 26}, - [865] = {.lex_state = 11}, + [865] = {.lex_state = 26}, [866] = {.lex_state = 26}, - [867] = {.lex_state = 26}, + [867] = {.lex_state = 11}, [868] = {.lex_state = 26}, [869] = {.lex_state = 26}, - [870] = {.lex_state = 10}, - [871] = {.lex_state = 11}, + [870] = {.lex_state = 26}, + [871] = {.lex_state = 26}, [872] = {.lex_state = 26}, [873] = {.lex_state = 26}, - [874] = {.lex_state = 26}, + [874] = {.lex_state = 11}, [875] = {.lex_state = 26}, [876] = {.lex_state = 26}, - [877] = {.lex_state = 11}, + [877] = {.lex_state = 26}, [878] = {.lex_state = 26}, - [879] = {.lex_state = 10}, + [879] = {.lex_state = 26}, [880] = {.lex_state = 26}, [881] = {.lex_state = 26}, [882] = {.lex_state = 26}, - [883] = {.lex_state = 26}, - [884] = {.lex_state = 26}, + [883] = {.lex_state = 11}, + [884] = {.lex_state = 11}, [885] = {.lex_state = 26}, [886] = {.lex_state = 26}, - [887] = {.lex_state = 26}, + [887] = {.lex_state = 10}, [888] = {.lex_state = 26}, - [889] = {.lex_state = 26}, - [890] = {.lex_state = 26}, - [891] = {.lex_state = 26}, + [889] = {.lex_state = 11}, + [890] = {.lex_state = 11}, + [891] = {.lex_state = 0}, [892] = {.lex_state = 26}, [893] = {.lex_state = 11}, [894] = {.lex_state = 11}, [895] = {.lex_state = 11}, [896] = {.lex_state = 11}, [897] = {.lex_state = 11}, - [898] = {.lex_state = 11}, - [899] = {.lex_state = 11}, - [900] = {.lex_state = 10}, - [901] = {.lex_state = 26}, - [902] = {.lex_state = 10}, + [898] = {.lex_state = 26}, + [899] = {.lex_state = 26}, + [900] = {.lex_state = 26}, + [901] = {.lex_state = 11}, + [902] = {.lex_state = 11}, [903] = {.lex_state = 11}, - [904] = {.lex_state = 10}, + [904] = {.lex_state = 11}, [905] = {.lex_state = 11}, - [906] = {.lex_state = 11}, + [906] = {.lex_state = 10}, [907] = {.lex_state = 11}, - [908] = {.lex_state = 11}, - [909] = {.lex_state = 26}, - [910] = {.lex_state = 26}, + [908] = {.lex_state = 26}, + [909] = {.lex_state = 11}, + [910] = {.lex_state = 11}, [911] = {.lex_state = 11}, - [912] = {.lex_state = 11}, - [913] = {.lex_state = 11}, + [912] = {.lex_state = 26}, + [913] = {.lex_state = 10}, [914] = {.lex_state = 26}, - [915] = {.lex_state = 26}, + [915] = {.lex_state = 11}, [916] = {.lex_state = 11}, [917] = {.lex_state = 11}, - [918] = {.lex_state = 10}, - [919] = {.lex_state = 11}, + [918] = {.lex_state = 26}, + [919] = {.lex_state = 10}, [920] = {.lex_state = 11}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 11}, + [921] = {.lex_state = 10}, + [922] = {.lex_state = 26}, [923] = {.lex_state = 26}, [924] = {.lex_state = 26}, [925] = {.lex_state = 26}, @@ -8354,28 +8353,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [927] = {.lex_state = 26}, [928] = {.lex_state = 26}, [929] = {.lex_state = 26}, - [930] = {.lex_state = 26}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 26}, + [930] = {.lex_state = 11}, + [931] = {.lex_state = 26}, + [932] = {.lex_state = 11}, [933] = {.lex_state = 26}, [934] = {.lex_state = 0}, - [935] = {.lex_state = 11}, + [935] = {.lex_state = 26}, [936] = {.lex_state = 26}, [937] = {.lex_state = 26}, - [938] = {.lex_state = 26}, - [939] = {.lex_state = 11}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 26}, [940] = {.lex_state = 11}, - [941] = {.lex_state = 11}, + [941] = {.lex_state = 26}, [942] = {.lex_state = 26}, [943] = {.lex_state = 26}, [944] = {.lex_state = 26}, [945] = {.lex_state = 26}, - [946] = {.lex_state = 10}, + [946] = {.lex_state = 26}, [947] = {.lex_state = 26}, [948] = {.lex_state = 26}, [949] = {.lex_state = 26}, - [950] = {.lex_state = 26}, - [951] = {.lex_state = 26}, + [950] = {.lex_state = 11}, + [951] = {.lex_state = 10}, [952] = {.lex_state = 26}, [953] = {.lex_state = 26}, [954] = {.lex_state = 26}, @@ -8383,86 +8382,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 26}, [957] = {.lex_state = 26}, [958] = {.lex_state = 26}, - [959] = {.lex_state = 26}, + [959] = {.lex_state = 10}, [960] = {.lex_state = 10}, - [961] = {.lex_state = 10}, - [962] = {.lex_state = 11}, - [963] = {.lex_state = 10}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 26}, - [966] = {.lex_state = 10}, + [961] = {.lex_state = 26}, + [962] = {.lex_state = 26}, + [963] = {.lex_state = 26}, + [964] = {.lex_state = 11}, + [965] = {.lex_state = 10}, + [966] = {.lex_state = 26}, [967] = {.lex_state = 26}, [968] = {.lex_state = 10}, - [969] = {.lex_state = 26}, - [970] = {.lex_state = 26}, + [969] = {.lex_state = 11}, + [970] = {.lex_state = 10}, [971] = {.lex_state = 10}, [972] = {.lex_state = 26}, - [973] = {.lex_state = 11}, - [974] = {.lex_state = 10}, - [975] = {.lex_state = 11}, + [973] = {.lex_state = 26}, + [974] = {.lex_state = 26}, + [975] = {.lex_state = 26}, [976] = {.lex_state = 26}, - [977] = {.lex_state = 11}, - [978] = {.lex_state = 26}, - [979] = {.lex_state = 26}, - [980] = {.lex_state = 10}, - [981] = {.lex_state = 26}, + [977] = {.lex_state = 10}, + [978] = {.lex_state = 10}, + [979] = {.lex_state = 10}, + [980] = {.lex_state = 26}, + [981] = {.lex_state = 10}, [982] = {.lex_state = 26}, [983] = {.lex_state = 26}, [984] = {.lex_state = 26}, [985] = {.lex_state = 26}, - [986] = {.lex_state = 10}, - [987] = {.lex_state = 26}, + [986] = {.lex_state = 26}, + [987] = {.lex_state = 10}, [988] = {.lex_state = 26}, - [989] = {.lex_state = 11}, - [990] = {.lex_state = 26}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 26}, - [993] = {.lex_state = 26}, + [989] = {.lex_state = 10}, + [990] = {.lex_state = 11}, + [991] = {.lex_state = 11}, + [992] = {.lex_state = 11}, + [993] = {.lex_state = 10}, [994] = {.lex_state = 10}, - [995] = {.lex_state = 26}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 26}, [997] = {.lex_state = 26}, - [998] = {.lex_state = 11}, - [999] = {.lex_state = 26}, - [1000] = {.lex_state = 10}, - [1001] = {.lex_state = 26}, + [998] = {.lex_state = 26}, + [999] = {.lex_state = 10}, + [1000] = {.lex_state = 26}, + [1001] = {.lex_state = 10}, [1002] = {.lex_state = 26}, - [1003] = {.lex_state = 10}, - [1004] = {.lex_state = 0}, + [1003] = {.lex_state = 26}, + [1004] = {.lex_state = 26}, [1005] = {.lex_state = 26}, - [1006] = {.lex_state = 11}, - [1007] = {.lex_state = 26}, - [1008] = {.lex_state = 10}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 10}, + [1008] = {.lex_state = 26}, [1009] = {.lex_state = 26}, [1010] = {.lex_state = 10}, - [1011] = {.lex_state = 11}, - [1012] = {.lex_state = 10}, - [1013] = {.lex_state = 10}, + [1011] = {.lex_state = 26}, + [1012] = {.lex_state = 11}, + [1013] = {.lex_state = 0}, [1014] = {.lex_state = 10}, - [1015] = {.lex_state = 26}, + [1015] = {.lex_state = 11}, [1016] = {.lex_state = 26}, [1017] = {.lex_state = 26}, [1018] = {.lex_state = 26}, [1019] = {.lex_state = 26}, - [1020] = {.lex_state = 26}, - [1021] = {.lex_state = 10}, - [1022] = {.lex_state = 10}, + [1020] = {.lex_state = 10}, + [1021] = {.lex_state = 26}, + [1022] = {.lex_state = 26}, [1023] = {.lex_state = 26}, [1024] = {.lex_state = 26}, - [1025] = {.lex_state = 26}, - [1026] = {.lex_state = 10}, + [1025] = {.lex_state = 11}, + [1026] = {.lex_state = 26}, [1027] = {.lex_state = 26}, - [1028] = {.lex_state = 10}, - [1029] = {.lex_state = 10}, - [1030] = {.lex_state = 26}, - [1031] = {.lex_state = 26}, - [1032] = {.lex_state = 0}, + [1028] = {.lex_state = 11}, + [1029] = {.lex_state = 26}, + [1030] = {.lex_state = 10}, + [1031] = {.lex_state = 0}, + [1032] = {.lex_state = 10}, [1033] = {.lex_state = 26}, [1034] = {.lex_state = 26}, - [1035] = {.lex_state = 10}, + [1035] = {.lex_state = 26}, [1036] = {.lex_state = 26}, [1037] = {.lex_state = 26}, - [1038] = {.lex_state = 26}, + [1038] = {.lex_state = 10}, [1039] = {.lex_state = 26}, [1040] = {.lex_state = 26}, [1041] = {.lex_state = 26}, @@ -8470,12 +8469,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1043] = {.lex_state = 26}, [1044] = {.lex_state = 26}, [1045] = {.lex_state = 26}, - [1046] = {.lex_state = 11}, - [1047] = {.lex_state = 10}, + [1046] = {.lex_state = 10}, + [1047] = {.lex_state = 26}, [1048] = {.lex_state = 26}, [1049] = {.lex_state = 26}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 11}, + [1050] = {.lex_state = 26}, + [1051] = {.lex_state = 26}, [1052] = {.lex_state = 26}, [1053] = {.lex_state = 26}, [1054] = {.lex_state = 26}, @@ -8504,7 +8503,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1077] = {.lex_state = 26}, [1078] = {.lex_state = 26}, [1079] = {.lex_state = 26}, - [1080] = {.lex_state = 0}, + [1080] = {.lex_state = 26}, [1081] = {.lex_state = 26}, [1082] = {.lex_state = 26}, [1083] = {.lex_state = 26}, @@ -8514,45 +8513,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1087] = {.lex_state = 26}, [1088] = {.lex_state = 26}, [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 0}, + [1090] = {.lex_state = 26}, [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 26}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 26}, [1094] = {.lex_state = 26}, [1095] = {.lex_state = 26}, - [1096] = {.lex_state = 26}, + [1096] = {.lex_state = 11}, [1097] = {.lex_state = 26}, [1098] = {.lex_state = 26}, - [1099] = {.lex_state = 26}, + [1099] = {.lex_state = 0}, [1100] = {.lex_state = 26}, [1101] = {.lex_state = 26}, [1102] = {.lex_state = 26}, [1103] = {.lex_state = 26}, [1104] = {.lex_state = 26}, - [1105] = {.lex_state = 26}, + [1105] = {.lex_state = 11}, [1106] = {.lex_state = 26}, [1107] = {.lex_state = 26}, [1108] = {.lex_state = 26}, - [1109] = {.lex_state = 0}, + [1109] = {.lex_state = 26}, [1110] = {.lex_state = 26}, [1111] = {.lex_state = 26}, - [1112] = {.lex_state = 0}, + [1112] = {.lex_state = 26}, [1113] = {.lex_state = 26}, - [1114] = {.lex_state = 26}, + [1114] = {.lex_state = 0}, [1115] = {.lex_state = 26}, - [1116] = {.lex_state = 26}, + [1116] = {.lex_state = 0}, [1117] = {.lex_state = 26}, [1118] = {.lex_state = 26}, [1119] = {.lex_state = 26}, - [1120] = {.lex_state = 26}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 26}, [1122] = {.lex_state = 26}, [1123] = {.lex_state = 26}, [1124] = {.lex_state = 26}, - [1125] = {.lex_state = 11}, + [1125] = {.lex_state = 26}, [1126] = {.lex_state = 26}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 26}, + [1127] = {.lex_state = 26}, + [1128] = {.lex_state = 0}, [1129] = {.lex_state = 26}, [1130] = {.lex_state = 26}, [1131] = {.lex_state = 26}, @@ -8563,48 +8562,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1136] = {.lex_state = 26}, [1137] = {.lex_state = 26}, [1138] = {.lex_state = 26}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 26}, + [1139] = {.lex_state = 26}, + [1140] = {.lex_state = 0}, [1141] = {.lex_state = 26}, [1142] = {.lex_state = 26}, [1143] = {.lex_state = 26}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 26}, + [1144] = {.lex_state = 26}, + [1145] = {.lex_state = 0}, [1146] = {.lex_state = 26}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 26}, [1148] = {.lex_state = 26}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 26}, [1151] = {.lex_state = 26}, [1152] = {.lex_state = 26}, - [1153] = {.lex_state = 26}, - [1154] = {.lex_state = 26}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 26}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 26}, + [1156] = {.lex_state = 26}, + [1157] = {.lex_state = 0}, [1158] = {.lex_state = 26}, - [1159] = {.lex_state = 26}, + [1159] = {.lex_state = 0}, [1160] = {.lex_state = 26}, - [1161] = {.lex_state = 26}, + [1161] = {.lex_state = 0}, [1162] = {.lex_state = 26}, [1163] = {.lex_state = 26}, [1164] = {.lex_state = 26}, [1165] = {.lex_state = 26}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 26}, + [1166] = {.lex_state = 26}, + [1167] = {.lex_state = 26}, + [1168] = {.lex_state = 26}, + [1169] = {.lex_state = 26}, + [1170] = {.lex_state = 0}, [1171] = {.lex_state = 26}, [1172] = {.lex_state = 26}, - [1173] = {.lex_state = 26}, - [1174] = {.lex_state = 26}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 26}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 0}, + [1175] = {.lex_state = 26}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 26}, [1178] = {.lex_state = 26}, [1179] = {.lex_state = 26}, - [1180] = {.lex_state = 0}, + [1180] = {.lex_state = 26}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 26}, [1183] = {.lex_state = 26}, @@ -8613,38 +8612,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1186] = {.lex_state = 26}, [1187] = {.lex_state = 26}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, + [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 = 26}, - [1196] = {.lex_state = 0}, + [1196] = {.lex_state = 26}, [1197] = {.lex_state = 26}, [1198] = {.lex_state = 26}, [1199] = {.lex_state = 26}, [1200] = {.lex_state = 26}, [1201] = {.lex_state = 26}, - [1202] = {.lex_state = 26}, + [1202] = {.lex_state = 0}, [1203] = {.lex_state = 26}, - [1204] = {.lex_state = 26}, - [1205] = {.lex_state = 26}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 26}, + [1207] = {.lex_state = 26}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 26}, - [1210] = {.lex_state = 26}, - [1211] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 26}, [1212] = {.lex_state = 26}, [1213] = {.lex_state = 26}, [1214] = {.lex_state = 26}, [1215] = {.lex_state = 26}, - [1216] = {.lex_state = 26}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 26}, - [1220] = {.lex_state = 0}, + [1218] = {.lex_state = 26}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 26}, [1221] = {.lex_state = 26}, [1222] = {.lex_state = 26}, [1223] = {.lex_state = 26}, @@ -8659,30 +8658,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1232] = {.lex_state = 26}, [1233] = {.lex_state = 26}, [1234] = {.lex_state = 26}, - [1235] = {.lex_state = 26}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 26}, - [1238] = {.lex_state = 0}, + [1238] = {.lex_state = 26}, [1239] = {.lex_state = 26}, [1240] = {.lex_state = 26}, - [1241] = {.lex_state = 26}, + [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 26}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 26}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 26}, + [1245] = {.lex_state = 26}, + [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 26}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 26}, [1251] = {.lex_state = 26}, - [1252] = {.lex_state = 26}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 26}, + [1254] = {.lex_state = 26}, [1255] = {.lex_state = 26}, [1256] = {.lex_state = 26}, - [1257] = {.lex_state = 26}, - [1258] = {.lex_state = 26}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, [1259] = {.lex_state = 26}, [1260] = {.lex_state = 0}, [1261] = {.lex_state = 26}, @@ -8692,49 +8691,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1265] = {.lex_state = 26}, [1266] = {.lex_state = 26}, [1267] = {.lex_state = 26}, - [1268] = {.lex_state = 26}, + [1268] = {.lex_state = 0}, [1269] = {.lex_state = 26}, - [1270] = {.lex_state = 26}, + [1270] = {.lex_state = 0}, [1271] = {.lex_state = 26}, [1272] = {.lex_state = 26}, [1273] = {.lex_state = 26}, [1274] = {.lex_state = 26}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1276] = {.lex_state = 26}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 26}, [1279] = {.lex_state = 26}, [1280] = {.lex_state = 26}, [1281] = {.lex_state = 26}, - [1282] = {.lex_state = 26}, + [1282] = {.lex_state = 0}, [1283] = {.lex_state = 26}, - [1284] = {.lex_state = 26}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 26}, + [1286] = {.lex_state = 26}, + [1287] = {.lex_state = 26}, [1288] = {.lex_state = 26}, [1289] = {.lex_state = 26}, [1290] = {.lex_state = 26}, [1291] = {.lex_state = 26}, [1292] = {.lex_state = 26}, - [1293] = {.lex_state = 26}, - [1294] = {.lex_state = 26}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 26}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 26}, - [1300] = {.lex_state = 26}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 26}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 26}, + [1298] = {.lex_state = 26}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 26}, + [1302] = {.lex_state = 26}, [1303] = {.lex_state = 26}, [1304] = {.lex_state = 0}, [1305] = {.lex_state = 26}, [1306] = {.lex_state = 26}, [1307] = {.lex_state = 26}, - [1308] = {.lex_state = 26}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 26}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 26}, + [1310] = {.lex_state = 0}, [1311] = {.lex_state = 26}, [1312] = {.lex_state = 26}, [1313] = {.lex_state = 26}, @@ -8742,22 +8741,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1315] = {.lex_state = 26}, [1316] = {.lex_state = 26}, [1317] = {.lex_state = 26}, - [1318] = {.lex_state = 26}, - [1319] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 26}, [1320] = {.lex_state = 26}, [1321] = {.lex_state = 26}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 26}, - [1325] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 26}, [1326] = {.lex_state = 26}, [1327] = {.lex_state = 26}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 26}, - [1330] = {.lex_state = 0}, + [1328] = {.lex_state = 26}, + [1329] = {.lex_state = 0}, + [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}, @@ -8768,12 +8767,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1341] = {.lex_state = 26}, [1342] = {.lex_state = 26}, [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 26}, + [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, [1347] = {.lex_state = 26}, [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, + [1349] = {.lex_state = 26}, [1350] = {.lex_state = 26}, [1351] = {.lex_state = 26}, [1352] = {.lex_state = 26}, @@ -8782,66 +8781,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1355] = {.lex_state = 26}, [1356] = {.lex_state = 26}, [1357] = {.lex_state = 26}, - [1358] = {.lex_state = 26}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 26}, + [1360] = {.lex_state = 26}, [1361] = {.lex_state = 26}, - [1362] = {.lex_state = 26}, - [1363] = {.lex_state = 26}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 26}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 26}, - [1370] = {.lex_state = 0}, + [1365] = {.lex_state = 0}, + [1366] = {.lex_state = 26}, + [1367] = {.lex_state = 26}, + [1368] = {.lex_state = 26}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 26}, [1371] = {.lex_state = 26}, [1372] = {.lex_state = 26}, - [1373] = {.lex_state = 26}, - [1374] = {.lex_state = 0}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 26}, [1375] = {.lex_state = 26}, [1376] = {.lex_state = 26}, [1377] = {.lex_state = 26}, [1378] = {.lex_state = 26}, [1379] = {.lex_state = 26}, - [1380] = {.lex_state = 26}, + [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 26}, - [1383] = {.lex_state = 0}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 26}, [1384] = {.lex_state = 26}, [1385] = {.lex_state = 26}, [1386] = {.lex_state = 26}, [1387] = {.lex_state = 26}, [1388] = {.lex_state = 26}, - [1389] = {.lex_state = 0}, + [1389] = {.lex_state = 26}, [1390] = {.lex_state = 26}, [1391] = {.lex_state = 26}, [1392] = {.lex_state = 26}, - [1393] = {.lex_state = 26}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 26}, [1395] = {.lex_state = 26}, [1396] = {.lex_state = 26}, - [1397] = {.lex_state = 26}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 26}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 26}, + [1399] = {.lex_state = 0}, [1400] = {.lex_state = 26}, - [1401] = {.lex_state = 26}, + [1401] = {.lex_state = 0}, [1402] = {.lex_state = 26}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0}, + [1403] = {.lex_state = 26}, + [1404] = {.lex_state = 26}, + [1405] = {.lex_state = 26}, [1406] = {.lex_state = 26}, [1407] = {.lex_state = 26}, [1408] = {.lex_state = 26}, [1409] = {.lex_state = 26}, [1410] = {.lex_state = 26}, - [1411] = {.lex_state = 26}, + [1411] = {.lex_state = 0}, [1412] = {.lex_state = 26}, [1413] = {.lex_state = 26}, - [1414] = {.lex_state = 26}, + [1414] = {.lex_state = 0}, [1415] = {.lex_state = 26}, [1416] = {.lex_state = 26}, - [1417] = {.lex_state = 26}, + [1417] = {.lex_state = 0}, [1418] = {.lex_state = 26}, [1419] = {.lex_state = 26}, [1420] = {.lex_state = 26}, @@ -8853,8 +8852,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1426] = {.lex_state = 26}, [1427] = {.lex_state = 26}, [1428] = {.lex_state = 26}, - [1429] = {.lex_state = 26}, - [1430] = {.lex_state = 26}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 0}, [1431] = {.lex_state = 26}, [1432] = {.lex_state = 26}, [1433] = {.lex_state = 26}, @@ -8862,36 +8861,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1435] = {.lex_state = 26}, [1436] = {.lex_state = 26}, [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, + [1438] = {.lex_state = 26}, [1439] = {.lex_state = 26}, [1440] = {.lex_state = 26}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 26}, + [1441] = {.lex_state = 26}, + [1442] = {.lex_state = 0}, [1443] = {.lex_state = 26}, - [1444] = {.lex_state = 0}, + [1444] = {.lex_state = 26}, [1445] = {.lex_state = 26}, [1446] = {.lex_state = 26}, - [1447] = {.lex_state = 26}, - [1448] = {.lex_state = 0}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 26}, [1449] = {.lex_state = 26}, [1450] = {.lex_state = 26}, [1451] = {.lex_state = 26}, [1452] = {.lex_state = 26}, [1453] = {.lex_state = 26}, - [1454] = {.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}, [1461] = {.lex_state = 26}, - [1462] = {.lex_state = 26}, - [1463] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 26}, [1464] = {.lex_state = 26}, - [1465] = {.lex_state = 26}, + [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 0}, + [1467] = {.lex_state = 26}, [1468] = {.lex_state = 26}, [1469] = {.lex_state = 26}, [1470] = {.lex_state = 26}, @@ -8908,46 +8907,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1481] = {.lex_state = 26}, [1482] = {.lex_state = 26}, [1483] = {.lex_state = 26}, - [1484] = {.lex_state = 26}, + [1484] = {.lex_state = 0}, [1485] = {.lex_state = 0}, [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 26}, - [1489] = {.lex_state = 0}, + [1487] = {.lex_state = 26}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 26}, [1490] = {.lex_state = 26}, [1491] = {.lex_state = 26}, [1492] = {.lex_state = 26}, - [1493] = {.lex_state = 26}, - [1494] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 26}, [1495] = {.lex_state = 26}, [1496] = {.lex_state = 26}, [1497] = {.lex_state = 26}, [1498] = {.lex_state = 26}, [1499] = {.lex_state = 26}, [1500] = {.lex_state = 26}, - [1501] = {.lex_state = 26}, - [1502] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 26}, [1503] = {.lex_state = 26}, - [1504] = {.lex_state = 26}, + [1504] = {.lex_state = 0}, [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, + [1506] = {.lex_state = 26}, [1507] = {.lex_state = 26}, - [1508] = {.lex_state = 26}, + [1508] = {.lex_state = 0}, [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 26}, + [1510] = {.lex_state = 26}, + [1511] = {.lex_state = 0}, [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, + [1513] = {.lex_state = 26}, [1514] = {.lex_state = 26}, [1515] = {.lex_state = 26}, [1516] = {.lex_state = 26}, [1517] = {.lex_state = 26}, [1518] = {.lex_state = 26}, [1519] = {.lex_state = 26}, - [1520] = {.lex_state = 26}, - [1521] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 26}, [1522] = {.lex_state = 26}, - [1523] = {.lex_state = 0}, + [1523] = {.lex_state = 26}, [1524] = {.lex_state = 26}, [1525] = {.lex_state = 26}, [1526] = {.lex_state = 26}, @@ -8955,9 +8954,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1528] = {.lex_state = 26}, [1529] = {.lex_state = 26}, [1530] = {.lex_state = 26}, - [1531] = {.lex_state = 26}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 26}, - [1533] = {.lex_state = 0}, + [1533] = {.lex_state = 26}, [1534] = {.lex_state = 26}, [1535] = {.lex_state = 26}, [1536] = {.lex_state = 26}, @@ -8969,37 +8968,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1542] = {.lex_state = 26}, [1543] = {.lex_state = 26}, [1544] = {.lex_state = 26}, - [1545] = {.lex_state = 26}, + [1545] = {.lex_state = 0}, [1546] = {.lex_state = 26}, - [1547] = {.lex_state = 26}, + [1547] = {.lex_state = 0}, [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, + [1549] = {.lex_state = 26}, [1550] = {.lex_state = 26}, [1551] = {.lex_state = 26}, [1552] = {.lex_state = 26}, [1553] = {.lex_state = 26}, [1554] = {.lex_state = 26}, [1555] = {.lex_state = 26}, - [1556] = {.lex_state = 26}, - [1557] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 26}, [1558] = {.lex_state = 26}, - [1559] = {.lex_state = 26}, + [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, + [1561] = {.lex_state = 26}, [1562] = {.lex_state = 26}, - [1563] = {.lex_state = 26}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 26}, - [1566] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 26}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 26}, [1567] = {.lex_state = 26}, - [1568] = {.lex_state = 26}, - [1569] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 26}, [1570] = {.lex_state = 26}, [1571] = {.lex_state = 26}, [1572] = {.lex_state = 26}, [1573] = {.lex_state = 26}, - [1574] = {.lex_state = 26}, - [1575] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 26}, [1576] = {.lex_state = 26}, [1577] = {.lex_state = 26}, [1578] = {.lex_state = 26}, @@ -9014,8 +9013,8 @@ 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}, @@ -9026,10 +9025,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1599] = {.lex_state = 26}, [1600] = {.lex_state = 26}, [1601] = {.lex_state = 26}, - [1602] = {.lex_state = 26}, + [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, + [1605] = {.lex_state = 26}, [1606] = {.lex_state = 26}, [1607] = {.lex_state = 26}, [1608] = {.lex_state = 26}, @@ -9067,40 +9066,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1640] = {.lex_state = 26}, [1641] = {.lex_state = 26}, [1642] = {.lex_state = 26}, - [1643] = {.lex_state = 26}, - [1644] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 26}, [1645] = {.lex_state = 26}, [1646] = {.lex_state = 26}, [1647] = {.lex_state = 26}, - [1648] = {.lex_state = 26}, + [1648] = {.lex_state = 0}, [1649] = {.lex_state = 26}, - [1650] = {.lex_state = 26}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 26}, - [1653] = {.lex_state = 0}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 26}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 26}, [1654] = {.lex_state = 26}, - [1655] = {.lex_state = 26}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 26}, + [1657] = {.lex_state = 26}, [1658] = {.lex_state = 26}, [1659] = {.lex_state = 26}, [1660] = {.lex_state = 26}, - [1661] = {.lex_state = 26}, - [1662] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 26}, [1663] = {.lex_state = 26}, [1664] = {.lex_state = 26}, - [1665] = {.lex_state = 26}, - [1666] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 26}, [1667] = {.lex_state = 26}, - [1668] = {.lex_state = 26}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 26}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 26}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 26}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 26}, + [1670] = {.lex_state = 0}, + [1671] = {.lex_state = 26}, + [1672] = {.lex_state = 0}, + [1673] = {.lex_state = 26}, + [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, + [1676] = {.lex_state = 26}, [1677] = {.lex_state = 26}, [1678] = {.lex_state = 26}, [1679] = {.lex_state = 26}, @@ -9117,20 +9116,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1690] = {.lex_state = 26}, [1691] = {.lex_state = 26}, [1692] = {.lex_state = 26}, - [1693] = {.lex_state = 26}, - [1694] = {.lex_state = 26}, - [1695] = {.lex_state = 0}, + [1693] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 26}, [1696] = {.lex_state = 26}, [1697] = {.lex_state = 26}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 26}, + [1698] = {.lex_state = 26}, + [1699] = {.lex_state = 0}, [1700] = {.lex_state = 26}, - [1701] = {.lex_state = 0}, + [1701] = {.lex_state = 26}, [1702] = {.lex_state = 26}, - [1703] = {.lex_state = 26}, - [1704] = {.lex_state = 26}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 26}, + [1706] = {.lex_state = 26}, [1707] = {.lex_state = 26}, [1708] = {.lex_state = 26}, [1709] = {.lex_state = 26}, @@ -9139,29 +9138,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1712] = {.lex_state = 26}, [1713] = {.lex_state = 26}, [1714] = {.lex_state = 26}, - [1715] = {.lex_state = 26}, + [1715] = {.lex_state = 0}, [1716] = {.lex_state = 26}, [1717] = {.lex_state = 26}, [1718] = {.lex_state = 26}, - [1719] = {.lex_state = 0}, + [1719] = {.lex_state = 26}, [1720] = {.lex_state = 26}, [1721] = {.lex_state = 26}, [1722] = {.lex_state = 26}, - [1723] = {.lex_state = 26}, + [1723] = {.lex_state = 0}, [1724] = {.lex_state = 26}, - [1725] = {.lex_state = 0}, + [1725] = {.lex_state = 26}, [1726] = {.lex_state = 26}, - [1727] = {.lex_state = 26}, - [1728] = {.lex_state = 0}, + [1727] = {.lex_state = 0}, + [1728] = {.lex_state = 26}, [1729] = {.lex_state = 26}, [1730] = {.lex_state = 26}, [1731] = {.lex_state = 26}, - [1732] = {.lex_state = 26}, - [1733] = {.lex_state = 0}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 26}, [1734] = {.lex_state = 26}, [1735] = {.lex_state = 26}, - [1736] = {.lex_state = 26}, - [1737] = {.lex_state = 0}, + [1736] = {.lex_state = 0}, + [1737] = {.lex_state = 26}, [1738] = {.lex_state = 26}, [1739] = {.lex_state = 26}, [1740] = {.lex_state = 26}, @@ -9176,11 +9175,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1749] = {.lex_state = 26}, [1750] = {.lex_state = 26}, [1751] = {.lex_state = 26}, - [1752] = {.lex_state = 26}, - [1753] = {.lex_state = 0}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 26}, [1754] = {.lex_state = 26}, - [1755] = {.lex_state = 26}, - [1756] = {.lex_state = 0}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 26}, [1757] = {.lex_state = 26}, [1758] = {.lex_state = 26}, [1759] = {.lex_state = 26}, @@ -9194,12 +9193,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1767] = {.lex_state = 26}, [1768] = {.lex_state = 26}, [1769] = {.lex_state = 26}, - [1770] = {.lex_state = 26}, - [1771] = {.lex_state = 0}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 26}, [1772] = {.lex_state = 26}, [1773] = {.lex_state = 26}, - [1774] = {.lex_state = 26}, - [1775] = {.lex_state = 7}, + [1774] = {.lex_state = 7}, + [1775] = {.lex_state = 26}, [1776] = {.lex_state = 26}, [1777] = {.lex_state = 26}, [1778] = {.lex_state = 26}, @@ -9207,13 +9206,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1780] = {.lex_state = 26}, [1781] = {.lex_state = 26}, [1782] = {.lex_state = 26}, - [1783] = {.lex_state = 26}, - [1784] = {.lex_state = 0}, + [1783] = {.lex_state = 0}, + [1784] = {.lex_state = 26}, [1785] = {.lex_state = 26}, [1786] = {.lex_state = 26}, [1787] = {.lex_state = 26}, - [1788] = {.lex_state = 26}, - [1789] = {.lex_state = 0}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 26}, [1790] = {.lex_state = 26}, [1791] = {.lex_state = 26}, [1792] = {.lex_state = 26}, @@ -9221,9 +9220,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1794] = {.lex_state = 26}, [1795] = {.lex_state = 26}, [1796] = {.lex_state = 26}, - [1797] = {.lex_state = 26}, + [1797] = {.lex_state = 0}, [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, + [1799] = {.lex_state = 26}, [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, @@ -9240,13 +9239,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1813] = {.lex_state = 26}, [1814] = {.lex_state = 26}, [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, - [1819] = {.lex_state = 0}, + [1816] = {.lex_state = 26}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 26}, [1820] = {.lex_state = 26}, - [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 0}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 26}, [1823] = {.lex_state = 26}, [1824] = {.lex_state = 26}, [1825] = {.lex_state = 26}, @@ -9259,8 +9258,8 @@ 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}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 26}, [1837] = {.lex_state = 26}, [1838] = {.lex_state = 26}, [1839] = {.lex_state = 26}, @@ -9271,16 +9270,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 26}, - [1848] = {.lex_state = 0}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 26}, [1849] = {.lex_state = 26}, [1850] = {.lex_state = 26}, [1851] = {.lex_state = 26}, [1852] = {.lex_state = 26}, [1853] = {.lex_state = 26}, - [1854] = {.lex_state = 26}, + [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, + [1856] = {.lex_state = 26}, [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 26}, @@ -9296,10 +9295,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1869] = {.lex_state = 26}, [1870] = {.lex_state = 26}, [1871] = {.lex_state = 26}, - [1872] = {.lex_state = 26}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 26}, - [1875] = {.lex_state = 0}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 26}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, [1877] = {.lex_state = 26}, [1878] = {.lex_state = 26}, @@ -9308,22 +9307,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, [1883] = {.lex_state = 26}, - [1884] = {.lex_state = 26}, - [1885] = {.lex_state = 0}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 26}, [1886] = {.lex_state = 26}, [1887] = {.lex_state = 26}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 26}, - [1893] = {.lex_state = 0}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 26}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, [1895] = {.lex_state = 26}, [1896] = {.lex_state = 26}, - [1897] = {.lex_state = 26}, + [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, + [1899] = {.lex_state = 26}, [1900] = {.lex_state = 26}, [1901] = {.lex_state = 26}, [1902] = {.lex_state = 26}, @@ -9333,36 +9332,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1906] = {.lex_state = 26}, [1907] = {.lex_state = 26}, [1908] = {.lex_state = 26}, - [1909] = {.lex_state = 26}, - [1910] = {.lex_state = 0}, + [1909] = {.lex_state = 0}, + [1910] = {.lex_state = 26}, [1911] = {.lex_state = 26}, [1912] = {.lex_state = 26}, [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 26}, + [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, + [1916] = {.lex_state = 26}, [1917] = {.lex_state = 26}, [1918] = {.lex_state = 26}, [1919] = {.lex_state = 26}, [1920] = {.lex_state = 26}, [1921] = {.lex_state = 26}, [1922] = {.lex_state = 26}, - [1923] = {.lex_state = 26}, - [1924] = {.lex_state = 0}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 26}, [1925] = {.lex_state = 26}, [1926] = {.lex_state = 26}, [1927] = {.lex_state = 26}, - [1928] = {.lex_state = 26}, - [1929] = {.lex_state = 0}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 26}, [1930] = {.lex_state = 26}, [1931] = {.lex_state = 26}, [1932] = {.lex_state = 26}, [1933] = {.lex_state = 26}, [1934] = {.lex_state = 26}, - [1935] = {.lex_state = 26}, - [1936] = {.lex_state = 0}, + [1935] = {.lex_state = 0}, + [1936] = {.lex_state = 26}, [1937] = {.lex_state = 26}, - [1938] = {.lex_state = 26}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9481,101 +9479,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(1), }, [1] = { - [sym_compilation] = STATE(1916), - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__defining_identifier_list] = STATE(1915), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), + [sym_compilation] = STATE(1915), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__defining_identifier_list] = STATE(1914), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(477), - [sym__basic_declarative_item] = STATE(477), - [sym__basic_declaration] = STATE(477), - [sym__package_declaration] = STATE(477), - [sym_package_specification] = STATE(1909), - [sym_with_clause] = STATE(477), - [sym_use_clause] = STATE(477), - [sym_subunit] = STATE(477), - [sym__proper_body] = STATE(477), - [sym_subprogram_body] = STATE(477), - [sym_package_body] = STATE(477), - [sym__type_declaration] = STATE(477), - [sym_full_type_declaration] = STATE(477), - [sym_private_type_declaration] = STATE(477), - [sym_private_extension_declaration] = STATE(477), - [sym_incomplete_type_declaration] = STATE(477), - [sym__aspect_clause] = STATE(477), - [sym_at_clause] = STATE(477), - [sym_attribute_definition_clause] = STATE(477), - [sym_body_stub] = STATE(477), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(477), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(477), - [sym_protected_body_stub] = STATE(312), - [sym_entry_declaration] = STATE(477), - [sym_enumeration_representation_clause] = STATE(477), - [sym_exception_declaration] = STATE(477), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(477), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(477), - [sym_generic_package_declaration] = STATE(477), - [sym_generic_instantiation] = STATE(477), - [sym_loop_label] = STATE(947), + [sym__declarative_item] = STATE(478), + [sym__basic_declarative_item] = STATE(478), + [sym__basic_declaration] = STATE(478), + [sym__package_declaration] = STATE(478), + [sym_package_specification] = STATE(1908), + [sym_with_clause] = STATE(478), + [sym_use_clause] = STATE(478), + [sym_subunit] = STATE(478), + [sym__proper_body] = STATE(478), + [sym_subprogram_body] = STATE(478), + [sym_package_body] = STATE(478), + [sym__type_declaration] = STATE(478), + [sym_full_type_declaration] = STATE(478), + [sym_private_type_declaration] = STATE(478), + [sym_private_extension_declaration] = STATE(478), + [sym_incomplete_type_declaration] = STATE(478), + [sym__aspect_clause] = STATE(478), + [sym_at_clause] = STATE(478), + [sym_attribute_definition_clause] = STATE(478), + [sym_body_stub] = STATE(478), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(478), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(478), + [sym_protected_body_stub] = STATE(422), + [sym_entry_declaration] = STATE(478), + [sym_enumeration_representation_clause] = STATE(478), + [sym_exception_declaration] = STATE(478), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(478), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(478), + [sym_generic_package_declaration] = STATE(478), + [sym_generic_instantiation] = STATE(478), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(477), - [sym_null_statement] = STATE(167), - [sym_number_declaration] = STATE(477), - [sym_object_declaration] = STATE(477), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(950), - [sym_pragma_g] = STATE(167), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(477), - [sym__renaming_declaration] = STATE(477), - [sym_object_renaming_declaration] = STATE(477), - [sym_exception_renaming_declaration] = STATE(477), - [sym_package_renaming_declaration] = STATE(477), - [sym_subprogram_renaming_declaration] = STATE(477), - [sym_generic_renaming_declaration] = STATE(477), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(477), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [sym_subprogram_declaration] = STATE(477), - [sym_expression_function_declaration] = STATE(477), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(477), + [sym_null_procedure_declaration] = STATE(478), + [sym_null_statement] = STATE(478), + [sym_number_declaration] = STATE(478), + [sym_object_declaration] = STATE(478), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(949), + [sym_pragma_g] = STATE(478), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(478), + [sym__renaming_declaration] = STATE(478), + [sym_object_renaming_declaration] = STATE(478), + [sym_exception_renaming_declaration] = STATE(478), + [sym_package_renaming_declaration] = STATE(478), + [sym_subprogram_renaming_declaration] = STATE(478), + [sym_generic_renaming_declaration] = STATE(478), + [sym__simple_statement] = STATE(478), + [sym__statement] = STATE(478), + [sym__compound_statement] = STATE(478), + [sym__select_statement] = STATE(478), + [sym_asynchronous_select] = STATE(478), + [sym_conditional_entry_call] = STATE(478), + [sym_timed_entry_call] = STATE(478), + [sym_selective_accept] = STATE(478), + [sym_abort_statement] = STATE(478), + [sym_requeue_statement] = STATE(478), + [sym_accept_statement] = STATE(478), + [sym_case_statement] = STATE(478), + [sym_block_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_exit_statement] = STATE(478), + [sym_goto_statement] = STATE(478), + [sym__delay_statement] = STATE(478), + [sym_delay_until_statement] = STATE(478), + [sym_delay_relative_statement] = STATE(478), + [sym_simple_return_statement] = STATE(478), + [sym_extended_return_statement] = STATE(478), + [sym_procedure_call_statement] = STATE(478), + [sym_raise_statement] = STATE(478), + [sym_loop_statement] = STATE(478), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(478), + [sym_subprogram_declaration] = STATE(478), + [sym_expression_function_declaration] = STATE(478), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(478), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(5), @@ -9622,100 +9620,100 @@ 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_selected_component] = STATE(918), - [sym__defining_identifier_list] = STATE(1915), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__defining_identifier_list] = STATE(1914), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(477), - [sym__basic_declarative_item] = STATE(477), - [sym__basic_declaration] = STATE(477), - [sym__package_declaration] = STATE(477), - [sym_package_specification] = STATE(1909), - [sym_with_clause] = STATE(477), - [sym_use_clause] = STATE(477), - [sym_subunit] = STATE(477), - [sym__proper_body] = STATE(477), - [sym_subprogram_body] = STATE(477), - [sym_package_body] = STATE(477), - [sym__type_declaration] = STATE(477), - [sym_full_type_declaration] = STATE(477), - [sym_private_type_declaration] = STATE(477), - [sym_private_extension_declaration] = STATE(477), - [sym_incomplete_type_declaration] = STATE(477), - [sym__aspect_clause] = STATE(477), - [sym_at_clause] = STATE(477), - [sym_attribute_definition_clause] = STATE(477), - [sym_body_stub] = STATE(477), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(477), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(477), - [sym_protected_body_stub] = STATE(312), - [sym_entry_declaration] = STATE(477), - [sym_enumeration_representation_clause] = STATE(477), - [sym_exception_declaration] = STATE(477), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(477), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(477), - [sym_generic_package_declaration] = STATE(477), - [sym_generic_instantiation] = STATE(477), - [sym_loop_label] = STATE(947), + [sym__declarative_item] = STATE(478), + [sym__basic_declarative_item] = STATE(478), + [sym__basic_declaration] = STATE(478), + [sym__package_declaration] = STATE(478), + [sym_package_specification] = STATE(1908), + [sym_with_clause] = STATE(478), + [sym_use_clause] = STATE(478), + [sym_subunit] = STATE(478), + [sym__proper_body] = STATE(478), + [sym_subprogram_body] = STATE(478), + [sym_package_body] = STATE(478), + [sym__type_declaration] = STATE(478), + [sym_full_type_declaration] = STATE(478), + [sym_private_type_declaration] = STATE(478), + [sym_private_extension_declaration] = STATE(478), + [sym_incomplete_type_declaration] = STATE(478), + [sym__aspect_clause] = STATE(478), + [sym_at_clause] = STATE(478), + [sym_attribute_definition_clause] = STATE(478), + [sym_body_stub] = STATE(478), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(478), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(478), + [sym_protected_body_stub] = STATE(422), + [sym_entry_declaration] = STATE(478), + [sym_enumeration_representation_clause] = STATE(478), + [sym_exception_declaration] = STATE(478), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(478), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(478), + [sym_generic_package_declaration] = STATE(478), + [sym_generic_instantiation] = STATE(478), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(477), - [sym_null_statement] = STATE(167), - [sym_number_declaration] = STATE(477), - [sym_object_declaration] = STATE(477), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(950), - [sym_pragma_g] = STATE(167), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(477), - [sym__renaming_declaration] = STATE(477), - [sym_object_renaming_declaration] = STATE(477), - [sym_exception_renaming_declaration] = STATE(477), - [sym_package_renaming_declaration] = STATE(477), - [sym_subprogram_renaming_declaration] = STATE(477), - [sym_generic_renaming_declaration] = STATE(477), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(477), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [sym_subprogram_declaration] = STATE(477), - [sym_expression_function_declaration] = STATE(477), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(477), + [sym_null_procedure_declaration] = STATE(478), + [sym_null_statement] = STATE(478), + [sym_number_declaration] = STATE(478), + [sym_object_declaration] = STATE(478), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(949), + [sym_pragma_g] = STATE(478), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(478), + [sym__renaming_declaration] = STATE(478), + [sym_object_renaming_declaration] = STATE(478), + [sym_exception_renaming_declaration] = STATE(478), + [sym_package_renaming_declaration] = STATE(478), + [sym_subprogram_renaming_declaration] = STATE(478), + [sym_generic_renaming_declaration] = STATE(478), + [sym__simple_statement] = STATE(478), + [sym__statement] = STATE(478), + [sym__compound_statement] = STATE(478), + [sym__select_statement] = STATE(478), + [sym_asynchronous_select] = STATE(478), + [sym_conditional_entry_call] = STATE(478), + [sym_timed_entry_call] = STATE(478), + [sym_selective_accept] = STATE(478), + [sym_abort_statement] = STATE(478), + [sym_requeue_statement] = STATE(478), + [sym_accept_statement] = STATE(478), + [sym_case_statement] = STATE(478), + [sym_block_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_exit_statement] = STATE(478), + [sym_goto_statement] = STATE(478), + [sym__delay_statement] = STATE(478), + [sym_delay_until_statement] = STATE(478), + [sym_delay_relative_statement] = STATE(478), + [sym_simple_return_statement] = STATE(478), + [sym_extended_return_statement] = STATE(478), + [sym_procedure_call_statement] = STATE(478), + [sym_raise_statement] = STATE(478), + [sym_loop_statement] = STATE(478), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(478), + [sym_subprogram_declaration] = STATE(478), + [sym_expression_function_declaration] = STATE(478), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(478), [aux_sym_compilation_repeat1] = STATE(3), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(83), @@ -9762,100 +9760,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [3] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__defining_identifier_list] = STATE(1915), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__defining_identifier_list] = STATE(1914), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(477), - [sym__basic_declarative_item] = STATE(477), - [sym__basic_declaration] = STATE(477), - [sym__package_declaration] = STATE(477), - [sym_package_specification] = STATE(1909), - [sym_with_clause] = STATE(477), - [sym_use_clause] = STATE(477), - [sym_subunit] = STATE(477), - [sym__proper_body] = STATE(477), - [sym_subprogram_body] = STATE(477), - [sym_package_body] = STATE(477), - [sym__type_declaration] = STATE(477), - [sym_full_type_declaration] = STATE(477), - [sym_private_type_declaration] = STATE(477), - [sym_private_extension_declaration] = STATE(477), - [sym_incomplete_type_declaration] = STATE(477), - [sym__aspect_clause] = STATE(477), - [sym_at_clause] = STATE(477), - [sym_attribute_definition_clause] = STATE(477), - [sym_body_stub] = STATE(477), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(477), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(477), - [sym_protected_body_stub] = STATE(312), - [sym_entry_declaration] = STATE(477), - [sym_enumeration_representation_clause] = STATE(477), - [sym_exception_declaration] = STATE(477), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(477), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(477), - [sym_generic_package_declaration] = STATE(477), - [sym_generic_instantiation] = STATE(477), - [sym_loop_label] = STATE(947), + [sym__declarative_item] = STATE(478), + [sym__basic_declarative_item] = STATE(478), + [sym__basic_declaration] = STATE(478), + [sym__package_declaration] = STATE(478), + [sym_package_specification] = STATE(1908), + [sym_with_clause] = STATE(478), + [sym_use_clause] = STATE(478), + [sym_subunit] = STATE(478), + [sym__proper_body] = STATE(478), + [sym_subprogram_body] = STATE(478), + [sym_package_body] = STATE(478), + [sym__type_declaration] = STATE(478), + [sym_full_type_declaration] = STATE(478), + [sym_private_type_declaration] = STATE(478), + [sym_private_extension_declaration] = STATE(478), + [sym_incomplete_type_declaration] = STATE(478), + [sym__aspect_clause] = STATE(478), + [sym_at_clause] = STATE(478), + [sym_attribute_definition_clause] = STATE(478), + [sym_body_stub] = STATE(478), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(478), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(478), + [sym_protected_body_stub] = STATE(422), + [sym_entry_declaration] = STATE(478), + [sym_enumeration_representation_clause] = STATE(478), + [sym_exception_declaration] = STATE(478), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(478), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(478), + [sym_generic_package_declaration] = STATE(478), + [sym_generic_instantiation] = STATE(478), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(477), - [sym_null_statement] = STATE(167), - [sym_number_declaration] = STATE(477), - [sym_object_declaration] = STATE(477), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(950), - [sym_pragma_g] = STATE(167), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(477), - [sym__renaming_declaration] = STATE(477), - [sym_object_renaming_declaration] = STATE(477), - [sym_exception_renaming_declaration] = STATE(477), - [sym_package_renaming_declaration] = STATE(477), - [sym_subprogram_renaming_declaration] = STATE(477), - [sym_generic_renaming_declaration] = STATE(477), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(477), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [sym_subprogram_declaration] = STATE(477), - [sym_expression_function_declaration] = STATE(477), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(477), + [sym_null_procedure_declaration] = STATE(478), + [sym_null_statement] = STATE(478), + [sym_number_declaration] = STATE(478), + [sym_object_declaration] = STATE(478), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(949), + [sym_pragma_g] = STATE(478), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(478), + [sym__renaming_declaration] = STATE(478), + [sym_object_renaming_declaration] = STATE(478), + [sym_exception_renaming_declaration] = STATE(478), + [sym_package_renaming_declaration] = STATE(478), + [sym_subprogram_renaming_declaration] = STATE(478), + [sym_generic_renaming_declaration] = STATE(478), + [sym__simple_statement] = STATE(478), + [sym__statement] = STATE(478), + [sym__compound_statement] = STATE(478), + [sym__select_statement] = STATE(478), + [sym_asynchronous_select] = STATE(478), + [sym_conditional_entry_call] = STATE(478), + [sym_timed_entry_call] = STATE(478), + [sym_selective_accept] = STATE(478), + [sym_abort_statement] = STATE(478), + [sym_requeue_statement] = STATE(478), + [sym_accept_statement] = STATE(478), + [sym_case_statement] = STATE(478), + [sym_block_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_exit_statement] = STATE(478), + [sym_goto_statement] = STATE(478), + [sym__delay_statement] = STATE(478), + [sym_delay_until_statement] = STATE(478), + [sym_delay_relative_statement] = STATE(478), + [sym_simple_return_statement] = STATE(478), + [sym_extended_return_statement] = STATE(478), + [sym_procedure_call_statement] = STATE(478), + [sym_raise_statement] = STATE(478), + [sym_loop_statement] = STATE(478), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(478), + [sym_subprogram_declaration] = STATE(478), + [sym_expression_function_declaration] = STATE(478), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(478), [aux_sym_compilation_repeat1] = STATE(3), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(85), @@ -9902,63 +9900,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(198), }, [4] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1707), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1529), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -9979,63 +9977,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(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1530), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1705), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10056,147 +10054,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [6] = { - [sym_unary_adding_operator] = STATE(502), - [sym__name] = STATE(495), - [sym_selected_component] = STATE(495), - [sym__attribute_reference] = STATE(495), - [sym__reduction_attribute_reference] = STATE(495), - [sym_value_sequence] = STATE(1910), - [sym_iterated_element_association] = STATE(1238), - [sym_function_call] = STATE(495), - [sym_qualified_expression] = STATE(495), - [sym__subtype_indication] = STATE(1405), - [sym_range_g] = STATE(1381), - [sym_expression] = STATE(957), - [sym__relation] = STATE(559), - [sym_relation_membership] = STATE(559), - [sym_raise_expression] = STATE(559), - [sym__simple_expression] = STATE(590), - [sym_term] = STATE(507), - [sym__factor] = STATE(485), - [sym_factor_power] = STATE(485), - [sym_factor_abs] = STATE(485), - [sym_factor_not] = STATE(485), - [sym__parenthesized_expression] = STATE(492), - [sym__primary] = STATE(492), - [sym_primary_null] = STATE(492), - [sym_allocator] = STATE(492), - [sym__conditional_expression] = STATE(1673), - [sym_quantified_expression] = STATE(1673), - [sym_declare_expression] = STATE(1673), - [sym_case_expression] = STATE(1673), - [sym_component_choice_list] = STATE(1671), - [sym__aggregate] = STATE(492), - [sym__delta_aggregate] = STATE(492), - [sym_extension_aggregate] = STATE(492), - [sym_record_delta_aggregate] = STATE(492), - [sym_array_delta_aggregate] = STATE(492), - [sym_record_aggregate] = STATE(492), - [sym_record_component_association_list] = STATE(1666), - [sym__named_record_component_association] = STATE(1253), - [sym_null_exclusion] = STATE(757), - [sym__array_aggregate] = STATE(492), - [sym_positional_array_aggregate] = STATE(492), - [sym_null_array_aggregate] = STATE(492), - [sym_named_array_aggregate] = STATE(492), - [sym__array_component_association_list] = STATE(1662), - [sym_array_component_association] = STATE(1112), - [sym_discrete_choice_list] = STATE(1656), - [sym_discrete_choice] = STATE(1260), - [sym_global_aspect_element] = STATE(1298), - [sym_global_mode] = STATE(691), - [sym_non_empty_mode] = STATE(817), - [sym_if_expression] = STATE(1673), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(219), - [sym_character_literal] = ACTIONS(219), - [sym_numeric_literal] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(225), - [sym_target_name] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(229), - [aux_sym_chunk_specification_token1] = ACTIONS(231), - [aux_sym_iterated_element_association_token1] = ACTIONS(233), - [aux_sym_relation_membership_token1] = ACTIONS(235), - [aux_sym_raise_expression_token1] = ACTIONS(237), - [aux_sym_factor_abs_token1] = ACTIONS(239), - [aux_sym_primary_null_token1] = ACTIONS(241), - [aux_sym_allocator_token1] = ACTIONS(243), - [aux_sym_declare_expression_token1] = ACTIONS(245), - [aux_sym_case_expression_token1] = ACTIONS(247), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(249), - [aux_sym_global_mode_token1] = ACTIONS(251), - [aux_sym_non_empty_mode_token1] = ACTIONS(253), - [aux_sym_if_expression_token1] = ACTIONS(255), - }, - [7] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1930), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1434), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [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_subunit_token1] = ACTIONS(257), - [aux_sym_subprogram_body_token1] = ACTIONS(259), + [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), @@ -10207,64 +10129,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), }, - [8] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1707), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [7] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1529), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10283,140 +10205,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), }, - [9] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1459), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), - [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(261), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(263), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [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), - }, - [10] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1530), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [8] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1705), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10435,71 +10281,223 @@ 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(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1371), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [9] = { + [sym_unary_adding_operator] = STATE(500), + [sym__name] = STATE(493), + [sym_selected_component] = STATE(493), + [sym__attribute_reference] = STATE(493), + [sym__reduction_attribute_reference] = STATE(493), + [sym_value_sequence] = STATE(1909), + [sym_iterated_element_association] = STATE(1236), + [sym_function_call] = STATE(493), + [sym_qualified_expression] = STATE(493), + [sym__subtype_indication] = STATE(1401), + [sym_range_g] = STATE(1380), + [sym_expression] = STATE(933), + [sym__relation] = STATE(557), + [sym_relation_membership] = STATE(557), + [sym_raise_expression] = STATE(557), + [sym__simple_expression] = STATE(589), + [sym_term] = STATE(504), + [sym__factor] = STATE(482), + [sym_factor_power] = STATE(482), + [sym_factor_abs] = STATE(482), + [sym_factor_not] = STATE(482), + [sym__parenthesized_expression] = STATE(491), + [sym__primary] = STATE(491), + [sym_primary_null] = STATE(491), + [sym_allocator] = STATE(491), + [sym__conditional_expression] = STATE(1672), + [sym_quantified_expression] = STATE(1672), + [sym_declare_expression] = STATE(1672), + [sym_case_expression] = STATE(1672), + [sym_component_choice_list] = STATE(1670), + [sym__aggregate] = STATE(491), + [sym__delta_aggregate] = STATE(491), + [sym_extension_aggregate] = STATE(491), + [sym_record_delta_aggregate] = STATE(491), + [sym_array_delta_aggregate] = STATE(491), + [sym_record_aggregate] = STATE(491), + [sym_record_component_association_list] = STATE(1665), + [sym__named_record_component_association] = STATE(1249), + [sym_null_exclusion] = STATE(756), + [sym__array_aggregate] = STATE(491), + [sym_positional_array_aggregate] = STATE(491), + [sym_null_array_aggregate] = STATE(491), + [sym_named_array_aggregate] = STATE(491), + [sym__array_component_association_list] = STATE(1661), + [sym_array_component_association] = STATE(1092), + [sym_discrete_choice_list] = STATE(1655), + [sym_discrete_choice] = STATE(1258), + [sym_global_aspect_element] = STATE(1294), + [sym_global_mode] = STATE(729), + [sym_non_empty_mode] = STATE(816), + [sym_if_expression] = STATE(1672), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(223), + [sym_character_literal] = ACTIONS(223), + [sym_numeric_literal] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(229), + [sym_target_name] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(233), + [aux_sym_chunk_specification_token1] = ACTIONS(235), + [aux_sym_iterated_element_association_token1] = ACTIONS(237), + [aux_sym_relation_membership_token1] = ACTIONS(239), + [aux_sym_raise_expression_token1] = ACTIONS(241), + [aux_sym_factor_abs_token1] = ACTIONS(243), + [aux_sym_primary_null_token1] = ACTIONS(245), + [aux_sym_allocator_token1] = ACTIONS(247), + [aux_sym_declare_expression_token1] = ACTIONS(249), + [aux_sym_case_expression_token1] = ACTIONS(251), + [aux_sym_positional_array_aggregate_token1] = ACTIONS(253), + [aux_sym_global_mode_token1] = ACTIONS(255), + [aux_sym_non_empty_mode_token1] = ACTIONS(257), + [aux_sym_if_expression_token1] = ACTIONS(259), + }, + [10] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1451), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [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(265), + [aux_sym_package_specification_token3] = ACTIONS(261), [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(263), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [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), + }, + [11] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1929), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(265), [aux_sym_subprogram_body_token1] = ACTIONS(267), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), @@ -10512,145 +10510,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [12] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1850), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(201), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(12), + [sym__basic_declarative_item] = STATE(12), + [sym__basic_declaration] = STATE(12), + [sym__package_declaration] = STATE(12), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(12), + [sym__proper_body] = STATE(12), + [sym_subprogram_body] = STATE(12), + [sym_package_body] = STATE(12), + [sym__type_declaration] = STATE(12), + [sym_full_type_declaration] = STATE(12), + [sym_private_type_declaration] = STATE(12), + [sym_private_extension_declaration] = STATE(12), + [sym_incomplete_type_declaration] = STATE(12), + [sym__aspect_clause] = STATE(12), + [sym_at_clause] = STATE(12), + [sym_attribute_definition_clause] = STATE(12), + [sym_body_stub] = STATE(12), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(12), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(12), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(12), + [sym_enumeration_representation_clause] = STATE(12), + [sym_exception_declaration] = STATE(12), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(12), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(12), + [sym_generic_package_declaration] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_null_procedure_declaration] = STATE(12), + [sym_number_declaration] = STATE(12), + [sym_object_declaration] = STATE(12), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(12), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(12), + [sym__renaming_declaration] = STATE(12), + [sym_object_renaming_declaration] = STATE(12), + [sym_exception_renaming_declaration] = STATE(12), + [sym_package_renaming_declaration] = STATE(12), + [sym_subprogram_renaming_declaration] = STATE(12), + [sym_generic_renaming_declaration] = STATE(12), + [sym_subprogram_declaration] = STATE(12), + [sym_expression_function_declaration] = STATE(12), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(12), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(269), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(269), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [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), + [aux_sym_iterated_element_association_token1] = ACTIONS(272), + [aux_sym_iterated_element_association_token2] = ACTIONS(275), + [aux_sym_package_specification_token1] = ACTIONS(278), + [aux_sym_package_specification_token3] = ACTIONS(281), + [aux_sym_use_clause_token2] = ACTIONS(283), + [aux_sym_subprogram_body_token1] = ACTIONS(281), + [aux_sym_relation_membership_token1] = ACTIONS(286), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(289), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(292), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(295), + [aux_sym_interface_type_definition_token1] = ACTIONS(298), + [aux_sym_generic_formal_part_token1] = ACTIONS(301), + [aux_sym_global_mode_token1] = ACTIONS(304), + [aux_sym_pragma_g_token1] = ACTIONS(307), + [aux_sym_subtype_declaration_token1] = ACTIONS(310), }, [13] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1895), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1929), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [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(271), + [aux_sym_subprogram_body_token1] = ACTIONS(267), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -10662,138 +10660,213 @@ 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(1915), - [sym__declarative_item] = STATE(14), - [sym__basic_declarative_item] = STATE(14), - [sym__basic_declaration] = STATE(14), - [sym__package_declaration] = STATE(14), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(14), - [sym__proper_body] = STATE(14), - [sym_subprogram_body] = STATE(14), - [sym_package_body] = STATE(14), - [sym__type_declaration] = STATE(14), - [sym_full_type_declaration] = STATE(14), - [sym_private_type_declaration] = STATE(14), - [sym_private_extension_declaration] = STATE(14), - [sym_incomplete_type_declaration] = STATE(14), - [sym__aspect_clause] = STATE(14), - [sym_at_clause] = STATE(14), - [sym_attribute_definition_clause] = STATE(14), - [sym_body_stub] = STATE(14), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(14), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(14), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(14), - [sym_enumeration_representation_clause] = STATE(14), - [sym_exception_declaration] = STATE(14), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(14), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(14), - [sym_generic_package_declaration] = STATE(14), - [sym_generic_instantiation] = STATE(14), - [sym_null_procedure_declaration] = STATE(14), - [sym_number_declaration] = STATE(14), - [sym_object_declaration] = STATE(14), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(14), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(14), - [sym__renaming_declaration] = STATE(14), - [sym_object_renaming_declaration] = STATE(14), - [sym_exception_renaming_declaration] = STATE(14), - [sym_package_renaming_declaration] = STATE(14), - [sym_subprogram_renaming_declaration] = STATE(14), - [sym_generic_renaming_declaration] = STATE(14), - [sym_subprogram_declaration] = STATE(14), - [sym_expression_function_declaration] = STATE(14), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(14), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(273), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1779), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(276), - [aux_sym_iterated_element_association_token2] = ACTIONS(279), - [aux_sym_package_specification_token1] = ACTIONS(282), - [aux_sym_package_specification_token3] = ACTIONS(285), - [aux_sym_use_clause_token2] = ACTIONS(287), - [aux_sym_subprogram_body_token1] = ACTIONS(285), - [aux_sym_relation_membership_token1] = ACTIONS(290), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(293), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(296), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(299), - [aux_sym_interface_type_definition_token1] = ACTIONS(302), - [aux_sym_generic_formal_part_token1] = ACTIONS(305), - [aux_sym_global_mode_token1] = ACTIONS(308), - [aux_sym_pragma_g_token1] = ACTIONS(311), - [aux_sym_subtype_declaration_token1] = ACTIONS(314), + [aux_sym_iterated_element_association_token1] = ACTIONS(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(313), + [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), }, [15] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1780), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1731), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), + [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(315), + [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(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1842), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10811,64 +10884,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), }, - [16] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1843), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [17] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1542), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10886,214 +10959,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), }, - [17] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1930), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), - [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(259), - [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(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1530), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), - [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__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1543), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1664), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11111,64 +11034,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), }, - [20] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1707), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [19] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1529), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11186,63 +11109,63 @@ 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(1915), - [sym__declarative_item] = STATE(14), - [sym__basic_declarative_item] = STATE(14), - [sym__basic_declaration] = STATE(14), - [sym__package_declaration] = STATE(14), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(14), - [sym__proper_body] = STATE(14), - [sym_subprogram_body] = STATE(14), - [sym_package_body] = STATE(14), - [sym__type_declaration] = STATE(14), - [sym_full_type_declaration] = STATE(14), - [sym_private_type_declaration] = STATE(14), - [sym_private_extension_declaration] = STATE(14), - [sym_incomplete_type_declaration] = STATE(14), - [sym__aspect_clause] = STATE(14), - [sym_at_clause] = STATE(14), - [sym_attribute_definition_clause] = STATE(14), - [sym_body_stub] = STATE(14), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(14), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(14), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(14), - [sym_enumeration_representation_clause] = STATE(14), - [sym_exception_declaration] = STATE(14), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(14), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(14), - [sym_generic_package_declaration] = STATE(14), - [sym_generic_instantiation] = STATE(14), - [sym_null_procedure_declaration] = STATE(14), - [sym_number_declaration] = STATE(14), - [sym_object_declaration] = STATE(14), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(14), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(14), - [sym__renaming_declaration] = STATE(14), - [sym_object_renaming_declaration] = STATE(14), - [sym_exception_renaming_declaration] = STATE(14), - [sym_package_renaming_declaration] = STATE(14), - [sym_subprogram_renaming_declaration] = STATE(14), - [sym_generic_renaming_declaration] = STATE(14), - [sym_subprogram_declaration] = STATE(14), - [sym_expression_function_declaration] = STATE(14), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(14), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(14), + [20] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(12), + [sym__basic_declarative_item] = STATE(12), + [sym__basic_declaration] = STATE(12), + [sym__package_declaration] = STATE(12), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(12), + [sym__proper_body] = STATE(12), + [sym_subprogram_body] = STATE(12), + [sym_package_body] = STATE(12), + [sym__type_declaration] = STATE(12), + [sym_full_type_declaration] = STATE(12), + [sym_private_type_declaration] = STATE(12), + [sym_private_extension_declaration] = STATE(12), + [sym_incomplete_type_declaration] = STATE(12), + [sym__aspect_clause] = STATE(12), + [sym_at_clause] = STATE(12), + [sym_attribute_definition_clause] = STATE(12), + [sym_body_stub] = STATE(12), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(12), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(12), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(12), + [sym_enumeration_representation_clause] = STATE(12), + [sym_exception_declaration] = STATE(12), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(12), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(12), + [sym_generic_package_declaration] = STATE(12), + [sym_generic_instantiation] = STATE(12), + [sym_null_procedure_declaration] = STATE(12), + [sym_number_declaration] = STATE(12), + [sym_object_declaration] = STATE(12), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(12), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(12), + [sym__renaming_declaration] = STATE(12), + [sym_object_renaming_declaration] = STATE(12), + [sym_exception_renaming_declaration] = STATE(12), + [sym_package_renaming_declaration] = STATE(12), + [sym_subprogram_renaming_declaration] = STATE(12), + [sym_generic_renaming_declaration] = STATE(12), + [sym_subprogram_declaration] = STATE(12), + [sym_expression_function_declaration] = STATE(12), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(12), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(12), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11261,64 +11184,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), }, - [22] = { - [sym__defining_identifier_list] = STATE(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1734), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [21] = { + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1849), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11336,64 +11259,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(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1705), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), + [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(1915), - [sym__declarative_item] = STATE(21), - [sym__basic_declarative_item] = STATE(21), - [sym__basic_declaration] = STATE(21), - [sym__package_declaration] = STATE(21), - [sym_package_specification] = STATE(1909), - [sym_use_clause] = STATE(21), - [sym__proper_body] = STATE(21), - [sym_subprogram_body] = STATE(21), - [sym_package_body] = STATE(21), - [sym__type_declaration] = STATE(21), - [sym_full_type_declaration] = STATE(21), - [sym_private_type_declaration] = STATE(21), - [sym_private_extension_declaration] = STATE(21), - [sym_incomplete_type_declaration] = STATE(21), - [sym__aspect_clause] = STATE(21), - [sym_at_clause] = STATE(21), - [sym_attribute_definition_clause] = STATE(21), - [sym_body_stub] = STATE(21), - [sym_subprogram_body_stub] = STATE(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(21), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(21), - [sym_protected_body_stub] = STATE(312), - [sym__declarative_item_pragma] = STATE(21), - [sym_non_empty_declarative_part] = STATE(1667), - [sym_enumeration_representation_clause] = STATE(21), - [sym_exception_declaration] = STATE(21), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(21), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(21), - [sym_generic_package_declaration] = STATE(21), - [sym_generic_instantiation] = STATE(21), - [sym_null_procedure_declaration] = STATE(21), - [sym_number_declaration] = STATE(21), - [sym_object_declaration] = STATE(21), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_pragma_g] = STATE(21), - [sym_procedure_specification] = STATE(1089), - [sym_record_representation_clause] = STATE(21), - [sym__renaming_declaration] = STATE(21), - [sym_object_renaming_declaration] = STATE(21), - [sym_exception_renaming_declaration] = STATE(21), - [sym_package_renaming_declaration] = STATE(21), - [sym_subprogram_renaming_declaration] = STATE(21), - [sym_generic_renaming_declaration] = STATE(21), - [sym_subprogram_declaration] = STATE(21), - [sym_expression_function_declaration] = STATE(21), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(21), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(21), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(20), + [sym__basic_declarative_item] = STATE(20), + [sym__basic_declaration] = STATE(20), + [sym__package_declaration] = STATE(20), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(20), + [sym__proper_body] = STATE(20), + [sym_subprogram_body] = STATE(20), + [sym_package_body] = STATE(20), + [sym__type_declaration] = STATE(20), + [sym_full_type_declaration] = STATE(20), + [sym_private_type_declaration] = STATE(20), + [sym_private_extension_declaration] = STATE(20), + [sym_incomplete_type_declaration] = STATE(20), + [sym__aspect_clause] = STATE(20), + [sym_at_clause] = STATE(20), + [sym_attribute_definition_clause] = STATE(20), + [sym_body_stub] = STATE(20), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(20), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(20), + [sym_protected_body_stub] = STATE(422), + [sym__declarative_item_pragma] = STATE(20), + [sym_non_empty_declarative_part] = STATE(1894), + [sym_enumeration_representation_clause] = STATE(20), + [sym_exception_declaration] = STATE(20), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(20), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(20), + [sym_generic_package_declaration] = STATE(20), + [sym_generic_instantiation] = STATE(20), + [sym_null_procedure_declaration] = STATE(20), + [sym_number_declaration] = STATE(20), + [sym_object_declaration] = STATE(20), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_pragma_g] = STATE(20), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(20), + [sym__renaming_declaration] = STATE(20), + [sym_object_renaming_declaration] = STATE(20), + [sym_exception_renaming_declaration] = STATE(20), + [sym_package_renaming_declaration] = STATE(20), + [sym_subprogram_renaming_declaration] = STATE(20), + [sym_generic_renaming_declaration] = STATE(20), + [sym_subprogram_declaration] = STATE(20), + [sym_expression_function_declaration] = STATE(20), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(20), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(20), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11412,43 +11410,43 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(329), @@ -11485,43 +11483,43 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(26), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(26), [sym_identifier] = ACTIONS(397), @@ -11558,43 +11556,43 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(514), - [sym_null_statement] = STATE(168), - [sym_pragma_g] = STATE(168), - [sym__simple_statement] = STATE(168), - [sym__compound_statement] = STATE(168), - [sym__select_statement] = STATE(168), - [sym_asynchronous_select] = STATE(168), - [sym_conditional_entry_call] = STATE(168), - [sym_timed_entry_call] = STATE(168), - [sym_selective_accept] = STATE(168), - [sym_abort_statement] = STATE(168), - [sym_requeue_statement] = STATE(168), - [sym_accept_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_block_statement] = STATE(168), - [sym_if_statement] = STATE(168), - [sym_exit_statement] = STATE(168), - [sym_goto_statement] = STATE(168), - [sym__delay_statement] = STATE(168), - [sym_delay_until_statement] = STATE(168), - [sym_delay_relative_statement] = STATE(168), - [sym_simple_return_statement] = STATE(168), - [sym_extended_return_statement] = STATE(168), - [sym_procedure_call_statement] = STATE(168), - [sym_raise_statement] = STATE(168), - [sym_loop_statement] = STATE(168), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(168), - [aux_sym__sequence_of_statements_repeat2] = STATE(514), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(512), + [sym_null_statement] = STATE(173), + [sym_pragma_g] = STATE(173), + [sym__simple_statement] = STATE(173), + [sym__compound_statement] = STATE(173), + [sym__select_statement] = STATE(173), + [sym_asynchronous_select] = STATE(173), + [sym_conditional_entry_call] = STATE(173), + [sym_timed_entry_call] = STATE(173), + [sym_selective_accept] = STATE(173), + [sym_abort_statement] = STATE(173), + [sym_requeue_statement] = STATE(173), + [sym_accept_statement] = STATE(173), + [sym_case_statement] = STATE(173), + [sym_block_statement] = STATE(173), + [sym_if_statement] = STATE(173), + [sym_exit_statement] = STATE(173), + [sym_goto_statement] = STATE(173), + [sym__delay_statement] = STATE(173), + [sym_delay_until_statement] = STATE(173), + [sym_delay_relative_statement] = STATE(173), + [sym_simple_return_statement] = STATE(173), + [sym_extended_return_statement] = STATE(173), + [sym_procedure_call_statement] = STATE(173), + [sym_raise_statement] = STATE(173), + [sym_loop_statement] = STATE(173), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(173), + [aux_sym__sequence_of_statements_repeat2] = STATE(512), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11629,44 +11627,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [27] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1085), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1087), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -11700,114 +11698,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [28] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1282), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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(405), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(405), - [aux_sym_expression_token4] = ACTIONS(405), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [29] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1311), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1309), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -11839,60 +11767,130 @@ 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), }, + [29] = { + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1281), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(405), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(405), + [aux_sym_expression_token4] = ACTIONS(405), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, [30] = { - [sym__defining_identifier_list] = STATE(1915), - [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(1909), - [sym_use_clause] = 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(312), - [sym_package_body_stub] = STATE(312), - [sym_task_body] = STATE(466), - [sym_task_body_stub] = STATE(312), - [sym_protected_type_declaration] = STATE(323), - [sym_single_protected_declaration] = STATE(327), - [sym_protected_body] = STATE(466), - [sym_protected_body_stub] = STATE(312), - [sym_enumeration_representation_clause] = STATE(466), - [sym_exception_declaration] = STATE(466), - [sym_function_specification] = STATE(1075), - [sym__generic_declaration] = STATE(466), - [sym_generic_formal_part] = STATE(910), - [sym_generic_subprogram_declaration] = STATE(466), - [sym_generic_package_declaration] = STATE(466), - [sym_generic_instantiation] = STATE(466), - [sym_null_procedure_declaration] = STATE(466), - [sym_number_declaration] = STATE(466), - [sym_object_declaration] = STATE(466), - [sym_single_task_declaration] = STATE(327), - [sym_task_type_declaration] = STATE(323), - [sym_overriding_indicator] = STATE(995), - [sym_procedure_specification] = STATE(1089), - [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_subprogram_declaration] = STATE(466), - [sym_expression_function_declaration] = STATE(466), - [sym__subprogram_specification] = STATE(978), - [sym_subtype_declaration] = STATE(466), + [sym__defining_identifier_list] = STATE(1914), + [sym__declarative_item] = STATE(474), + [sym__basic_declarative_item] = STATE(474), + [sym__basic_declaration] = STATE(474), + [sym__package_declaration] = STATE(474), + [sym_package_specification] = STATE(1908), + [sym_use_clause] = STATE(474), + [sym__proper_body] = STATE(474), + [sym_subprogram_body] = STATE(474), + [sym_package_body] = STATE(474), + [sym__type_declaration] = STATE(474), + [sym_full_type_declaration] = STATE(474), + [sym_private_type_declaration] = STATE(474), + [sym_private_extension_declaration] = STATE(474), + [sym_incomplete_type_declaration] = STATE(474), + [sym__aspect_clause] = STATE(474), + [sym_at_clause] = STATE(474), + [sym_attribute_definition_clause] = STATE(474), + [sym_body_stub] = STATE(474), + [sym_subprogram_body_stub] = STATE(422), + [sym_package_body_stub] = STATE(422), + [sym_task_body] = STATE(474), + [sym_task_body_stub] = STATE(422), + [sym_protected_type_declaration] = STATE(425), + [sym_single_protected_declaration] = STATE(426), + [sym_protected_body] = STATE(474), + [sym_protected_body_stub] = STATE(422), + [sym_enumeration_representation_clause] = STATE(474), + [sym_exception_declaration] = STATE(474), + [sym_function_specification] = STATE(1053), + [sym__generic_declaration] = STATE(474), + [sym_generic_formal_part] = STATE(892), + [sym_generic_subprogram_declaration] = STATE(474), + [sym_generic_package_declaration] = STATE(474), + [sym_generic_instantiation] = STATE(474), + [sym_null_procedure_declaration] = STATE(474), + [sym_number_declaration] = STATE(474), + [sym_object_declaration] = STATE(474), + [sym_single_task_declaration] = STATE(426), + [sym_task_type_declaration] = STATE(425), + [sym_overriding_indicator] = STATE(998), + [sym_procedure_specification] = STATE(1122), + [sym_record_representation_clause] = STATE(474), + [sym__renaming_declaration] = STATE(474), + [sym_object_renaming_declaration] = STATE(474), + [sym_exception_renaming_declaration] = STATE(474), + [sym_package_renaming_declaration] = STATE(474), + [sym_subprogram_renaming_declaration] = STATE(474), + [sym_generic_renaming_declaration] = STATE(474), + [sym_subprogram_declaration] = STATE(474), + [sym_expression_function_declaration] = STATE(474), + [sym__subprogram_specification] = STATE(975), + [sym_subtype_declaration] = STATE(474), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11910,114 +11908,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [31] = { - [sym_unary_adding_operator] = STATE(502), - [sym__name] = STATE(495), - [sym_selected_component] = STATE(495), - [sym__attribute_reference] = STATE(495), - [sym__reduction_attribute_reference] = STATE(495), - [sym_value_sequence] = STATE(1910), - [sym_iterated_element_association] = STATE(1238), - [sym_function_call] = STATE(495), - [sym_qualified_expression] = STATE(495), - [sym__subtype_indication] = STATE(1405), - [sym_range_g] = STATE(1381), - [sym_expression] = STATE(957), - [sym__relation] = STATE(559), - [sym_relation_membership] = STATE(559), - [sym_raise_expression] = STATE(559), - [sym__simple_expression] = STATE(590), - [sym_term] = STATE(507), - [sym__factor] = STATE(485), - [sym_factor_power] = STATE(485), - [sym_factor_abs] = STATE(485), - [sym_factor_not] = STATE(485), - [sym__parenthesized_expression] = STATE(492), - [sym__primary] = STATE(492), - [sym_primary_null] = STATE(492), - [sym_allocator] = STATE(492), - [sym__conditional_expression] = STATE(1673), - [sym_quantified_expression] = STATE(1673), - [sym_declare_expression] = STATE(1673), - [sym_case_expression] = STATE(1673), - [sym_component_choice_list] = STATE(1671), - [sym__aggregate] = STATE(492), - [sym__delta_aggregate] = STATE(492), - [sym_extension_aggregate] = STATE(492), - [sym_record_delta_aggregate] = STATE(492), - [sym_array_delta_aggregate] = STATE(492), - [sym_record_aggregate] = STATE(492), - [sym_record_component_association_list] = STATE(1666), - [sym__named_record_component_association] = STATE(1253), - [sym_null_exclusion] = STATE(757), - [sym__array_aggregate] = STATE(492), - [sym_positional_array_aggregate] = STATE(492), - [sym_null_array_aggregate] = STATE(492), - [sym_named_array_aggregate] = STATE(492), - [sym__array_component_association_list] = STATE(1662), - [sym_array_component_association] = STATE(1112), - [sym_discrete_choice_list] = STATE(1656), - [sym_discrete_choice] = STATE(1260), - [sym_if_expression] = STATE(1673), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(219), - [sym_character_literal] = ACTIONS(219), - [sym_numeric_literal] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(225), - [sym_target_name] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(229), - [aux_sym_iterated_element_association_token1] = ACTIONS(233), - [aux_sym_relation_membership_token1] = ACTIONS(235), - [aux_sym_raise_expression_token1] = ACTIONS(237), - [aux_sym_factor_abs_token1] = ACTIONS(239), - [aux_sym_primary_null_token1] = ACTIONS(241), - [aux_sym_allocator_token1] = ACTIONS(243), - [aux_sym_declare_expression_token1] = ACTIONS(245), - [aux_sym_case_expression_token1] = ACTIONS(247), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(249), - [aux_sym_if_expression_token1] = ACTIONS(255), - }, - [32] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1324), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1327), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12049,46 +11977,116 @@ 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), }, + [32] = { + [sym_unary_adding_operator] = STATE(500), + [sym__name] = STATE(493), + [sym_selected_component] = STATE(493), + [sym__attribute_reference] = STATE(493), + [sym__reduction_attribute_reference] = STATE(493), + [sym_value_sequence] = STATE(1909), + [sym_iterated_element_association] = STATE(1236), + [sym_function_call] = STATE(493), + [sym_qualified_expression] = STATE(493), + [sym__subtype_indication] = STATE(1401), + [sym_range_g] = STATE(1380), + [sym_expression] = STATE(933), + [sym__relation] = STATE(557), + [sym_relation_membership] = STATE(557), + [sym_raise_expression] = STATE(557), + [sym__simple_expression] = STATE(589), + [sym_term] = STATE(504), + [sym__factor] = STATE(482), + [sym_factor_power] = STATE(482), + [sym_factor_abs] = STATE(482), + [sym_factor_not] = STATE(482), + [sym__parenthesized_expression] = STATE(491), + [sym__primary] = STATE(491), + [sym_primary_null] = STATE(491), + [sym_allocator] = STATE(491), + [sym__conditional_expression] = STATE(1672), + [sym_quantified_expression] = STATE(1672), + [sym_declare_expression] = STATE(1672), + [sym_case_expression] = STATE(1672), + [sym_component_choice_list] = STATE(1670), + [sym__aggregate] = STATE(491), + [sym__delta_aggregate] = STATE(491), + [sym_extension_aggregate] = STATE(491), + [sym_record_delta_aggregate] = STATE(491), + [sym_array_delta_aggregate] = STATE(491), + [sym_record_aggregate] = STATE(491), + [sym_record_component_association_list] = STATE(1665), + [sym__named_record_component_association] = STATE(1249), + [sym_null_exclusion] = STATE(756), + [sym__array_aggregate] = STATE(491), + [sym_positional_array_aggregate] = STATE(491), + [sym_null_array_aggregate] = STATE(491), + [sym_named_array_aggregate] = STATE(491), + [sym__array_component_association_list] = STATE(1661), + [sym_array_component_association] = STATE(1092), + [sym_discrete_choice_list] = STATE(1655), + [sym_discrete_choice] = STATE(1258), + [sym_if_expression] = STATE(1672), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(223), + [sym_character_literal] = ACTIONS(223), + [sym_numeric_literal] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(229), + [sym_target_name] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_LBRACK] = ACTIONS(233), + [aux_sym_iterated_element_association_token1] = ACTIONS(237), + [aux_sym_relation_membership_token1] = ACTIONS(239), + [aux_sym_raise_expression_token1] = ACTIONS(241), + [aux_sym_factor_abs_token1] = ACTIONS(243), + [aux_sym_primary_null_token1] = ACTIONS(245), + [aux_sym_allocator_token1] = ACTIONS(247), + [aux_sym_declare_expression_token1] = ACTIONS(249), + [aux_sym_case_expression_token1] = ACTIONS(251), + [aux_sym_positional_array_aggregate_token1] = ACTIONS(253), + [aux_sym_if_expression_token1] = ACTIONS(259), + }, [33] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1607), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1716), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12118,45 +12116,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1687), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1864), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12186,45 +12184,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1660), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1581), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12254,45 +12252,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1717), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1666), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12322,45 +12320,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1851), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1587), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12390,45 +12388,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1503), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1924), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12458,45 +12456,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1777), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1776), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12526,45 +12524,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1869), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1687), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12594,45 +12592,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1925), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1553), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12662,45 +12660,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1713), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1606), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12730,45 +12728,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1623), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1686), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12798,45 +12796,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1546), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1518), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12866,45 +12864,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1554), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1823), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -12934,519 +12932,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [46] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1519), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1582), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1688), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1892), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1913), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1841), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1588), - [sym_loop_label] = STATE(947), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(72), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(72), [sym_identifier] = ACTIONS(397), @@ -13477,46 +12999,522 @@ 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), }, - [54] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1668), - [sym_loop_label] = STATE(947), + [47] = { + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1710), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1850), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1539), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1657), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1868), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1840), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1502), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [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), + }, + [54] = { + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1622), + [sym_loop_label] = STATE(946), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -13546,45 +13544,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1865), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1891), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -13614,45 +13612,45 @@ 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_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_handled_sequence_of_statements] = STATE(1824), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_handled_sequence_of_statements] = STATE(1912), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1451), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1341), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -13682,44 +13680,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [57] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1883), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1207), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -13749,44 +13747,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [58] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1619), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1698), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -13816,44 +13814,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [59] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1541), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1625), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -13883,45 +13881,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [60] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1292), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(53), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(53), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1618), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), @@ -13950,45 +13948,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [61] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1183), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(53), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(53), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1607), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), @@ -14017,44 +14015,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [62] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(972), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1540), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14084,44 +14082,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [63] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1608), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1638), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14151,45 +14149,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [64] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1545), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [sym_null_statement] = STATE(46), + [sym_pragma_g] = STATE(46), + [sym__sequence_of_statements] = STATE(1186), + [sym__simple_statement] = STATE(46), + [sym__statement] = STATE(46), + [sym__compound_statement] = STATE(46), + [sym__select_statement] = STATE(46), + [sym_asynchronous_select] = STATE(46), + [sym_conditional_entry_call] = STATE(46), + [sym_timed_entry_call] = STATE(46), + [sym_selective_accept] = STATE(46), + [sym_abort_statement] = STATE(46), + [sym_requeue_statement] = STATE(46), + [sym_accept_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_block_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_exit_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__delay_statement] = STATE(46), + [sym_delay_until_statement] = STATE(46), + [sym_delay_relative_statement] = STATE(46), + [sym_simple_return_statement] = STATE(46), + [sym_extended_return_statement] = STATE(46), + [sym_procedure_call_statement] = STATE(46), + [sym_raise_statement] = STATE(46), + [sym_loop_statement] = STATE(46), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(46), + [aux_sym__sequence_of_statements_repeat1] = STATE(46), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), @@ -14218,44 +14216,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [65] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1627), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1471), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14285,44 +14283,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [66] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1880), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1011), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14352,45 +14350,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [67] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1700), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [sym_null_statement] = STATE(46), + [sym_pragma_g] = STATE(46), + [sym__sequence_of_statements] = STATE(1193), + [sym__simple_statement] = STATE(46), + [sym__statement] = STATE(46), + [sym__compound_statement] = STATE(46), + [sym__select_statement] = STATE(46), + [sym_asynchronous_select] = STATE(46), + [sym_conditional_entry_call] = STATE(46), + [sym_timed_entry_call] = STATE(46), + [sym_selective_accept] = STATE(46), + [sym_abort_statement] = STATE(46), + [sym_requeue_statement] = STATE(46), + [sym_accept_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_block_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_exit_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__delay_statement] = STATE(46), + [sym_delay_until_statement] = STATE(46), + [sym_delay_relative_statement] = STATE(46), + [sym_simple_return_statement] = STATE(46), + [sym_extended_return_statement] = STATE(46), + [sym_procedure_call_statement] = STATE(46), + [sym_raise_statement] = STATE(46), + [sym_loop_statement] = STATE(46), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(46), + [aux_sym__sequence_of_statements_repeat1] = STATE(46), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), [sym_comment] = ACTIONS(3), @@ -14419,44 +14417,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [68] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1209), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1879), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14486,44 +14484,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [69] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1792), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1882), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14553,44 +14551,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [70] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1472), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1791), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14620,44 +14618,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [71] = { - [sym__name] = STATE(918), - [sym_selected_component] = STATE(918), - [sym__attribute_reference] = STATE(918), - [sym__reduction_attribute_reference] = STATE(918), - [sym_value_sequence] = STATE(1910), - [sym_function_call] = STATE(918), - [sym_qualified_expression] = STATE(918), - [sym_loop_label] = STATE(947), + [sym__name] = STATE(919), + [sym_selected_component] = STATE(919), + [sym__attribute_reference] = STATE(919), + [sym__reduction_attribute_reference] = STATE(919), + [sym_value_sequence] = STATE(1909), + [sym_function_call] = STATE(919), + [sym_qualified_expression] = STATE(919), + [sym_loop_label] = STATE(946), [sym_label] = STATE(75), - [sym_null_statement] = STATE(167), - [sym_pragma_g] = STATE(167), - [sym__sequence_of_statements] = STATE(1640), - [sym__simple_statement] = STATE(167), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(167), - [sym__select_statement] = STATE(167), - [sym_asynchronous_select] = STATE(167), - [sym_conditional_entry_call] = STATE(167), - [sym_timed_entry_call] = STATE(167), - [sym_selective_accept] = STATE(167), - [sym_abort_statement] = STATE(167), - [sym_requeue_statement] = STATE(167), - [sym_accept_statement] = STATE(167), - [sym_case_statement] = STATE(167), - [sym_block_statement] = STATE(167), - [sym_if_statement] = STATE(167), - [sym_exit_statement] = STATE(167), - [sym_goto_statement] = STATE(167), - [sym__delay_statement] = STATE(167), - [sym_delay_until_statement] = STATE(167), - [sym_delay_relative_statement] = STATE(167), - [sym_simple_return_statement] = STATE(167), - [sym_extended_return_statement] = STATE(167), - [sym_procedure_call_statement] = STATE(167), - [sym_raise_statement] = STATE(167), - [sym_loop_statement] = STATE(167), - [sym_iteration_scheme] = STATE(1901), - [sym_assignment_statement] = STATE(167), + [sym_null_statement] = STATE(25), + [sym_pragma_g] = STATE(25), + [sym__sequence_of_statements] = STATE(1544), + [sym__simple_statement] = STATE(25), + [sym__statement] = STATE(25), + [sym__compound_statement] = STATE(25), + [sym__select_statement] = STATE(25), + [sym_asynchronous_select] = STATE(25), + [sym_conditional_entry_call] = STATE(25), + [sym_timed_entry_call] = STATE(25), + [sym_selective_accept] = STATE(25), + [sym_abort_statement] = STATE(25), + [sym_requeue_statement] = STATE(25), + [sym_accept_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_block_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_exit_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__delay_statement] = STATE(25), + [sym_delay_until_statement] = STATE(25), + [sym_delay_relative_statement] = STATE(25), + [sym_simple_return_statement] = STATE(25), + [sym_extended_return_statement] = STATE(25), + [sym_procedure_call_statement] = STATE(25), + [sym_raise_statement] = STATE(25), + [sym_loop_statement] = STATE(25), + [sym_iteration_scheme] = STATE(1900), + [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(397), @@ -14732,13 +14730,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(947), 1, + STATE(946), 1, sym_loop_label, - STATE(1901), 1, + STATE(1900), 1, sym_iteration_scheme, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(514), 2, + STATE(512), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, @@ -14749,14 +14747,14 @@ 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), 6, + STATE(919), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(168), 26, + STATE(173), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14786,29 +14784,29 @@ static const uint16_t ts_small_parse_table[] = { [123] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(245), 1, - aux_sym_declare_expression_token1, + aux_sym_factor_abs_token1, ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(249), 1, + aux_sym_declare_expression_token1, + ACTIONS(251), 1, aux_sym_case_expression_token1, - ACTIONS(255), 1, + ACTIONS(259), 1, aux_sym_if_expression_token1, ACTIONS(415), 1, sym_identifier, @@ -14818,54 +14816,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(421), 1, anon_sym_LT_GT, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1287), 1, + STATE(1284), 1, sym_parameter_association, - STATE(1366), 1, + STATE(1365), 1, sym_expression, - STATE(1404), 1, + STATE(1381), 1, sym__subtype_indication, - STATE(1560), 1, + STATE(1559), 1, sym_component_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1242), 2, + STATE(1257), 2, sym_range_g, sym__discrete_range, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1561), 5, + STATE(1560), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -14917,27 +14915,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(81), 34, + STATE(76), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15017,27 +15015,27 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(399), 1, aux_sym_iterated_element_association_token1, - STATE(947), 1, + STATE(946), 1, sym_loop_label, - STATE(1901), 1, + STATE(1900), 1, sym_iteration_scheme, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(514), 2, + STATE(512), 2, sym_label, aux_sym__sequence_of_statements_repeat2, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 6, + STATE(919), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(168), 26, + STATE(173), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -15089,213 +15087,34 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(423), 1, - aux_sym_compilation_unit_token1, ACTIONS(425), 1, aux_sym_package_specification_token1, - ACTIONS(427), 1, - aux_sym_package_specification_token3, ACTIONS(431), 1, aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - STATE(910), 1, - sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_overriding_indicator, - STATE(1075), 1, - sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1909), 1, - sym_package_specification, - STATE(1915), 1, - sym__defining_identifier_list, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(327), 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, - [611] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(435), 1, - sym_identifier, - ACTIONS(438), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(446), 1, - aux_sym_package_specification_token1, - ACTIONS(449), 1, - aux_sym_use_clause_token2, - ACTIONS(452), 1, - aux_sym_relation_membership_token1, - ACTIONS(455), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(458), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(461), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(464), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(467), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(470), 1, - aux_sym_global_mode_token1, - ACTIONS(473), 1, - aux_sym_pragma_g_token1, - ACTIONS(476), 1, - aux_sym_subtype_declaration_token1, - STATE(910), 1, - sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_overriding_indicator, - STATE(1075), 1, - sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1909), 1, - sym_package_specification, - STATE(1915), 1, - sym__defining_identifier_list, - ACTIONS(444), 2, aux_sym_compilation_unit_token1, + ACTIONS(437), 1, aux_sym_package_specification_token3, - STATE(323), 2, + STATE(892), 1, + sym_generic_formal_part, + STATE(1002), 1, + sym_overriding_indicator, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, + sym_function_specification, + STATE(1122), 1, + sym_procedure_specification, + STATE(1908), 1, + sym_package_specification, + STATE(1914), 1, + sym__defining_identifier_list, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 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, - [726] = 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(425), 1, - aux_sym_package_specification_token1, - ACTIONS(431), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(433), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(479), 1, - aux_sym_compilation_unit_token1, - ACTIONS(481), 1, - aux_sym_package_specification_token3, - STATE(910), 1, - sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, - sym_overriding_indicator, - STATE(1075), 1, - sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1909), 1, - sym_package_specification, - STATE(1915), 1, - sym__defining_identifier_list, - STATE(323), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(80), 34, @@ -15333,103 +15152,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [843] = 33, + [611] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(245), 1, - aux_sym_declare_expression_token1, - ACTIONS(247), 1, - aux_sym_case_expression_token1, - ACTIONS(255), 1, - aux_sym_if_expression_token1, - ACTIONS(417), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(421), 1, - anon_sym_LT_GT, - ACTIONS(483), 1, - sym_identifier, - ACTIONS(487), 1, + 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, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1269), 1, - sym_parameter_specification, - STATE(1287), 1, - sym_parameter_association, - STATE(1366), 1, - sym_expression, - STATE(1548), 1, + 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(423), 1, + aux_sym_compilation_unit_token1, + ACTIONS(425), 1, + aux_sym_package_specification_token1, + ACTIONS(427), 1, + aux_sym_package_specification_token3, + ACTIONS(431), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(433), 1, + aux_sym_interface_type_definition_token1, + STATE(892), 1, + sym_generic_formal_part, + STATE(1002), 1, + sym_overriding_indicator, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, + sym_function_specification, + STATE(1122), 1, + sym_procedure_specification, + STATE(1908), 1, + sym_package_specification, + STATE(1914), 1, sym__defining_identifier_list, - STATE(1549), 1, - sym__parameter_specification_list, - STATE(1560), 1, - sym_component_choice_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(1561), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [972] = 27, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 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, + [728] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15460,31 +15273,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(489), 1, + ACTIONS(435), 1, aux_sym_compilation_unit_token1, - ACTIONS(491), 1, + ACTIONS(437), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(77), 34, + 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, + [845] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(249), 1, + aux_sym_declare_expression_token1, + ACTIONS(251), 1, + aux_sym_case_expression_token1, + ACTIONS(259), 1, + aux_sym_if_expression_token1, + ACTIONS(417), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(421), 1, + anon_sym_LT_GT, + ACTIONS(439), 1, + sym_identifier, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1254), 1, + sym_parameter_specification, + STATE(1284), 1, + sym_parameter_association, + STATE(1365), 1, + sym_expression, + STATE(1545), 1, + sym__defining_identifier_list, + STATE(1547), 1, + sym__parameter_specification_list, + STATE(1559), 1, + sym_component_choice_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1560), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [974] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 1, + sym_identifier, + ACTIONS(448), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(451), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(456), 1, + aux_sym_package_specification_token1, + ACTIONS(459), 1, + aux_sym_use_clause_token2, + ACTIONS(462), 1, + aux_sym_relation_membership_token1, + ACTIONS(465), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(468), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(471), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(474), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(477), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(480), 1, + aux_sym_global_mode_token1, + ACTIONS(483), 1, + aux_sym_pragma_g_token1, + ACTIONS(486), 1, + aux_sym_subtype_declaration_token1, + STATE(892), 1, + sym_generic_formal_part, + STATE(1002), 1, + sym_overriding_indicator, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, + sym_function_specification, + STATE(1122), 1, + sym_procedure_specification, + STATE(1908), 1, + sym_package_specification, + STATE(1914), 1, + sym__defining_identifier_list, + ACTIONS(454), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(425), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15550,31 +15548,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(479), 1, + ACTIONS(489), 1, aux_sym_compilation_unit_token1, - ACTIONS(481), 1, + ACTIONS(491), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(77), 34, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15640,29 +15638,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(491), 1, + ACTIONS(493), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(77), 34, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15728,29 +15726,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(493), 1, + ACTIONS(437), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(77), 34, + STATE(84), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15818,27 +15816,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(491), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(86), 34, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15904,29 +15902,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(495), 1, + ACTIONS(491), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(83), 34, + STATE(87), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -15994,27 +15992,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(495), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(77), 34, + STATE(82), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16080,29 +16078,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(481), 1, + ACTIONS(495), 1, aux_sym_package_specification_token3, - STATE(910), 1, + STATE(892), 1, sym_generic_formal_part, - STATE(1043), 1, - sym__subprogram_specification, - STATE(1044), 1, + STATE(1002), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, + STATE(1122), 1, sym_procedure_specification, - STATE(1909), 1, + STATE(1908), 1, sym_package_specification, - STATE(1915), 1, + STATE(1914), 1, sym__defining_identifier_list, - STATE(323), 2, + STATE(425), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(327), 2, + STATE(426), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(82), 34, + STATE(80), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16140,85 +16138,85 @@ static const uint16_t ts_small_parse_table[] = { [1890] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - sym_identifier, ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, + sym_identifier, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, ACTIONS(241), 1, - aux_sym_primary_null_token1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_primary_null_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(956), 1, + STATE(941), 1, sym_expression, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1238), 1, + STATE(1236), 1, sym_iterated_element_association, - STATE(1253), 1, + STATE(1249), 1, sym__named_record_component_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1381), 1, + STATE(1380), 1, sym_range_g, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1662), 1, + STATE(1661), 1, sym__array_component_association_list, - STATE(1666), 1, + STATE(1665), 1, sym_record_component_association_list, - STATE(1671), 1, + STATE(1670), 1, sym_component_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16236,85 +16234,85 @@ static const uint16_t ts_small_parse_table[] = { [2021] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - sym_identifier, ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, + sym_identifier, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, ACTIONS(241), 1, - aux_sym_primary_null_token1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_primary_null_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1220), 1, + STATE(1219), 1, sym_expression, - STATE(1238), 1, + STATE(1236), 1, sym_iterated_element_association, - STATE(1253), 1, + STATE(1249), 1, sym__named_record_component_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1381), 1, + STATE(1380), 1, sym_range_g, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1671), 1, + STATE(1670), 1, sym_component_choice_list, - STATE(1705), 1, + STATE(1703), 1, sym__array_component_association_list, - STATE(1706), 1, + STATE(1704), 1, sym_record_component_association_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16329,118 +16327,28 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2152] = 30, + [2152] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(245), 1, - aux_sym_declare_expression_token1, + aux_sym_factor_abs_token1, ACTIONS(247), 1, - aux_sym_case_expression_token1, - ACTIONS(255), 1, - aux_sym_if_expression_token1, - ACTIONS(415), 1, - sym_identifier, - ACTIONS(417), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(421), 1, - anon_sym_LT_GT, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1287), 1, - sym_parameter_association, - STATE(1366), 1, - sym_expression, - STATE(1560), 1, - sym_component_choice_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(1561), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [2272] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -16452,53 +16360,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_value_sequence_token1, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(955), 1, + STATE(945), 1, sym_expression, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1381), 1, + STATE(1380), 1, sym_range_g, - STATE(1389), 1, + STATE(1382), 1, sym_iterated_element_association, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1644), 1, + STATE(1643), 1, sym__array_component_association_list, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2280] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(249), 1, + aux_sym_declare_expression_token1, + ACTIONS(251), 1, + aux_sym_case_expression_token1, + ACTIONS(259), 1, + aux_sym_if_expression_token1, + ACTIONS(415), 1, + sym_identifier, + ACTIONS(417), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(421), 1, + anon_sym_LT_GT, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1284), 1, + sym_parameter_association, + STATE(1365), 1, + sym_expression, + STATE(1559), 1, + sym_component_choice_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1560), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16516,25 +16514,25 @@ static const uint16_t ts_small_parse_table[] = { [2400] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -16544,53 +16542,53 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(955), 1, + STATE(1006), 1, sym_expression, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1238), 1, + STATE(1236), 1, sym_iterated_element_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1381), 1, + STATE(1380), 1, sym_range_g, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1644), 1, + STATE(1643), 1, sym__array_component_association_list, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16608,25 +16606,25 @@ static const uint16_t ts_small_parse_table[] = { [2525] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -16636,53 +16634,53 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1004), 1, + STATE(945), 1, sym_expression, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1238), 1, + STATE(1236), 1, sym_iterated_element_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1381), 1, + STATE(1380), 1, sym_range_g, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1644), 1, + STATE(1643), 1, sym__array_component_association_list, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16700,25 +16698,25 @@ static const uint16_t ts_small_parse_table[] = { [2650] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -16726,53 +16724,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1127), 1, + STATE(1114), 1, sym_expression, - STATE(1238), 1, + STATE(1236), 1, sym_iterated_element_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1381), 1, + STATE(1380), 1, sym_range_g, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1662), 1, + STATE(1661), 1, sym__array_component_association_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16790,25 +16788,25 @@ static const uint16_t ts_small_parse_table[] = { [2772] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -16816,52 +16814,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1112), 1, + STATE(1092), 1, sym_array_component_association, - STATE(1238), 1, + STATE(1236), 1, sym_iterated_element_association, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1698), 1, + STATE(1694), 1, sym__array_component_association_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1381), 2, + STATE(1380), 2, sym_range_g, sym_expression, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16879,25 +16877,25 @@ static const uint16_t ts_small_parse_table[] = { [2892] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -16905,50 +16903,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1238), 1, - sym_iterated_element_association, - STATE(1260), 1, - sym_discrete_choice, - STATE(1328), 1, + STATE(1202), 1, sym_array_component_association, - STATE(1405), 1, + STATE(1236), 1, + sym_iterated_element_association, + STATE(1258), 1, + sym_discrete_choice, + STATE(1401), 1, sym__subtype_indication, - STATE(1656), 1, + STATE(1655), 1, sym_discrete_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1381), 2, + STATE(1380), 2, sym_range_g, sym_expression, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16966,74 +16964,74 @@ static const uint16_t ts_small_parse_table[] = { [3009] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, - aux_sym_allocator_token1, + aux_sym_factor_abs_token1, ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(251), 1, aux_sym_case_expression_token1, - ACTIONS(255), 1, + ACTIONS(259), 1, aux_sym_if_expression_token1, ACTIONS(417), 1, aux_sym_iterated_element_association_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(505), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1319), 1, + STATE(1318), 1, sym_pragma_argument_association, - STATE(1345), 1, + STATE(1343), 1, sym_expression, - STATE(1604), 1, + STATE(1603), 1, sym__aspect_mark, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1603), 4, + STATE(1602), 4, sym__conditional_quantified_expression, sym_quantified_expression, sym_case_expression, sym_if_expression, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17051,71 +17049,71 @@ static const uint16_t ts_small_parse_table[] = { [3122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(231), 1, + ACTIONS(235), 1, aux_sym_chunk_specification_token1, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(251), 1, + ACTIONS(255), 1, aux_sym_global_mode_token1, - ACTIONS(253), 1, + ACTIONS(257), 1, aux_sym_non_empty_mode_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, ACTIONS(509), 1, anon_sym_LPAREN, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(817), 1, + STATE(816), 1, sym_non_empty_mode, - STATE(1037), 1, + STATE(1035), 1, sym_global_mode, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(1038), 3, + STATE(1036), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17133,70 +17131,70 @@ static const uint16_t ts_small_parse_table[] = { [3231] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1487), 1, - sym_discrete_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1381), 2, + STATE(1928), 1, + sym_discrete_choice_list, + STATE(1380), 2, sym_range_g, sym_expression, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17214,70 +17212,70 @@ static const uint16_t ts_small_parse_table[] = { [3339] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(1929), 1, + STATE(1486), 1, sym_discrete_choice_list, - STATE(1381), 2, + STATE(1909), 1, + sym_value_sequence, + STATE(1380), 2, sym_range_g, sym_expression, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17295,70 +17293,70 @@ static const uint16_t ts_small_parse_table[] = { [3447] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1260), 1, + STATE(1258), 1, sym_discrete_choice, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1753), 1, + STATE(1752), 1, sym_discrete_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1381), 2, + STATE(1380), 2, sym_range_g, sym_expression, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17376,68 +17374,68 @@ static const uint16_t ts_small_parse_table[] = { [3555] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(590), 1, + STATE(589), 1, sym__simple_expression, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1383), 1, - sym_discrete_choice, - STATE(1405), 1, + STATE(1401), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1429), 1, + sym_discrete_choice, + STATE(1909), 1, sym_value_sequence, - STATE(1381), 2, + STATE(1380), 2, sym_range_g, sym_expression, - ACTIONS(219), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(495), 6, + STATE(493), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17455,67 +17453,67 @@ static const uint16_t ts_small_parse_table[] = { [3660] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(241), 1, - aux_sym_primary_null_token1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(245), 1, + aux_sym_primary_null_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(415), 1, sym_identifier, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(511), 1, aux_sym_attribute_designator_token2, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1253), 1, + STATE(1249), 1, sym__named_record_component_association, - STATE(1671), 1, + STATE(1670), 1, sym_component_choice_list, - STATE(1898), 1, + STATE(1897), 1, sym_expression, - STATE(1899), 1, + STATE(1898), 1, sym_record_component_association_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17533,65 +17531,65 @@ static const uint16_t ts_small_parse_table[] = { [3764] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(415), 1, sym_identifier, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(513), 1, aux_sym_positional_array_aggregate_token1, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1109), 1, + STATE(1116), 1, sym_expression, - STATE(1276), 1, + STATE(1243), 1, sym__named_record_component_association, - STATE(1671), 1, + STATE(1670), 1, sym_component_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17609,21 +17607,21 @@ static const uint16_t ts_small_parse_table[] = { [3865] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(415), 1, sym_identifier, @@ -17631,43 +17629,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(421), 1, anon_sym_LT_GT, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1366), 1, - sym_expression, - STATE(1444), 1, + STATE(1345), 1, sym_parameter_association, - STATE(1560), 1, + STATE(1365), 1, + sym_expression, + STATE(1559), 1, sym_component_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17685,65 +17683,65 @@ static const uint16_t ts_small_parse_table[] = { [3966] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(515), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1269), 1, + STATE(1254), 1, sym_parameter_specification, - STATE(1548), 1, + STATE(1545), 1, sym__defining_identifier_list, - STATE(1549), 1, + STATE(1547), 1, sym__parameter_specification_list, - STATE(1651), 1, + STATE(1648), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17758,7 +17756,80 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4067] = 3, + [4067] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(415), 1, + sym_identifier, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1670), 1, + sym_component_choice_list, + STATE(1909), 1, + sym_value_sequence, + STATE(1466), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4163] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(519), 1, @@ -17811,7 +17882,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4123] = 3, + [4219] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(523), 1, @@ -17864,353 +17935,2398 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4179] = 25, + [4275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, + ACTIONS(527), 1, + sym_identifier, + ACTIONS(525), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_LBRACK, - ACTIONS(235), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_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, + [4331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(529), 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, + [4387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(535), 1, + sym_identifier, + ACTIONS(533), 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, + [4443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 1, + sym_identifier, + ACTIONS(537), 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, + [4499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 1, + sym_identifier, + ACTIONS(541), 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, + [4555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 1, + sym_identifier, + ACTIONS(545), 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, + [4611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + sym_identifier, + ACTIONS(549), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [4667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(555), 1, + sym_identifier, + ACTIONS(553), 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, + [4723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + sym_identifier, + ACTIONS(557), 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, + [4779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(563), 1, + sym_identifier, + ACTIONS(561), 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, + [4835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(567), 1, + sym_identifier, + ACTIONS(565), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [4891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(571), 1, + sym_identifier, + ACTIONS(569), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [4947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 1, + sym_identifier, + ACTIONS(573), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [5003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(579), 1, + sym_identifier, + ACTIONS(577), 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, + [5059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(583), 1, + sym_identifier, + ACTIONS(581), 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, + [5115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(587), 1, + sym_identifier, + ACTIONS(585), 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, + [5171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(589), 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, + [5227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 1, + sym_identifier, + ACTIONS(593), 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, + [5283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + sym_identifier, + ACTIONS(597), 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, + [5339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(601), 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, + [5395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(607), 1, + sym_identifier, + ACTIONS(605), 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, + [5451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(611), 1, + sym_identifier, + ACTIONS(609), 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, + [5507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(615), 1, + sym_identifier, + ACTIONS(613), 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, + [5563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(617), 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, + [5619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(623), 1, + sym_identifier, + ACTIONS(621), 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, + [5675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym_identifier, + ACTIONS(625), 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, + [5731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + sym_identifier, + ACTIONS(629), 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, + [5787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(633), 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, + [5843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(637), 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, + [5899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 1, + sym_identifier, + ACTIONS(641), 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, + [5955] = 3, + 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, + [6011] = 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, + [6067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(655), 1, + sym_identifier, + ACTIONS(653), 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, + [6123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + sym_identifier, + ACTIONS(657), 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, + [6179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(661), 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, + [6235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(665), 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, + [6291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(671), 1, + sym_identifier, + ACTIONS(669), 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, + [6347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(675), 1, + sym_identifier, + ACTIONS(673), 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, + [6403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 1, + sym_identifier, + ACTIONS(677), 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, + [6459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(681), 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, + [6515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 1, + sym_identifier, + ACTIONS(685), 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, + [6571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 1, + sym_identifier, + ACTIONS(689), 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, + [6627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 1, + sym_identifier, + ACTIONS(693), 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, + [6683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(699), 1, + sym_identifier, + ACTIONS(697), 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, + [6739] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(515), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1269), 1, - sym_parameter_specification, - STATE(1505), 1, - sym__simple_expression, - STATE(1548), 1, - sym__defining_identifier_list, - STATE(1549), 1, - sym__parameter_specification_list, - STATE(1910), 1, - sym_value_sequence, - STATE(1591), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 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(542), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - sym_identifier, - ACTIONS(527), 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, - [4335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - sym_identifier, - ACTIONS(531), 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, - [4391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(537), 1, - sym_identifier, - ACTIONS(535), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(541), 1, - sym_identifier, - ACTIONS(539), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4503] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(505), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1345), 1, + STATE(1343), 1, sym_expression, - STATE(1367), 1, + STATE(1362), 1, sym_pragma_argument_association, - STATE(1604), 1, + STATE(1603), 1, sym__aspect_mark, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18225,12 +20341,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4601] = 3, + [6837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(545), 1, + ACTIONS(703), 1, sym_identifier, - ACTIONS(543), 47, + ACTIONS(701), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18278,12 +20394,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4657] = 3, + [6893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(549), 1, + ACTIONS(707), 1, sym_identifier, - ACTIONS(547), 47, + ACTIONS(705), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18331,2184 +20447,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4713] = 3, + [6949] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(551), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(555), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(559), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(563), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [4937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(569), 1, - sym_identifier, - ACTIONS(567), 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, - [4993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - sym_identifier, - ACTIONS(571), 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, - [5049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(575), 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, - [5105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(581), 1, - sym_identifier, - ACTIONS(579), 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, - [5161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(585), 1, - sym_identifier, - ACTIONS(583), 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, - [5217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(589), 1, - sym_identifier, - ACTIONS(587), 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, - [5273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(591), 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, - [5329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(595), 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, - [5385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(601), 1, - sym_identifier, - ACTIONS(599), 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, - [5441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(603), 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, - [5497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(609), 1, - sym_identifier, - ACTIONS(607), 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, - [5553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(613), 1, - sym_identifier, - ACTIONS(611), 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, - [5609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(615), 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, - [5665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(621), 1, - sym_identifier, - ACTIONS(619), 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, - [5721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym_identifier, - ACTIONS(623), 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, - [5777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - sym_identifier, - ACTIONS(627), 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, - [5833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 1, - sym_identifier, - ACTIONS(631), 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, - [5889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - sym_identifier, - ACTIONS(635), 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, - [5945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(641), 1, - sym_identifier, - ACTIONS(639), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [6001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(643), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [6057] = 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, - [6113] = 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, - [6169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(657), 1, - sym_identifier, - ACTIONS(655), 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, - [6225] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(659), 1, + ACTIONS(709), 1, sym_identifier, - ACTIONS(661), 1, - anon_sym_SEMI, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1479), 1, - sym_extended_return_object_declaration, - STATE(1817), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [6323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(665), 1, - sym_identifier, - ACTIONS(663), 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, - [6379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(669), 1, - sym_identifier, - ACTIONS(667), 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, - [6435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(673), 1, - sym_identifier, - ACTIONS(671), 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, - [6491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - sym_identifier, - ACTIONS(675), 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, - [6547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(681), 1, - sym_identifier, - ACTIONS(679), 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, - [6603] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(415), 1, - sym_identifier, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1466), 1, - sym_expression, - STATE(1467), 1, - sym__named_record_component_association, - STATE(1671), 1, - sym_component_choice_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [6701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(685), 1, - sym_identifier, - ACTIONS(683), 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, - [6757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(687), 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, - [6813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(693), 1, - sym_identifier, - ACTIONS(691), 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, - [6869] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(415), 1, - sym_identifier, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1671), 1, - sym_component_choice_list, - STATE(1910), 1, - sym_value_sequence, - STATE(1467), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [6965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(697), 1, - sym_identifier, - ACTIONS(695), 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, - [7021] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(515), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(959), 1, + STATE(926), 1, sym__subtype_indication, - STATE(1269), 1, - sym_parameter_specification, - STATE(1505), 1, + STATE(1304), 1, + sym_index_subtype_definition, + STATE(1504), 1, sym__simple_expression, - STATE(1548), 1, - sym__defining_identifier_list, - STATE(1549), 1, - sym__parameter_specification_list, - STATE(1910), 1, + STATE(1854), 1, + sym__index_subtype_definition_list, + STATE(1855), 1, + sym__discrete_subtype_definition_list, + STATE(1909), 1, sym_value_sequence, - STATE(1836), 2, + STATE(1310), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(525), 3, + ACTIONS(711), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -20520,7 +20507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20535,85 +20522,171 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7121] = 23, + [7049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(415), 1, + ACTIONS(715), 1, sym_identifier, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1671), 1, - sym_component_choice_list, - STATE(1910), 1, - sym_value_sequence, - STATE(1276), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(485), 3, + ACTIONS(713), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_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_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, + [7105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(719), 1, + sym_identifier, + ACTIONS(717), 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, + [7161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(721), 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, [7217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 1, + ACTIONS(727), 1, sym_identifier, - ACTIONS(699), 47, + ACTIONS(725), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20664,9 +20737,9 @@ static const uint16_t ts_small_parse_table[] = { [7273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(705), 1, + ACTIONS(731), 1, sym_identifier, - ACTIONS(703), 47, + ACTIONS(729), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20717,9 +20790,9 @@ static const uint16_t ts_small_parse_table[] = { [7329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 1, + ACTIONS(735), 1, sym_identifier, - ACTIONS(707), 47, + ACTIONS(733), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20767,279 +20840,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7385] = 3, + [7385] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - sym_identifier, - ACTIONS(711), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(717), 1, - sym_identifier, - ACTIONS(715), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(721), 1, - sym_identifier, - ACTIONS(719), 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, - [7553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(725), 1, - sym_identifier, - ACTIONS(723), 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, - [7609] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, + ACTIONS(415), 1, + sym_identifier, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(727), 1, - sym_identifier, - STATE(502), 1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1156), 1, - sym_index_subtype_definition, - STATE(1505), 1, + STATE(524), 1, sym__simple_expression, - STATE(1855), 1, - sym__index_subtype_definition_list, - STATE(1856), 1, - sym__discrete_subtype_definition_list, - STATE(1910), 1, + STATE(1670), 1, + sym_component_choice_list, + STATE(1909), 1, sym_value_sequence, - STATE(1207), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(729), 3, + STATE(1243), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(550), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21054,113 +20913,82 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7709] = 3, + [7481] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(515), 1, sym_identifier, - ACTIONS(731), 47, - ts_builtin_sym_end, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(926), 1, + sym__subtype_indication, + STATE(1254), 1, + sym_parameter_specification, + STATE(1504), 1, + sym__simple_expression, + STATE(1545), 1, + sym__defining_identifier_list, + STATE(1547), 1, + sym__parameter_specification_list, + STATE(1909), 1, + sym_value_sequence, + STATE(1835), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(737), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [7765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(737), 1, - sym_identifier, - ACTIONS(735), 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, - [7821] = 3, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(550), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(741), 1, @@ -21213,7 +21041,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7877] = 3, + [7637] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(415), 1, + sym_identifier, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1465), 1, + sym_expression, + STATE(1466), 1, + sym__named_record_component_association, + STATE(1670), 1, + sym_component_choice_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7735] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(515), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(926), 1, + sym__subtype_indication, + STATE(1254), 1, + sym_parameter_specification, + STATE(1504), 1, + sym__simple_expression, + STATE(1545), 1, + sym__defining_identifier_list, + STATE(1547), 1, + sym__parameter_specification_list, + STATE(1909), 1, + sym_value_sequence, + STATE(1590), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(737), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(550), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7835] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(745), 1, @@ -21266,7 +21243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7933] = 3, + [7891] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(749), 1, @@ -21319,7 +21296,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7989] = 3, + [7947] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(753), 1, @@ -21372,59 +21349,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8045] = 3, + [8003] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(757), 1, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(755), 1, sym_identifier, - ACTIONS(755), 47, - ts_builtin_sym_end, + ACTIONS(757), 1, + anon_sym_SEMI, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1388), 1, + sym_extended_return_object_declaration, + STATE(1816), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, [8101] = 3, ACTIONS(3), 1, sym_comment, @@ -21637,333 +21635,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8325] = 3, + [8325] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(775), 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, - [8381] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(779), 1, - anon_sym_LT_GT, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1513), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8476] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(781), 1, - anon_sym_LT_GT, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1309), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8571] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(783), 1, - aux_sym_positional_array_aggregate_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1188), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8666] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, ACTIONS(513), 1, aux_sym_positional_array_aggregate_token1, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1275), 1, + STATE(1268), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21978,64 +21707,424 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8761] = 23, + [8420] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(775), 1, + aux_sym_delay_until_statement_token2, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1793), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8515] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(777), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1512), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8610] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(779), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1488), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8705] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1344), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8800] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(783), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1161), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8895] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, ACTIONS(785), 1, anon_sym_LT_GT, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1676), 1, + STATE(1149), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22050,64 +22139,136 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8856] = 23, + [8990] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, ACTIONS(787), 1, anon_sym_LT_GT, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1411), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9085] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(789), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, STATE(1675), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22122,136 +22283,64 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8951] = 23, + [9180] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(789), 1, - aux_sym_positional_array_aggregate_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1188), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9046] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, ACTIONS(791), 1, - anon_sym_LT_GT, - STATE(502), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1343), 1, + STATE(1161), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22266,64 +22355,1441 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9141] = 23, + [9275] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, ACTIONS(793), 1, - aux_sym_delay_until_statement_token2, - STATE(502), 1, + anon_sym_LT_GT, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1674), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9370] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(795), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1161), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9465] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1161), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(797), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(799), 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, + [9611] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(801), 1, + aux_sym_expression_token4, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(602), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(805), 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, + [9757] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1364), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9849] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1617), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9941] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1005), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10033] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1715), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10125] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1838), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(807), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(809), 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, + [10271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(811), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(813), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [10325] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1277), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(815), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(817), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [10471] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1558), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10563] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1555), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10655] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1811), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10747] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1119), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10839] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1790), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10931] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(819), 1, + aux_sym_expression_token2, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(603), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11023] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, STATE(1794), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22338,64 +23804,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9236] = 23, + [11115] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - ACTIONS(795), 1, - anon_sym_LT_GT, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1489), 1, + STATE(1221), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22410,64 +23874,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9331] = 23, + [11207] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - ACTIONS(797), 1, - anon_sym_LT_GT, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1448), 1, + STATE(1417), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22482,64 +23944,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9426] = 23, + [11299] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - ACTIONS(799), 1, - aux_sym_positional_array_aggregate_token1, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1188), 1, + STATE(1788), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22554,62 +24014,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9521] = 22, + [11391] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1574), 1, + STATE(1103), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22624,62 +24084,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9613] = 22, + [11483] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1618), 1, + STATE(1485), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22694,253 +24154,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9705] = 3, + [11575] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(803), 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, - [9759] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - ACTIONS(805), 1, - aux_sym_expression_token2, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(608), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9851] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(807), 1, - aux_sym_expression_token4, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(606), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9943] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1486), 1, + STATE(1501), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22955,62 +24224,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10035] = 22, + [11667] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1348), 1, + STATE(1311), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23025,300 +24294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(809), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(811), 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, - [10181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(813), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(815), 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, - [10235] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1789), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(817), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(819), 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, - [10381] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1875), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10473] = 3, + [11759] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(821), 7, @@ -23369,7 +24345,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [10527] = 3, + [11813] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(825), 7, @@ -23420,147 +24396,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [10581] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1368), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10673] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1579), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10765] = 3, + [11867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(829), 7, @@ -23611,501 +24447,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [10819] = 22, + [11921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1654), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10911] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1393), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11003] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1124), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11095] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1194), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11187] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(837), 1, - aux_sym_loop_parameter_specification_token1, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - STATE(1045), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(835), 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(529), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11281] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1669), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11373] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1670), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(839), 7, + ACTIONS(833), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -24113,7 +24458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(841), 39, + ACTIONS(835), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -24153,7 +24498,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11519] = 3, + [11975] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(837), 1, + sym_identifier, + ACTIONS(841), 1, + aux_sym_loop_parameter_specification_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(926), 1, + sym__subtype_indication, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + STATE(980), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(839), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12069] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(843), 7, @@ -24204,62 +24620,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11573] = 22, + [12123] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1502), 1, + STATE(1574), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24274,7 +24690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11665] = 3, + [12215] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(847), 7, @@ -24325,62 +24741,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11719] = 22, + [12269] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1078), 1, + STATE(1578), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24395,62 +24811,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11811] = 22, + [12361] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1188), 1, + STATE(1569), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24465,217 +24881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11903] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1732), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11995] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1570), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12087] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1189), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12179] = 3, + [12453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(851), 7, @@ -24726,62 +24932,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12233] = 22, + [12507] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1725), 1, + STATE(1573), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24796,62 +25002,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12325] = 22, + [12599] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1140), 1, + STATE(1576), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24866,7 +25072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12417] = 3, + [12691] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(855), 7, @@ -24917,62 +25123,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12471] = 22, + [12745] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1791), 1, + STATE(1660), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24987,7 +25193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12563] = 3, + [12837] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(859), 7, @@ -25038,77 +25244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12617] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1577), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12709] = 3, + [12891] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(863), 7, @@ -25159,7 +25295,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12763] = 3, + [12945] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1874), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13037] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(867), 7, @@ -25210,7 +25416,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12817] = 3, + [13091] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(871), 7, @@ -25261,62 +25467,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [12871] = 22, + [13145] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1575), 1, + STATE(1653), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25331,62 +25537,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12963] = 22, + [13237] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1818), 1, + STATE(1377), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25401,62 +25607,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13055] = 22, + [13329] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1229), 1, + STATE(1123), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25471,62 +25677,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13147] = 22, + [13421] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1795), 1, + STATE(1148), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25541,62 +25747,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13239] = 22, + [13513] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1605), 1, + STATE(1668), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25611,147 +25817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13331] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1839), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13423] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1525), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13515] = 3, + [13605] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(875), 7, @@ -25802,7 +25868,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13569] = 3, + [13659] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1669), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13751] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(879), 7, @@ -25853,7 +25989,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13623] = 3, + [13805] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(883), 7, @@ -25904,7 +26040,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13677] = 3, + [13859] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(524), 1, + sym__simple_expression, + STATE(1523), 1, + sym_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13951] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(887), 7, @@ -25955,62 +26161,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13731] = 22, + [14005] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1073), 1, + STATE(1730), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26025,62 +26231,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13823] = 22, + [14097] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1556), 1, + STATE(1604), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26095,62 +26301,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13915] = 22, + [14189] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1559), 1, + STATE(1188), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26165,62 +26371,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14007] = 22, + [14281] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1663), 1, + STATE(1723), 1, sym_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(559), 3, + STATE(557), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26235,77 +26441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14099] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1285), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14191] = 3, + [14373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(891), 7, @@ -26356,321 +26492,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14245] = 3, + [14427] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(895), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(897), 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, - [14299] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, + ACTIONS(895), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(1719), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14391] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(524), 1, - sym__simple_expression, - STATE(992), 1, - sym_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(559), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(485), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14483] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(899), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1404), 1, + STATE(926), 1, sym__subtype_indication, - STATE(1505), 1, + STATE(1504), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1463), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(525), 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(542), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14574] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(899), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - STATE(1370), 2, + STATE(1369), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(525), 3, + ACTIONS(737), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(542), 6, + STATE(550), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26685,109 +26561,40 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14665] = 22, + [14518] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(899), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - STATE(1891), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 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(542), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14756] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -26795,19 +26602,19 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26822,60 +26629,60 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14845] = 21, + [14607] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(603), 3, + STATE(601), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26890,60 +26697,336 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14934] = 21, + [14696] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_raise_expression_token1, ACTIONS(239), 1, - aux_sym_factor_abs_token1, + aux_sym_relation_membership_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(895), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(926), 1, + sym__subtype_indication, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + STATE(1798), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(737), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(550), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14787] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(895), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(1381), 1, + sym__subtype_indication, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + STATE(1462), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(737), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(550), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14878] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(897), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(926), 1, + sym__subtype_indication, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + STATE(988), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(899), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(527), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14969] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(895), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(756), 1, + sym_null_exclusion, + STATE(926), 1, + sym__subtype_indication, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + STATE(1890), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(737), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(550), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15060] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, STATE(524), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(605), 3, + STATE(600), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26958,165 +27041,27 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15023] = 22, + [15149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(899), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - STATE(1799), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(525), 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(542), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15114] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(901), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(757), 1, - sym_null_exclusion, - STATE(959), 1, - sym__subtype_indication, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - STATE(1002), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(903), 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(528), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15205] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(911), 1, + ACTIONS(907), 1, anon_sym_DOT, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LPAREN, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(488), 1, + STATE(494), 1, sym_index_constraint, - ACTIONS(905), 6, + ACTIONS(901), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(907), 33, + ACTIONS(903), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27150,18 +27095,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15267] = 8, + [15211] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(911), 1, - anon_sym_DOT, - ACTIONS(913), 1, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, anon_sym_LPAREN, - STATE(217), 1, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(911), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(575), 1, + sym__simple_expression, + STATE(582), 1, + sym_membership_choice_list, + STATE(1909), 1, + sym_value_sequence, + STATE(574), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15299] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(911), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(575), 1, + sym__simple_expression, + STATE(576), 1, + sym_membership_choice_list, + STATE(1909), 1, + sym_value_sequence, + STATE(574), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(909), 1, + anon_sym_LPAREN, + STATE(226), 1, sym_actual_parameter_part, - STATE(490), 1, + STATE(487), 1, sym_index_constraint, ACTIONS(915), 6, anon_sym_EQ, @@ -27204,47 +27283,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [15329] = 21, + [15449] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(919), 1, + ACTIONS(911), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(574), 1, + STATE(575), 1, sym__simple_expression, - STATE(581), 1, - sym_membership_choice_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(573), 2, + STATE(577), 2, sym_range_g, sym__membership_choice, - ACTIONS(921), 3, + ACTIONS(913), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -27256,7 +27333,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27271,74 +27348,55 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15417] = 21, + [15534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(919), 1, + ACTIONS(921), 1, sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(574), 1, - sym__simple_expression, - STATE(585), 1, - sym_membership_choice_list, - STATE(1910), 1, - sym_value_sequence, - STATE(573), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(921), 3, + ACTIONS(919), 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), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15505] = 3, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_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, + [15585] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(925), 1, @@ -27386,7 +27444,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15556] = 3, + [15636] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(929), 1, @@ -27434,121 +27492,139 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15607] = 3, + [15687] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, - sym_identifier, - ACTIONS(931), 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, - [15658] = 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, - [15709] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(911), 1, - anon_sym_DOT, - ACTIONS(943), 1, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, anon_sym_LPAREN, - STATE(217), 1, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(911), 1, + sym_identifier, + ACTIONS(931), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(630), 1, + sym_range_g, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(933), 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, + [15825] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(941), 1, + anon_sym_LPAREN, + STATE(226), 1, sym_actual_parameter_part, - ACTIONS(939), 6, + ACTIONS(937), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(941), 33, + ACTIONS(939), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27582,12 +27658,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, - [15768] = 3, + [15884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 1, + ACTIONS(945), 1, sym_identifier, - ACTIONS(945), 42, + ACTIONS(943), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27630,77 +27706,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15819] = 20, + [15935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(919), 1, + ACTIONS(949), 1, sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(574), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - STATE(579), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(921), 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), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(951), 1, - sym_identifier, - ACTIONS(949), 42, + ACTIONS(947), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27743,12 +27754,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15955] = 3, + [15986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 1, + ACTIONS(953), 1, sym_identifier, - ACTIONS(953), 42, + ACTIONS(951), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27791,12 +27802,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16006] = 3, + [16037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(957), 1, sym_identifier, - ACTIONS(957), 42, + ACTIONS(955), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27839,12 +27850,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16057] = 3, + [16088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(961), 42, + ACTIONS(959), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27887,73 +27898,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16108] = 21, + [16139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(919), 1, - sym_identifier, ACTIONS(965), 1, - anon_sym_LT_GT, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(653), 1, - sym_range_g, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(921), 3, + sym_identifier, + ACTIONS(963), 41, + 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), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16195] = 3, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(969), 1, @@ -28000,7 +27992,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16245] = 3, + [16239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(973), 1, @@ -28047,7 +28039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16295] = 3, + [16289] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(977), 1, @@ -28094,7 +28086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16345] = 3, + [16339] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(981), 1, @@ -28141,7 +28133,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16395] = 3, + [16389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(985), 1, @@ -28188,7 +28180,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16445] = 3, + [16439] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(989), 1, @@ -28235,7 +28227,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16495] = 3, + [16489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, @@ -28282,7 +28274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16545] = 3, + [16539] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, @@ -28329,7 +28321,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16595] = 3, + [16589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, @@ -28376,7 +28368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16645] = 3, + [16639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 1, @@ -28423,7 +28415,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16695] = 3, + [16689] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1009), 1, @@ -28470,7 +28462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16745] = 3, + [16739] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 1, @@ -28517,7 +28509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16795] = 3, + [16789] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1017), 1, @@ -28564,7 +28556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16845] = 3, + [16839] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 1, @@ -28611,7 +28603,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16895] = 3, + [16889] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(911), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(630), 1, + sym_range_g, + STATE(1504), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(513), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1025), 1, @@ -28658,7 +28714,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16945] = 3, + [17023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1029), 1, @@ -28705,7 +28761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16995] = 3, + [17073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, @@ -28752,7 +28808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17045] = 3, + [17123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, @@ -28799,7 +28855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17095] = 3, + [17173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, @@ -28846,7 +28902,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17145] = 3, + [17223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, @@ -28893,54 +28949,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1001), 1, - sym_identifier, - ACTIONS(999), 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, - [17245] = 3, + [17273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1049), 1, @@ -28987,54 +28996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1001), 1, - sym_identifier, - ACTIONS(999), 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, - [17345] = 3, + [17323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 1, @@ -29081,7 +29043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17395] = 3, + [17373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 1, @@ -29128,7 +29090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17445] = 3, + [17423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 1, @@ -29175,7 +29137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17495] = 3, + [17473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 1, @@ -29222,7 +29184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17545] = 3, + [17523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1069), 1, @@ -29269,7 +29231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17595] = 3, + [17573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1073), 1, @@ -29316,7 +29278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17645] = 3, + [17623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1077), 1, @@ -29363,54 +29325,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1001), 1, - sym_identifier, - ACTIONS(999), 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, - [17745] = 3, + [17673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1081), 1, @@ -29457,7 +29372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17795] = 3, + [17723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1085), 1, @@ -29504,7 +29419,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17845] = 3, + [17773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, @@ -29551,7 +29466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17895] = 3, + [17823] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1093), 1, @@ -29598,7 +29513,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17945] = 3, + [17873] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1097), 1, @@ -29645,7 +29560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17995] = 3, + [17923] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1101), 1, @@ -29692,7 +29607,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18045] = 3, + [17973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1105), 1, @@ -29739,7 +29654,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18095] = 3, + [18023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 1, + sym_identifier, + ACTIONS(1063), 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, + [18073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1109), 1, @@ -29786,7 +29748,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18145] = 3, + [18123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 1, @@ -29833,7 +29795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18195] = 3, + [18173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1117), 1, @@ -29880,7 +29842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18245] = 3, + [18223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 1, @@ -29927,7 +29889,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18295] = 3, + [18273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 1, @@ -29974,7 +29936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18345] = 3, + [18323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 1, @@ -30021,54 +29983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1069), 1, - sym_identifier, - ACTIONS(1067), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18445] = 3, + [18373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1133), 1, @@ -30115,7 +30030,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18495] = 3, + [18423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 1, + sym_identifier, + ACTIONS(1131), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 1, @@ -30162,7 +30124,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18545] = 3, + [18523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -30209,7 +30171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18595] = 3, + [18573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 1, @@ -30256,7 +30218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18645] = 3, + [18623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 1, @@ -30303,7 +30265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18695] = 3, + [18673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 1, @@ -30350,7 +30312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18745] = 3, + [18723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 1, @@ -30397,7 +30359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18795] = 3, + [18773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 1, @@ -30444,7 +30406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18845] = 3, + [18823] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 1, @@ -30491,7 +30453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18895] = 3, + [18873] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1169), 1, @@ -30538,7 +30500,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18945] = 3, + [18923] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1173), 1, @@ -30585,54 +30547,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 1, - sym_identifier, - ACTIONS(1047), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19045] = 3, + [18973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 1, @@ -30679,7 +30594,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19095] = 3, + [19023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 1, @@ -30726,165 +30641,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19145] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(919), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(653), 1, - sym_range_g, - STATE(1505), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(921), 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), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [19229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, - sym_identifier, - ACTIONS(991), 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, - [19279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1009), 1, - sym_identifier, - ACTIONS(1007), 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, - [19329] = 3, + [19073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 1, @@ -30931,7 +30688,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19379] = 3, + [19123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 1, @@ -30978,7 +30735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19429] = 3, + [19173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1193), 1, @@ -31025,7 +30782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19479] = 3, + [19223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, @@ -31072,7 +30829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19529] = 3, + [19273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 1, @@ -31119,7 +30876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19579] = 3, + [19323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1205), 1, @@ -31166,7 +30923,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19629] = 3, + [19373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 1, @@ -31213,7 +30970,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19679] = 3, + [19423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 1, @@ -31260,7 +31017,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19729] = 3, + [19473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1217), 1, @@ -31307,7 +31064,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19779] = 3, + [19523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1221), 1, @@ -31354,7 +31111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19829] = 3, + [19573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1225), 1, @@ -31401,7 +31158,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19879] = 3, + [19623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1229), 1, @@ -31448,7 +31205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19929] = 3, + [19673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1233), 1, @@ -31495,7 +31252,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19979] = 3, + [19723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1237), 1, @@ -31542,7 +31299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20029] = 3, + [19773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, @@ -31589,7 +31346,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20079] = 3, + [19823] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1245), 1, @@ -31636,7 +31393,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20129] = 3, + [19873] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1249), 1, @@ -31683,7 +31440,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20179] = 3, + [19923] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1253), 1, @@ -31730,7 +31487,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20229] = 3, + [19973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1257), 1, @@ -31777,7 +31534,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20279] = 3, + [20023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1261), 1, @@ -31824,54 +31581,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(995), 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, - [20379] = 3, + [20073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1265), 1, @@ -31918,7 +31628,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20429] = 3, + [20123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1269), 1, @@ -31965,7 +31675,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20479] = 3, + [20173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1273), 1, @@ -32012,54 +31722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1267), 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, - [20579] = 3, + [20223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1277), 1, @@ -32106,7 +31769,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20629] = 3, + [20273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1281), 1, @@ -32153,7 +31816,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20679] = 3, + [20323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1285), 1, @@ -32200,7 +31863,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20729] = 3, + [20373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1289), 1, @@ -32247,7 +31910,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20779] = 3, + [20423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, @@ -32294,7 +31957,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20829] = 3, + [20473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1289), 1, + sym_identifier, + ACTIONS(1287), 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, + [20523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1049), 1, + sym_identifier, + ACTIONS(1047), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, @@ -32341,7 +32098,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20879] = 3, + [20623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1301), 1, @@ -32388,7 +32145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20929] = 3, + [20673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1305), 1, @@ -32435,7 +32192,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20979] = 3, + [20723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1309), 1, @@ -32482,4066 +32239,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - sym_identifier, - ACTIONS(1311), 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, - [21079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 1, - sym_identifier, - ACTIONS(1255), 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, - [21129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1317), 1, - sym_identifier, - ACTIONS(1315), 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, - [21179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1321), 1, - sym_identifier, - ACTIONS(1319), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1325), 1, - sym_identifier, - ACTIONS(1323), 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, - [21279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1329), 1, - sym_identifier, - ACTIONS(1327), 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, - [21329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - sym_identifier, - ACTIONS(1331), 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, - [21379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 1, - sym_identifier, - ACTIONS(1335), 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, - [21429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1341), 1, - sym_identifier, - ACTIONS(1339), 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, - [21479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1301), 1, - sym_identifier, - ACTIONS(1299), 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, - [21529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1345), 1, - sym_identifier, - ACTIONS(1343), 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, - [21579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1349), 1, - sym_identifier, - ACTIONS(1347), 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, - [21629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 1, - sym_identifier, - ACTIONS(1351), 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, - [21679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1355), 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, - [21729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 1, - sym_identifier, - ACTIONS(1359), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1363), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1355), 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, - [21879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1369), 1, - sym_identifier, - ACTIONS(1367), 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, - [21929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 1, - sym_identifier, - ACTIONS(1371), 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, - [21979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1377), 1, - sym_identifier, - ACTIONS(1375), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 1, - sym_identifier, - ACTIONS(1379), 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, - [22079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 1, - sym_identifier, - ACTIONS(1383), 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, - [22129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1389), 1, - sym_identifier, - ACTIONS(1387), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1393), 1, - sym_identifier, - ACTIONS(1391), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1397), 1, - sym_identifier, - ACTIONS(1395), 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, - [22279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1401), 1, - sym_identifier, - ACTIONS(1399), 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, - [22329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1403), 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, - [22379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 1, - sym_identifier, - ACTIONS(1407), 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, - [22429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - sym_identifier, - ACTIONS(1411), 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, - [22479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1417), 1, - sym_identifier, - ACTIONS(1415), 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, - [22529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 1, - sym_identifier, - ACTIONS(1419), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - sym_identifier, - ACTIONS(1423), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1427), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1433), 1, - sym_identifier, - ACTIONS(1431), 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, - [22729] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(1435), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1510), 1, - sym__simple_expression, - STATE(1512), 1, - sym_chunk_specification, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [22813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 1, - sym_identifier, - ACTIONS(1437), 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, - [22863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1443), 1, - sym_identifier, - ACTIONS(1441), 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, - [22913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1447), 1, - sym_identifier, - ACTIONS(1445), 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, - [22963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 1, - sym_identifier, - ACTIONS(1449), 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, - [23013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, - sym_identifier, - ACTIONS(1453), 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, - [23063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - sym_identifier, - ACTIONS(1457), 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, - [23113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - sym_identifier, - ACTIONS(1461), 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, - [23163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 1, - sym_identifier, - ACTIONS(1465), 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, - [23213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 1, - sym_identifier, - ACTIONS(1469), 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, - [23263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 1, - sym_identifier, - ACTIONS(1473), 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, - [23313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 1, - sym_identifier, - ACTIONS(1477), 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, - [23363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 1, - sym_identifier, - ACTIONS(1481), 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, - [23413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_identifier, - ACTIONS(1485), 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, - [23463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 1, - sym_identifier, - ACTIONS(1489), 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, - [23513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 1, - sym_identifier, - ACTIONS(1493), 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, - [23563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 1, - sym_identifier, - ACTIONS(1497), 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, - [23613] = 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, - [23663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1505), 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, - [23713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - sym_identifier, - ACTIONS(1509), 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, - [23763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1513), 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, - [23813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 1, - sym_identifier, - ACTIONS(1517), 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, - [23863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 1, - sym_identifier, - ACTIONS(1521), 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, - [23913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 1, - sym_identifier, - ACTIONS(1525), 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, - [23963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 1, - sym_identifier, - ACTIONS(1529), 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, - [24013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 1, - sym_identifier, - ACTIONS(1533), 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, - [24063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 1, - sym_identifier, - ACTIONS(1537), 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, - [24113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym_identifier, - ACTIONS(1541), 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, - [24163] = 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, - [24213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 1, - sym_identifier, - ACTIONS(1549), 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, - [24263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(1553), 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, - [24313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 1, - sym_identifier, - ACTIONS(1557), 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, - [24363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - sym_identifier, - ACTIONS(1561), 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, - [24413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - sym_identifier, - ACTIONS(1565), 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, - [24463] = 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, - [24513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 1, - sym_identifier, - ACTIONS(1573), 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, - [24563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, - sym_identifier, - ACTIONS(1577), 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, - [24613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 1, - sym_identifier, - ACTIONS(1581), 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, - [24663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - sym_identifier, - ACTIONS(1585), 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, - [24713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 1, - sym_identifier, - ACTIONS(1589), 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, - [24763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - sym_identifier, - ACTIONS(1593), 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, - [24813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1599), 1, - sym_identifier, - ACTIONS(1597), 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, - [24863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 1, - sym_identifier, - ACTIONS(1477), 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, - [24913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1033), 1, - sym_identifier, - ACTIONS(1031), 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, - [24963] = 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, - [25013] = 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, - [25063] = 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, - [25113] = 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, - [25163] = 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, - [25213] = 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, - [25263] = 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, - [25313] = 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, - [25363] = 3, + [20773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1297), 1, @@ -36588,7 +32286,4207 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25413] = 3, + [20823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1311), 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, + [20873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1315), 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, + [20923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1321), 1, + sym_identifier, + ACTIONS(1319), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 1, + sym_identifier, + ACTIONS(1323), 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, + [21023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1271), 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, + [21073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + sym_identifier, + ACTIONS(1327), 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, + [21123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1331), 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, + [21173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1337), 1, + sym_identifier, + ACTIONS(1335), 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, + [21223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 1, + sym_identifier, + ACTIONS(1339), 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, + [21273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1345), 1, + sym_identifier, + ACTIONS(1343), 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, + [21323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 1, + sym_identifier, + ACTIONS(1347), 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, + [21373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1353), 1, + sym_identifier, + ACTIONS(1351), 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, + [21423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1357), 1, + sym_identifier, + ACTIONS(1355), 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, + [21473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 1, + sym_identifier, + ACTIONS(1359), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1365), 1, + sym_identifier, + ACTIONS(1363), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 1, + sym_identifier, + ACTIONS(1367), 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, + [21623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1373), 1, + sym_identifier, + ACTIONS(1371), 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, + [21673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 1, + sym_identifier, + ACTIONS(1375), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1379), 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, + [21773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + sym_identifier, + ACTIONS(1383), 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, + [21823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1309), 1, + sym_identifier, + ACTIONS(1307), 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, + [21873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1387), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1393), 1, + sym_identifier, + ACTIONS(1391), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1397), 1, + sym_identifier, + ACTIONS(1395), 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, + [22023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1401), 1, + sym_identifier, + ACTIONS(1399), 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, + [22073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1405), 1, + sym_identifier, + ACTIONS(1403), 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, + [22123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1409), 1, + sym_identifier, + ACTIONS(1407), 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, + [22173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + sym_identifier, + ACTIONS(1411), 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, + [22223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 1, + sym_identifier, + ACTIONS(1415), 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, + [22273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 1, + sym_identifier, + ACTIONS(1419), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 1, + sym_identifier, + ACTIONS(1423), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1427), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1433), 1, + sym_identifier, + ACTIONS(1431), 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, + [22473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 1, + sym_identifier, + ACTIONS(1435), 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, + [22523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 1, + sym_identifier, + ACTIONS(1439), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 1, + sym_identifier, + ACTIONS(1347), 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, + [22623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 1, + sym_identifier, + ACTIONS(1443), 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, + [22673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1447), 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, + [22723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1451), 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, + [22773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 1, + sym_identifier, + ACTIONS(1455), 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, + [22823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1461), 1, + sym_identifier, + ACTIONS(1459), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 1, + sym_identifier, + ACTIONS(1463), 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, + [22923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(1467), 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, + [22973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 1, + sym_identifier, + ACTIONS(1471), 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, + [23023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 1, + sym_identifier, + ACTIONS(1475), 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, + [23073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 1, + sym_identifier, + ACTIONS(1479), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + sym_identifier, + ACTIONS(1295), 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, + [23173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 1, + sym_identifier, + ACTIONS(1483), 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, + [23223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 1, + sym_identifier, + ACTIONS(1487), 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, + [23273] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(1491), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(1509), 1, + sym__simple_expression, + STATE(1511), 1, + sym_chunk_specification, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 1, + sym_identifier, + ACTIONS(1493), 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, + [23407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 1, + sym_identifier, + ACTIONS(1497), 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, + [23457] = 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, + [23507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1507), 1, + sym_identifier, + ACTIONS(1505), 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, + [23557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + sym_identifier, + ACTIONS(1509), 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, + [23607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + sym_identifier, + ACTIONS(1295), 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, + [23657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 1, + sym_identifier, + ACTIONS(1513), 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, + [23707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 1, + sym_identifier, + ACTIONS(1517), 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, + [23757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 1, + sym_identifier, + ACTIONS(1487), 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, + [23807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 1, + sym_identifier, + ACTIONS(1521), 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, + [23857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + sym_identifier, + ACTIONS(1525), 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, + [23907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 1, + sym_identifier, + ACTIONS(1479), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 1, + sym_identifier, + ACTIONS(1529), 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, + [24007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 1, + sym_identifier, + ACTIONS(1533), 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, + [24057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1537), 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, + [24107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1541), 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, + [24157] = 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, + [24207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(1549), 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, + [24257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1553), 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, + [24307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + sym_identifier, + ACTIONS(1557), 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, + [24357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 1, + sym_identifier, + ACTIONS(1561), 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, + [24407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1565), 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, + [24457] = 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, + [24507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 1, + sym_identifier, + ACTIONS(1573), 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, + [24557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 1, + sym_identifier, + ACTIONS(1577), 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, + [24607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1581), 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, + [24657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + sym_identifier, + ACTIONS(1585), 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, + [24707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + sym_identifier, + ACTIONS(1589), 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, + [24757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 1, + sym_identifier, + ACTIONS(1593), 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, + [24807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 1, + sym_identifier, + ACTIONS(1597), 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, + [24857] = 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, + [24907] = 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, + [24957] = 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, + [25007] = 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, + [25057] = 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, + [25107] = 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, + [25157] = 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, + [25207] = 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, + [25257] = 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, + [25307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1635), 1, @@ -36635,7 +36533,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25463] = 3, + [25357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1639), 1, @@ -36682,7 +36580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25513] = 3, + [25407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1643), 1, @@ -36729,7 +36627,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25563] = 3, + [25457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 1, + sym_identifier, + ACTIONS(1597), 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, + [25507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -36776,12 +36721,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25613] = 3, + [25557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 1, + ACTIONS(1639), 1, sym_identifier, - ACTIONS(1649), 41, + ACTIONS(1637), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36823,54 +36768,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25663] = 19, + [25607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, + ACTIONS(1651), 1, sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(582), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(1649), 40, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_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, + [25656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(559), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -36885,7 +36876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [25744] = 3, + [25737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1655), 1, @@ -36931,7 +36922,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25793] = 3, + [25786] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(1531), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1659), 1, @@ -36977,54 +37030,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25842] = 19, + [25916] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(1737), 1, + STATE(1407), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37039,54 +37092,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [25923] = 19, + [25997] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(617), 1, + STATE(1873), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37101,7 +37154,69 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [26004] = 3, + [26078] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(616), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26159] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1663), 1, @@ -37147,54 +37262,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26053] = 19, + [26208] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(612), 1, + STATE(1446), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37209,7 +37324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [26134] = 3, + [26289] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1667), 1, @@ -37255,7 +37370,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26183] = 3, + [26338] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(614), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26419] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(578), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26500] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(227), 1, + anon_sym_PLUS, + ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(504), 1, + sym_term, + STATE(1736), 1, + sym__simple_expression, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1671), 1, @@ -37301,193 +37602,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26232] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1771), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26313] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(557), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26394] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1874), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26475] = 3, + [26630] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1675), 1, @@ -37533,100 +37648,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26524] = 3, + [26679] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, - sym_identifier, - ACTIONS(1677), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26573] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(1533), 1, + STATE(581), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37641,54 +37710,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [26654] = 19, + [26760] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, ACTIONS(225), 1, - anon_sym_DASH, + sym_numeric_literal, ACTIONS(227), 1, - anon_sym_LPAREN, + anon_sym_PLUS, ACTIONS(229), 1, + anon_sym_DASH, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, - STATE(502), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(504), 1, sym_term, - STATE(578), 1, + STATE(1770), 1, sym__simple_expression, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37703,149 +37772,74 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [26735] = 19, + [26841] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1452), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26816] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_PLUS, - ACTIONS(225), 1, - anon_sym_DASH, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(502), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1408), 1, - sym__simple_expression, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26897] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1688), 1, + ACTIONS(1683), 1, anon_sym_SLASH, - STATE(483), 1, + STATE(484), 1, aux_sym_term_repeat1, - STATE(505), 1, + STATE(508), 1, sym_multiplying_operator, - ACTIONS(1685), 3, + ACTIONS(1681), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1681), 4, + ACTIONS(1677), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1683), 30, + ACTIONS(1679), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [26897] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 1, + anon_sym_SLASH, + STATE(483), 1, + aux_sym_term_repeat1, + STATE(508), 1, + sym_multiplying_operator, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1685), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1687), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -37879,22 +37873,22 @@ static const uint16_t ts_small_parse_table[] = { [26953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(1683), 1, anon_sym_SLASH, STATE(483), 1, aux_sym_term_repeat1, - STATE(505), 1, + STATE(508), 1, sym_multiplying_operator, - ACTIONS(1695), 3, + ACTIONS(1681), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1691), 4, + ACTIONS(1695), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1693), 30, + ACTIONS(1697), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -37925,30 +37919,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27009] = 7, + [27009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_SLASH, - STATE(484), 1, - aux_sym_term_repeat1, - STATE(505), 1, - sym_multiplying_operator, - ACTIONS(1695), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1699), 4, + ACTIONS(1699), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1701), 30, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1701), 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, @@ -37970,11 +37958,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27065] = 3, + [27056] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1703), 6, @@ -38018,7 +38007,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27112] = 3, + [27103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(901), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(903), 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, + [27150] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1707), 6, @@ -38062,51 +38095,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, - [27159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(917), 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, - [27206] = 3, + [27197] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1711), 6, @@ -38150,7 +38139,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, - [27253] = 3, + [27244] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1715), 6, @@ -38194,9 +38183,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27300] = 3, + [27291] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1723), 1, + anon_sym_STAR_STAR, ACTIONS(1719), 6, anon_sym_EQ, anon_sym_LT, @@ -38204,7 +38195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1721), 33, + ACTIONS(1721), 32, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38233,67 +38224,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, - anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27347] = 4, + [27340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_STAR_STAR, - ACTIONS(1723), 6, + ACTIONS(1725), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1725), 32, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_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, - [27396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1731), 33, + ACTIONS(1727), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38327,82 +38272,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27443] = 3, + [27387] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1735), 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, - [27490] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(907), 1, anon_sym_DOT, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LPAREN, - ACTIONS(1737), 1, + ACTIONS(1729), 1, sym_tick, - ACTIONS(1739), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(1743), 1, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - ACTIONS(939), 6, + ACTIONS(937), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - STATE(650), 6, + STATE(643), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(941), 20, + ACTIONS(939), 20, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38423,7 +38324,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [27553] = 3, + [27450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1737), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1739), 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, + [27497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1743), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_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, + [27543] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1745), 5, @@ -38466,7 +38454,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, - [27599] = 3, + [27589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 5, @@ -38509,7 +38497,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, - [27645] = 3, + [27635] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 5, @@ -38552,153 +38540,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27691] = 3, + [27681] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1759), 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, - [27737] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, + ACTIONS(1757), 1, anon_sym_LPAREN, - ACTIONS(1763), 1, + ACTIONS(1759), 1, aux_sym_attribute_designator_token1, - ACTIONS(1765), 1, + ACTIONS(1761), 1, aux_sym_attribute_designator_token2, - ACTIONS(1767), 1, + ACTIONS(1763), 1, aux_sym_attribute_designator_token3, - ACTIONS(1769), 1, + ACTIONS(1765), 1, aux_sym_attribute_designator_token4, - ACTIONS(1771), 1, + ACTIONS(1767), 1, aux_sym_compilation_unit_token1, - ACTIONS(1773), 1, - aux_sym_with_clause_token1, - ACTIONS(1775), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1781), 1, - aux_sym_allocator_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1787), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1789), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1791), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1795), 1, - aux_sym_interface_type_definition_token2, - STATE(1174), 1, - sym_null_exclusion, - STATE(1432), 1, - sym_record_definition, - ACTIONS(1783), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1178), 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, - [27821] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_LPAREN, - ACTIONS(1763), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1765), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1767), 1, - aux_sym_attribute_designator_token3, ACTIONS(1769), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1775), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1795), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1797), 1, aux_sym_with_clause_token1, - ACTIONS(1799), 1, + ACTIONS(1771), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1777), 1, aux_sym_allocator_token1, - ACTIONS(1801), 1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1783), 1, aux_sym_private_type_declaration_token1, - ACTIONS(1803), 1, + ACTIONS(1785), 1, aux_sym_private_type_declaration_token2, - STATE(1174), 1, - sym_null_exclusion, - STATE(1432), 1, - sym_record_definition, - ACTIONS(1783), 3, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1787), 1, aux_sym_private_extension_declaration_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1791), 1, + aux_sym_interface_type_definition_token2, + STATE(1175), 1, + sym_null_exclusion, + STATE(1431), 1, + sym_record_definition, + ACTIONS(1779), 2, + aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1221), 17, + STATE(1179), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, @@ -38716,46 +38602,46 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [27900] = 15, + [27765] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(227), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(487), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, ACTIONS(507), 1, sym_identifier, STATE(506), 1, sym_term, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(485), 4, + STATE(482), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(492), 14, + STATE(491), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -38770,384 +38656,502 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27969] = 15, + [27834] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(227), 1, + ACTIONS(1757), 1, anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(512), 1, - sym_term, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 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(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_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] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_DASH, - STATE(503), 1, - sym_binary_adding_operator, - STATE(508), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1809), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1805), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1807), 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, - [28090] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(221), 1, - sym_numeric_literal, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(487), 1, - aux_sym_relation_membership_token1, - ACTIONS(507), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(499), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(492), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28156] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_DASH, - STATE(503), 1, - sym_binary_adding_operator, - STATE(504), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1809), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1813), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1815), 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, - [28208] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_DASH, - STATE(503), 1, - sym_binary_adding_operator, - STATE(509), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1809), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1817), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1819), 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, - [28260] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1828), 1, - anon_sym_DASH, - STATE(503), 1, - sym_binary_adding_operator, - STATE(508), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1825), 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, - [28312] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - anon_sym_DASH, - STATE(503), 1, - sym_binary_adding_operator, - STATE(508), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1809), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1813), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1815), 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, - [28364] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + ACTIONS(1759), 1, aux_sym_attribute_designator_token1, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1795), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1831), 1, - anon_sym_LPAREN, - ACTIONS(1833), 1, + ACTIONS(1761), 1, aux_sym_attribute_designator_token2, - ACTIONS(1835), 1, + ACTIONS(1763), 1, aux_sym_attribute_designator_token3, - ACTIONS(1837), 1, + ACTIONS(1765), 1, aux_sym_attribute_designator_token4, - ACTIONS(1839), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1841), 1, - aux_sym_with_clause_token1, - ACTIONS(1843), 1, + ACTIONS(1771), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1845), 1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1791), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1793), 1, + aux_sym_with_clause_token1, + ACTIONS(1795), 1, aux_sym_allocator_token1, - ACTIONS(1847), 1, + ACTIONS(1797), 1, aux_sym_private_type_declaration_token1, + ACTIONS(1799), 1, + aux_sym_private_type_declaration_token2, + STATE(1175), 1, + sym_null_exclusion, + STATE(1431), 1, + sym_record_definition, + ACTIONS(1779), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1238), 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, + [27913] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(511), 1, + sym_term, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(482), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27982] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_DASH, + STATE(502), 1, + sym_binary_adding_operator, + STATE(503), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1805), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1801), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1803), 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, + [28034] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_DASH, + STATE(502), 1, + sym_binary_adding_operator, + STATE(507), 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, + [28086] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_DASH, + STATE(502), 1, + sym_binary_adding_operator, + STATE(503), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1815), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1819), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1821), 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, + [28138] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_DASH, + STATE(502), 1, + sym_binary_adding_operator, + STATE(505), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1815), 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, + [28190] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_DASH, + STATE(502), 1, + sym_binary_adding_operator, + STATE(503), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1815), 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, + [28242] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + sym_numeric_literal, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(507), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(498), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(491), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28308] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1791), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1827), 1, + anon_sym_LPAREN, + ACTIONS(1829), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1831), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1833), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_with_clause_token1, + ACTIONS(1839), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1841), 1, + aux_sym_allocator_token1, + ACTIONS(1843), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1845), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1847), 1, + aux_sym_private_extension_declaration_token1, + STATE(1175), 1, + sym_null_exclusion, + STATE(1199), 1, + sym_array_type_definition, + STATE(1200), 1, + sym_interface_type_definition, + ACTIONS(1779), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1197), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1064), 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, + [28389] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1791), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1827), 1, + anon_sym_LPAREN, + ACTIONS(1829), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1831), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1833), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1835), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1837), 1, + aux_sym_with_clause_token1, + ACTIONS(1839), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1841), 1, + aux_sym_allocator_token1, + ACTIONS(1843), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1847), 1, + aux_sym_private_extension_declaration_token1, ACTIONS(1849), 1, aux_sym_private_type_declaration_token2, - ACTIONS(1851), 1, - aux_sym_private_extension_declaration_token1, - STATE(1174), 1, + STATE(1175), 1, sym_null_exclusion, - STATE(1305), 1, - sym_interface_type_definition, - STATE(1317), 1, + STATE(1199), 1, sym_array_type_definition, - ACTIONS(1783), 2, + STATE(1200), 1, + sym_interface_type_definition, + ACTIONS(1779), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1138), 3, + STATE(1197), 3, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, - STATE(1103), 12, + STATE(1131), 12, sym__formal_type_definition, sym_formal_private_type_definition, sym_formal_derived_type_definition, @@ -39160,74 +39164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_array_type_definition, sym_formal_access_type_definition, sym_formal_interface_type_definition, - [28445] = 22, + [28470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1795), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1831), 1, - anon_sym_LPAREN, - ACTIONS(1833), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1835), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1837), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1839), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1841), 1, - aux_sym_with_clause_token1, - ACTIONS(1843), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1845), 1, - aux_sym_allocator_token1, - ACTIONS(1847), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1851), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1853), 1, - aux_sym_private_type_declaration_token2, - STATE(1174), 1, - sym_null_exclusion, - STATE(1305), 1, - sym_interface_type_definition, - STATE(1317), 1, - sym_array_type_definition, - ACTIONS(1783), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1138), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1083), 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, - [28526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 4, + ACTIONS(1801), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1823), 30, + ACTIONS(1803), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39258,59 +39203,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, - [28568] = 7, + [28512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_DOT, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1737), 1, - sym_tick, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(939), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(941), 27, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_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, - anon_sym_PIPE, - anon_sym_STAR_STAR, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1859), 1, + ACTIONS(1855), 1, anon_sym_LT_LT, - STATE(514), 2, + STATE(512), 2, sym_label, aux_sym__sequence_of_statements_repeat2, - ACTIONS(1857), 29, + ACTIONS(1853), 29, sym_string_literal, sym_character_literal, sym_target_name, @@ -39340,16 +39243,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [28662] = 6, + [28557] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 1, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1729), 1, + sym_tick, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(937), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(939), 27, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, - ACTIONS(1869), 1, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_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, anon_sym_PIPE, - STATE(1277), 1, + anon_sym_STAR_STAR, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [28606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1862), 1, + anon_sym_EQ_GT, + ACTIONS(1865), 1, + anon_sym_PIPE, + STATE(1270), 1, aux_sym_component_choice_list_repeat1, - ACTIONS(1862), 7, + ACTIONS(1858), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -39357,7 +39302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1864), 22, + ACTIONS(1860), 22, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39380,51 +39325,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [28708] = 6, + [28652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 1, + anon_sym_EQ_GT, + ACTIONS(1870), 1, + anon_sym_PIPE, + STATE(1270), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(1858), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1860), 21, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [28697] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1872), 1, - anon_sym_EQ_GT, - ACTIONS(1874), 1, - anon_sym_PIPE, - STATE(1277), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(1862), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1864), 21, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [28753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1876), 1, sym_identifier, - ACTIONS(1878), 30, + ACTIONS(1874), 30, sym_string_literal, sym_character_literal, sym_target_name, @@ -39455,17 +39400,141 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [28792] = 5, + [28736] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(1876), 1, + sym_numeric_literal, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(496), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28790] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(1876), 1, + sym_numeric_literal, + ACTIONS(1878), 1, + aux_sym_primary_null_token1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(270), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(496), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28844] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, + anon_sym_COLON, + STATE(1252), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1858), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1860), 21, + 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, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [28888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(1882), 4, + ACTIONS(1886), 4, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, - ACTIONS(1707), 7, + ACTIONS(1715), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -39473,7 +39542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_rem, - ACTIONS(1709), 18, + ACTIONS(1717), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39492,100 +39561,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_PIPE, - [28834] = 11, + [28930] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(1884), 1, - sym_numeric_literal, - ACTIONS(1886), 1, - aux_sym_primary_null_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(496), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28888] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(243), 1, - aux_sym_allocator_token1, - ACTIONS(419), 1, - aux_sym_primary_null_token1, - ACTIONS(507), 1, - sym_identifier, - ACTIONS(1884), 1, - sym_numeric_literal, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(485), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(269), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(496), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28942] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_LBRACK, - ACTIONS(243), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, @@ -39593,20 +39576,20 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1888), 1, sym_numeric_literal, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(498), 14, + STATE(495), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39621,66 +39604,28 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28996] = 6, + [28984] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, - anon_sym_COMMA, - ACTIONS(1892), 1, - anon_sym_COLON, - STATE(1244), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1862), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1864), 21, - 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, + ACTIONS(231), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [29040] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(243), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(507), 1, sym_identifier, - ACTIONS(1894), 1, + ACTIONS(1890), 1, sym_numeric_literal, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(485), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(269), 6, + STATE(270), 6, sym__name, sym_selected_component, sym__attribute_reference, @@ -39702,24 +39647,64 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [29094] = 7, + [29038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, - aux_sym_chunk_specification_token1, - ACTIONS(1904), 1, - aux_sym_relation_membership_token1, - STATE(465), 1, - sym_relational_operator, - ACTIONS(1896), 3, + ACTIONS(1868), 1, + anon_sym_EQ_GT, + ACTIONS(1870), 1, + anon_sym_PIPE, + ACTIONS(1882), 1, + anon_sym_COLON, + ACTIONS(1892), 1, + anon_sym_COMMA, + STATE(1252), 1, + aux_sym__defining_identifier_list_repeat1, + STATE(1270), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(1858), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1898), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1860), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1900), 20, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [29087] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1901), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1903), 1, + aux_sym_relation_membership_token1, + STATE(476), 1, + sym_relational_operator, + ACTIONS(1895), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1897), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1899), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -39740,119 +39725,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29139] = 9, + [29132] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1872), 1, - anon_sym_EQ_GT, - ACTIONS(1874), 1, - anon_sym_PIPE, - ACTIONS(1892), 1, - anon_sym_COLON, - ACTIONS(1906), 1, - anon_sym_COMMA, - STATE(1244), 1, - aux_sym__defining_identifier_list_repeat1, - STATE(1277), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(1862), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1864), 17, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, + ACTIONS(905), 1, sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [29188] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1909), 1, - sym_identifier, - ACTIONS(1913), 1, - aux_sym_iterator_filter_token1, - ACTIONS(1915), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(32), 1, - sym_procedure_call_statement, - STATE(808), 1, - sym_guard, - STATE(1067), 1, - sym_select_alternative, - STATE(1469), 1, - sym_entry_call_alternative, - STATE(1809), 1, - sym_triggering_alternative, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(1911), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(27), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1197), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - STATE(986), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [29254] = 10, - ACTIONS(3), 1, - sym_comment, ACTIONS(909), 1, - sym_tick, - ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(1743), 1, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(655), 6, + STATE(631), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1919), 15, + ACTIONS(1907), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -39868,42 +39765,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29304] = 14, + [29182] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - anon_sym_DOT, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1737), 1, - sym_tick, - ACTIONS(1739), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1743), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1924), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1909), 1, + sym_identifier, + ACTIONS(1913), 1, aux_sym_iterator_filter_token1, - STATE(217), 1, + ACTIONS(1915), 1, + aux_sym_terminate_alternative_token1, + STATE(28), 1, + sym_accept_statement, + STATE(31), 1, + sym_procedure_call_statement, + STATE(808), 1, + sym_guard, + STATE(1066), 1, + sym_select_alternative, + STATE(1398), 1, + sym_entry_call_alternative, + STATE(1808), 1, + sym_triggering_alternative, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(1911), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(27), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1239), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + STATE(1030), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [29248] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(909), 1, + anon_sym_LPAREN, + ACTIONS(1729), 1, + sym_tick, + ACTIONS(1731), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1733), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1735), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1920), 1, + aux_sym_iterator_filter_token1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1273), 1, + STATE(1224), 1, sym_iterator_filter, - ACTIONS(939), 2, + ACTIONS(937), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(1921), 3, + ACTIONS(1917), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - STATE(650), 6, + STATE(643), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(941), 7, + ACTIONS(939), 7, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -39911,42 +39856,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [29361] = 14, + [29305] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(907), 1, anon_sym_DOT, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LPAREN, - ACTIONS(1737), 1, + ACTIONS(1729), 1, sym_tick, - ACTIONS(1739), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(1743), 1, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1924), 1, + ACTIONS(1920), 1, aux_sym_iterator_filter_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1185), 1, + STATE(1184), 1, sym_iterator_filter, - ACTIONS(939), 2, + ACTIONS(937), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(1927), 3, + ACTIONS(1923), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - STATE(650), 6, + STATE(643), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(941), 7, + ACTIONS(939), 7, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -39954,7 +39899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [29418] = 14, + [29362] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -39967,187 +39912,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1930), 1, + ACTIONS(1926), 1, sym_identifier, + ACTIONS(1928), 1, + aux_sym_package_specification_token3, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, ACTIONS(1932), 1, - aux_sym_package_specification_token3, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(944), 1, + STATE(958), 1, sym_overriding_indicator, - STATE(1784), 1, + STATE(1783), 1, sym__defining_identifier_list, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(531), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [29474] = 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(1930), 1, - sym_identifier, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1938), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_overriding_indicator, - STATE(1784), 1, - sym__defining_identifier_list, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(533), 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, - [29530] = 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(1930), 1, - sym_identifier, - ACTIONS(1932), 1, - aux_sym_package_specification_token3, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(944), 1, - sym_overriding_indicator, - STATE(1784), 1, - sym__defining_identifier_list, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(533), 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, - [29586] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(1943), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1946), 1, - aux_sym_package_specification_token3, - ACTIONS(1948), 1, - aux_sym_relation_membership_token1, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1954), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1957), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1960), 1, - aux_sym_global_mode_token1, - ACTIONS(1963), 1, - aux_sym_pragma_g_token1, - STATE(944), 1, - sym_overriding_indicator, - STATE(1784), 1, - sym__defining_identifier_list, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(533), 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, - [29642] = 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(1930), 1, - sym_identifier, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1966), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_overriding_indicator, - STATE(1784), 1, - sym__defining_identifier_list, - STATE(1074), 3, + STATE(1118), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, @@ -40164,19 +39941,19 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [29698] = 4, + [29418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1934), 1, aux_sym_record_component_association_list_token1, - ACTIONS(1707), 6, + ACTIONS(1715), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1709), 19, + ACTIONS(1717), 19, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40196,7 +39973,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [29734] = 15, + [29454] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40209,25 +39986,277 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1926), 1, + sym_identifier, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, + ACTIONS(1936), 1, + aux_sym_package_specification_token3, + STATE(958), 1, + sym_overriding_indicator, + STATE(1783), 1, + sym__defining_identifier_list, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(533), 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, + [29510] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1938), 1, + sym_identifier, + ACTIONS(1941), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1944), 1, + aux_sym_package_specification_token3, + ACTIONS(1946), 1, + aux_sym_relation_membership_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1952), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1955), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1958), 1, + aux_sym_global_mode_token1, + ACTIONS(1961), 1, + aux_sym_pragma_g_token1, + STATE(958), 1, + sym_overriding_indicator, + STATE(1783), 1, + sym__defining_identifier_list, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(532), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [29566] = 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(1926), 1, + sym_identifier, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1964), 1, + aux_sym_package_specification_token3, + STATE(958), 1, + sym_overriding_indicator, + STATE(1783), 1, + sym__defining_identifier_list, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(532), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [29622] = 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(1926), 1, + sym_identifier, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1964), 1, + aux_sym_package_specification_token3, + STATE(958), 1, + sym_overriding_indicator, + STATE(1783), 1, + sym__defining_identifier_list, + STATE(1118), 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, + [29678] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, + aux_sym_package_specification_token3, + ACTIONS(1970), 1, + aux_sym_allocator_token1, + STATE(958), 1, + sym_overriding_indicator, + STATE(1843), 1, + sym_protected_definition, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(556), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [29735] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, + aux_sym_package_specification_token3, ACTIONS(1972), 1, + aux_sym_allocator_token1, + STATE(958), 1, + sym_overriding_indicator, + STATE(1530), 1, + sym_protected_definition, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(556), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [29792] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, aux_sym_package_specification_token3, ACTIONS(1974), 1, aux_sym_allocator_token1, - STATE(944), 1, + STATE(958), 1, sym_overriding_indicator, - STATE(1852), 1, + STATE(1682), 1, sym_protected_definition, - STATE(1074), 3, + STATE(1118), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(563), 10, + STATE(556), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40238,63 +40267,21 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [29791] = 15, + [29849] = 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(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, ACTIONS(1976), 1, - aux_sym_allocator_token1, - STATE(944), 1, - sym_overriding_indicator, - STATE(1517), 1, - sym_protected_definition, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(563), 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, - [29848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 1, sym_tick, - ACTIONS(1981), 1, + ACTIONS(1979), 1, anon_sym_EQ_GT, - ACTIONS(1862), 6, + ACTIONS(1858), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1864), 17, + ACTIONS(1860), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40312,7 +40299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29885] = 15, + [29886] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40325,25 +40312,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, + ACTIONS(1966), 1, aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, + ACTIONS(1968), 1, + aux_sym_package_specification_token3, + ACTIONS(1981), 1, + aux_sym_allocator_token1, + STATE(958), 1, + sym_overriding_indicator, + STATE(1516), 1, + sym_protected_definition, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(556), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [29943] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, aux_sym_package_specification_token3, ACTIONS(1983), 1, aux_sym_allocator_token1, - STATE(944), 1, + STATE(958), 1, sym_overriding_indicator, - STATE(1532), 1, + STATE(1851), 1, sym_protected_definition, - STATE(1074), 3, + STATE(1118), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(563), 10, + STATE(556), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40354,121 +40383,66 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [29942] = 15, + [30000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, - ACTIONS(1985), 1, - aux_sym_allocator_token1, - STATE(944), 1, - sym_overriding_indicator, - STATE(1844), 1, - sym_protected_definition, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(563), 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, - [29999] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, ACTIONS(1987), 1, - aux_sym_allocator_token1, - STATE(944), 1, - sym_overriding_indicator, - STATE(1683), 1, - sym_protected_definition, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(563), 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, - [30056] = 12, + anon_sym_LPAREN, + ACTIONS(1985), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30032] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(907), 1, anon_sym_DOT, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LPAREN, - ACTIONS(1737), 1, + ACTIONS(1729), 1, sym_tick, - ACTIONS(1739), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(1743), 1, + ACTIONS(1991), 1, aux_sym_range_attribute_designator_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - ACTIONS(939), 2, + ACTIONS(937), 2, anon_sym_DASH, anon_sym_STAR, ACTIONS(1989), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(650), 6, + STATE(643), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(941), 7, + ACTIONS(939), 7, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -40476,77 +40450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [30106] = 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(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_overriding_indicator, - STATE(1492), 1, - sym_protected_definition, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(563), 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, - [30160] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 1, - anon_sym_COLON, - ACTIONS(1862), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1864), 18, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - aux_sym_chunk_specification_token1, - anon_sym_SEMI, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [30194] = 14, + [30082] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40555,9 +40459,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, ACTIONS(1993), 1, aux_sym_package_specification_token3, @@ -40565,15 +40469,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_subunit_token1, ACTIONS(1997), 1, aux_sym_entry_declaration_token1, - STATE(1017), 1, + STATE(1016), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1134), 1, + STATE(1083), 1, sym__subprogram_specification, - STATE(555), 12, + STATE(1122), 1, + sym_procedure_specification, + STATE(554), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -40586,7 +40490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [30248] = 14, + [30136] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40599,23 +40503,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, + ACTIONS(1966), 1, aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, + ACTIONS(1968), 1, aux_sym_package_specification_token3, - STATE(944), 1, + STATE(958), 1, sym_overriding_indicator, - STATE(1846), 1, + STATE(1845), 1, sym_protected_definition, - STATE(1074), 3, + STATE(1118), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(563), 10, + STATE(556), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40626,104 +40530,99 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30302] = 14, + [30190] = 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(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_overriding_indicator, - STATE(1648), 1, - sym_protected_definition, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(563), 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, - [30356] = 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(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, - aux_sym_package_specification_token3, - STATE(944), 1, - sym_overriding_indicator, - STATE(1647), 1, - sym_protected_definition, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(563), 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, - [30410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2001), 1, + ACTIONS(1999), 1, + anon_sym_COLON, + ACTIONS(1858), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1860), 18, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1999), 23, + 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, + [30224] = 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(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, + aux_sym_package_specification_token3, + STATE(958), 1, + sym_overriding_indicator, + STATE(1491), 1, + sym_protected_definition, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(556), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30278] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2003), 1, + aux_sym_with_clause_token2, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(2001), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - aux_sym_chunk_specification_token1, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym_package_specification_token2, - aux_sym_with_clause_token2, aux_sym_range_attribute_designator_token1, aux_sym_expression_token1, aux_sym_expression_token2, @@ -40731,41 +40630,120 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, anon_sym_PIPE, - anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30442] = 12, + [30318] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 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(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, + aux_sym_package_specification_token3, + STATE(958), 1, + sym_overriding_indicator, + STATE(1647), 1, + sym_protected_definition, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(556), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30372] = 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(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1966), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1968), 1, + aux_sym_package_specification_token3, + STATE(958), 1, + sym_overriding_indicator, + STATE(1646), 1, + sym_protected_definition, + STATE(1118), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(556), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [30426] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(907), 1, anon_sym_DOT, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LPAREN, - ACTIONS(1737), 1, + ACTIONS(1729), 1, sym_tick, - ACTIONS(1739), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(2003), 1, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - ACTIONS(939), 2, + ACTIONS(937), 2, anon_sym_DASH, anon_sym_STAR, ACTIONS(1989), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(650), 6, + STATE(643), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(941), 7, + ACTIONS(939), 7, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -40773,7 +40751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [30492] = 14, + [30476] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40786,23 +40764,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1970), 1, + ACTIONS(1966), 1, aux_sym_compilation_unit_token1, - ACTIONS(1972), 1, + ACTIONS(1968), 1, aux_sym_package_specification_token3, - STATE(944), 1, + STATE(958), 1, sym_overriding_indicator, - STATE(1774), 1, + STATE(1773), 1, sym_protected_definition, - STATE(1074), 3, + STATE(1118), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(563), 10, + STATE(556), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40813,67 +40791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30546] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2007), 1, - aux_sym_with_clause_token2, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(2005), 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, - [30586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2009), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30615] = 13, + [30530] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40882,23 +40800,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, ACTIONS(1993), 1, aux_sym_package_specification_token3, ACTIONS(1997), 1, aux_sym_entry_declaration_token1, - STATE(1017), 1, + STATE(1016), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1134), 1, + STATE(1083), 1, sym__subprogram_specification, - STATE(555), 12, + STATE(1122), 1, + sym_procedure_specification, + STATE(554), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -40911,48 +40829,10 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [30666] = 13, + [30581] = 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(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1997), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2011), 1, - aux_sym_package_specification_token3, - STATE(1017), 1, - sym_overriding_indicator, - STATE(1075), 1, - sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1134), 1, - sym__subprogram_specification, - STATE(558), 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, - [30717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2013), 23, + ACTIONS(2005), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -40976,105 +40856,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, - [30746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30775] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2020), 1, - aux_sym_package_specification_token3, - ACTIONS(2022), 1, - aux_sym_relation_membership_token1, - ACTIONS(2025), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2028), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2031), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2034), 1, - aux_sym_global_mode_token1, - STATE(1017), 1, - sym_overriding_indicator, - STATE(1075), 1, - sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1134), 1, - sym__subprogram_specification, - STATE(558), 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, - [30826] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2039), 1, - aux_sym_expression_token1, - ACTIONS(2041), 1, - aux_sym_expression_token3, - ACTIONS(2043), 1, - aux_sym_expression_token5, - STATE(588), 1, - aux_sym_expression_repeat1, - STATE(589), 1, - aux_sym_expression_repeat2, - STATE(591), 1, - aux_sym_expression_repeat3, - ACTIONS(2037), 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, - [30867] = 13, + [30610] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41083,23 +40865,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, ACTIONS(1997), 1, aux_sym_entry_declaration_token1, - ACTIONS(2011), 1, + ACTIONS(2007), 1, aux_sym_package_specification_token3, - STATE(1017), 1, + STATE(1016), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1134), 1, + STATE(1083), 1, sym__subprogram_specification, - STATE(562), 12, + STATE(1122), 1, + sym_procedure_specification, + STATE(561), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -41112,44 +40894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [30918] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2045), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2050), 1, - aux_sym_relation_membership_token1, - ACTIONS(2053), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2056), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2059), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2062), 1, - aux_sym_global_mode_token1, - ACTIONS(2065), 1, - aux_sym_pragma_g_token1, - STATE(944), 1, - sym_overriding_indicator, - ACTIONS(2048), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(1074), 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, - [30967] = 13, + [30661] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41158,23 +40903,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, ACTIONS(1997), 1, aux_sym_entry_declaration_token1, - ACTIONS(2068), 1, + ACTIONS(2007), 1, aux_sym_package_specification_token3, - STATE(1017), 1, + STATE(1016), 1, sym_overriding_indicator, - STATE(1075), 1, + STATE(1053), 1, sym_function_specification, - STATE(1089), 1, - sym_procedure_specification, - STATE(1134), 1, + STATE(1083), 1, sym__subprogram_specification, - STATE(558), 12, + STATE(1122), 1, + sym_procedure_specification, + STATE(560), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -41187,7 +40932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [31018] = 13, + [30712] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41200,21 +40945,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1966), 1, + ACTIONS(1936), 1, aux_sym_package_specification_token3, - ACTIONS(2070), 1, + ACTIONS(2009), 1, aux_sym_compilation_unit_token1, - STATE(944), 1, + STATE(958), 1, sym_overriding_indicator, - STATE(1074), 3, + STATE(1118), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(561), 10, + STATE(558), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41225,99 +40970,365 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31069] = 15, + [30763] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2013), 1, + aux_sym_expression_token1, + ACTIONS(2015), 1, + aux_sym_expression_token3, + ACTIONS(2017), 1, + aux_sym_expression_token5, + STATE(588), 1, + aux_sym_expression_repeat1, + STATE(590), 1, + aux_sym_expression_repeat2, + STATE(591), 1, + aux_sym_expression_repeat3, + ACTIONS(2011), 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, + [30804] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2019), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2024), 1, + aux_sym_relation_membership_token1, + ACTIONS(2027), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2030), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2033), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2036), 1, + aux_sym_global_mode_token1, + ACTIONS(2039), 1, + aux_sym_pragma_g_token1, + STATE(958), 1, + sym_overriding_indicator, + ACTIONS(2022), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(1118), 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, + [30853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30882] = 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(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1997), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2044), 1, + aux_sym_package_specification_token3, + STATE(1016), 1, + sym_overriding_indicator, + STATE(1053), 1, + sym_function_specification, + STATE(1083), 1, + sym__subprogram_specification, + STATE(1122), 1, + sym_procedure_specification, + STATE(561), 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, + [30933] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2046), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2049), 1, + aux_sym_package_specification_token3, + ACTIONS(2051), 1, + aux_sym_relation_membership_token1, + ACTIONS(2054), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2057), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2060), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2063), 1, + aux_sym_global_mode_token1, + STATE(1016), 1, + sym_overriding_indicator, + STATE(1053), 1, + sym_function_specification, + STATE(1083), 1, + sym__subprogram_specification, + STATE(1122), 1, + sym_procedure_specification, + STATE(561), 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, + [30984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2066), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31013] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(1793), 1, + ACTIONS(1789), 1, aux_sym_array_type_definition_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - ACTIONS(2078), 1, + ACTIONS(2074), 1, aux_sym_general_access_modifier_token1, - ACTIONS(2080), 1, + ACTIONS(2076), 1, aux_sym_component_definition_token1, - ACTIONS(2082), 1, + ACTIONS(2078), 1, aux_sym_exception_declaration_token1, - STATE(678), 1, + STATE(734), 1, sym_null_exclusion, - STATE(997), 1, + STATE(983), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(996), 2, + STATE(984), 2, sym_access_definition, sym_array_type_definition, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [31123] = 12, + [31067] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2076), 1, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - ACTIONS(2084), 1, + ACTIONS(2080), 1, sym_identifier, - ACTIONS(2090), 1, + ACTIONS(2086), 1, aux_sym_exception_declaration_token1, - STATE(698), 1, + STATE(737), 1, sym_null_exclusion, - STATE(1739), 1, + STATE(1738), 1, sym_access_definition, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2086), 3, + ACTIONS(2082), 3, sym_string_literal, sym_character_literal, sym_target_name, - ACTIONS(2088), 5, + ACTIONS(2084), 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(1011), 6, + STATE(969), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [31171] = 10, + [31115] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(2088), 1, + sym_identifier, + ACTIONS(2091), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2096), 1, + aux_sym_with_clause_token2, + ACTIONS(2099), 1, + aux_sym_use_clause_token2, + ACTIONS(2102), 1, + aux_sym_pragma_g_token1, + STATE(1821), 1, + sym__defining_identifier_list, + STATE(876), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2094), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(565), 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, + [31158] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1926), 1, + sym_identifier, + ACTIONS(2107), 1, + aux_sym_with_clause_token2, + ACTIONS(2109), 1, + aux_sym_use_clause_token2, + STATE(1821), 1, + sym__defining_identifier_list, + STATE(876), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2105), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(565), 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, + [31201] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1741), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(1743), 1, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(650), 6, + STATE(643), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, @@ -41333,14 +41344,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - [31214] = 4, + [31244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2113), 1, anon_sym_PIPE, STATE(568), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2092), 19, + ACTIONS(2111), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41360,93 +41371,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 1, - anon_sym_PIPE, - STATE(568), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2096), 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, - [31276] = 14, + [31275] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2118), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2105), 1, + ACTIONS(2120), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2107), 1, + ACTIONS(2122), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(641), 1, + STATE(634), 1, sym_general_access_modifier, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1310), 1, + STATE(1151), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2101), 2, + ACTIONS(2116), 2, aux_sym_use_clause_token1, aux_sym_general_access_modifier_token1, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [31327] = 10, + [31326] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1926), 1, + sym_identifier, + ACTIONS(2107), 1, + aux_sym_with_clause_token2, ACTIONS(2109), 1, - sym_identifier, - ACTIONS(2112), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2117), 1, - aux_sym_with_clause_token2, - ACTIONS(2120), 1, aux_sym_use_clause_token2, - ACTIONS(2123), 1, - aux_sym_pragma_g_token1, - STATE(1822), 1, + ACTIONS(2124), 1, + aux_sym_package_specification_token1, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2130), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1821), 1, sym__defining_identifier_list, - STATE(864), 2, + STATE(876), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - ACTIONS(2115), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(570), 10, + STATE(566), 10, sym_use_clause, sym__generic_formal_parameter_declaration, sym_formal_object_declaration, @@ -41457,80 +41443,113 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [31370] = 10, + [31373] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1930), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2128), 1, - aux_sym_with_clause_token2, - ACTIONS(2130), 1, - aux_sym_use_clause_token2, - STATE(1822), 1, - sym__defining_identifier_list, - STATE(864), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2126), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(570), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [31413] = 12, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + STATE(734), 1, + sym_null_exclusion, + STATE(1044), 1, + sym__subtype_indication, + STATE(1673), 1, + sym__assign_value, + STATE(1909), 1, + sym_value_sequence, + STATE(1042), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31424] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1930), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2128), 1, - aux_sym_with_clause_token2, - ACTIONS(2130), 1, - aux_sym_use_clause_token2, - ACTIONS(2132), 1, - aux_sym_package_specification_token1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2076), 1, + aux_sym_component_definition_token1, ACTIONS(2135), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2138), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1822), 1, - sym__defining_identifier_list, - STATE(864), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - 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, - [31460] = 4, + aux_sym_general_access_modifier_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(983), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + STATE(984), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2139), 1, anon_sym_PIPE, - STATE(567), 1, + STATE(568), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2137), 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, + [31506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 1, + anon_sym_PIPE, + STATE(573), 1, aux_sym_membership_choice_list_repeat1, ACTIONS(2141), 19, anon_sym_COMMA, @@ -41552,7 +41571,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, - [31491] = 3, + [31537] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2145), 1, @@ -41578,200 +41597,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31520] = 14, + [31566] = 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, + [31592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2111), 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, + [31618] = 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, + [31644] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(678), 1, - sym_null_exclusion, - STATE(981), 1, - sym__subtype_indication, - STATE(1677), 1, - sym__assign_value, - STATE(1910), 1, - sym_value_sequence, - STATE(982), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [31571] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2080), 1, - aux_sym_component_definition_token1, - ACTIONS(2149), 1, - aux_sym_general_access_modifier_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(997), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(996), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [31622] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2076), 1, aux_sym_attribute_designator_token1, ACTIONS(2151), 1, - sym_identifier, - ACTIONS(2155), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2153), 1, aux_sym_component_definition_token1, - STATE(667), 1, - sym_non_empty_mode, - STATE(719), 1, + STATE(734), 1, sym_null_exclusion, - STATE(945), 1, - sym_access_definition, - STATE(1910), 1, + STATE(1314), 1, + sym__subtype_indication, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2153), 3, + STATE(1082), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(821), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [31672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 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, - [31698] = 2, - ACTIONS(3), 1, - sym_comment, - 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, - [31724] = 13, + [31692] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(235), 1, + aux_sym_chunk_specification_token1, + ACTIONS(257), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, aux_sym_attribute_designator_token1, + ACTIONS(2155), 1, + sym_identifier, ACTIONS(2159), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2161), 1, aux_sym_component_definition_token1, - STATE(678), 1, + STATE(661), 1, + sym_non_empty_mode, + STATE(718), 1, sym_null_exclusion, - STATE(1315), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(1091), 2, + STATE(925), 1, sym_access_definition, - sym__return_subtype_indication, - ACTIONS(2074), 3, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2157), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(825), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [31772] = 2, + [31742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 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, + [31768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2163), 20, @@ -41795,81 +41788,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31798] = 2, + [31794] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 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, - [31824] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2072), 1, + ACTIONS(2165), 1, sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, ACTIONS(2167), 1, - aux_sym_general_access_modifier_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(985), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(982), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [31872] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - sym_identifier, - ACTIONS(2171), 1, anon_sym_LPAREN, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2173), 1, aux_sym_range_attribute_designator_token1, - STATE(242), 1, + STATE(235), 1, sym_attribute_designator, STATE(553), 1, sym_range_attribute_designator, - ACTIONS(2175), 4, + ACTIONS(2171), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, @@ -41885,122 +41819,49 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [31912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2179), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - 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, - [31938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 1, - aux_sym_expression_token3, - STATE(586), 1, - aux_sym_expression_repeat2, - ACTIONS(2181), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31967] = 13, + [31834] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - ACTIONS(2186), 1, - aux_sym_component_definition_token1, - STATE(678), 1, + ACTIONS(2175), 1, + aux_sym_general_access_modifier_token1, + STATE(734), 1, sym_null_exclusion, - STATE(1066), 1, - sym_access_definition, - STATE(1068), 1, + STATE(1037), 1, sym__subtype_indication, - STATE(1121), 1, - sym_component_definition, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + STATE(1042), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32014] = 4, + [31882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, - aux_sym_expression_token1, - STATE(595), 1, - aux_sym_expression_repeat1, - ACTIONS(2188), 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, - [32043] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2041), 1, + ACTIONS(2179), 1, aux_sym_expression_token3, - STATE(586), 1, + STATE(585), 1, aux_sym_expression_repeat2, - ACTIONS(2188), 17, + ACTIONS(2177), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42018,26 +41879,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32072] = 8, + [31911] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2182), 1, + aux_sym_component_definition_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(1090), 1, + sym_component_definition, + STATE(1125), 1, + sym__subtype_indication, + STATE(1127), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31958] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2184), 1, + aux_sym_general_access_modifier_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(1314), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + STATE(1107), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2013), 1, + aux_sym_expression_token1, + STATE(596), 1, + aux_sym_expression_repeat1, + ACTIONS(2186), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32032] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1901), 1, aux_sym_chunk_specification_token1, - ACTIONS(1904), 1, + ACTIONS(1903), 1, aux_sym_relation_membership_token1, ACTIONS(2145), 1, anon_sym_DOT_DOT, - STATE(465), 1, + STATE(476), 1, sym_relational_operator, - ACTIONS(1896), 3, + ACTIONS(1895), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1898), 3, + ACTIONS(1897), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1900), 9, + ACTIONS(1899), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42047,14 +42000,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, aux_sym_expression_token5, anon_sym_PIPE, - [32109] = 4, + [32069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 1, - aux_sym_expression_token5, - STATE(597), 1, - aux_sym_expression_repeat3, - ACTIONS(2188), 17, + ACTIONS(2015), 1, + aux_sym_expression_token3, + STATE(585), 1, + aux_sym_expression_repeat2, + ACTIONS(2186), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42072,115 +42025,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32138] = 13, + [32098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 1, + aux_sym_expression_token5, + STATE(598), 1, + aux_sym_expression_repeat3, + ACTIONS(2186), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32127] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(231), 1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(1789), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(1044), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + STATE(1042), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32172] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2182), 1, + aux_sym_component_definition_token1, + STATE(734), 1, + sym_null_exclusion, + STATE(966), 1, + sym_component_definition, + STATE(1125), 1, + sym__subtype_indication, + STATE(1127), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32219] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, aux_sym_chunk_specification_token1, - ACTIONS(253), 1, + ACTIONS(257), 1, aux_sym_non_empty_mode_token1, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2076), 1, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - ACTIONS(2190), 1, + ACTIONS(2188), 1, sym_identifier, - STATE(625), 1, + STATE(623), 1, sym_non_empty_mode, - STATE(730), 1, + STATE(683), 1, sym_null_exclusion, - STATE(969), 1, + STATE(1008), 1, sym_access_definition, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2192), 3, + ACTIONS(2190), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(840), 6, + STATE(832), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32185] = 13, + [32266] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - ACTIONS(2186), 1, + ACTIONS(2182), 1, aux_sym_component_definition_token1, - STATE(678), 1, + STATE(734), 1, sym_null_exclusion, - STATE(1048), 1, + STATE(1094), 1, sym_component_definition, - STATE(1066), 1, - sym_access_definition, - STATE(1068), 1, + STATE(1125), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1127), 1, + sym_access_definition, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32232] = 12, + [32313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1793), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(981), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(982), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32277] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, + ACTIONS(2194), 1, aux_sym_expression_token1, - STATE(595), 1, + STATE(596), 1, aux_sym_expression_repeat1, - ACTIONS(2194), 17, + ACTIONS(2192), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42198,224 +42210,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32306] = 13, + [32342] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2186), 1, - aux_sym_component_definition_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(1025), 1, - sym_component_definition, - STATE(1066), 1, - sym_access_definition, - STATE(1068), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - aux_sym_expression_token5, - STATE(597), 1, - aux_sym_expression_repeat3, - ACTIONS(2199), 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, - [32382] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2204), 1, - aux_sym_general_access_modifier_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(1315), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(1116), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32427] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(1793), 1, + ACTIONS(1789), 1, aux_sym_array_type_definition_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - STATE(678), 1, + STATE(734), 1, sym_null_exclusion, - STATE(1023), 1, + STATE(1022), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(1024), 2, + STATE(1023), 2, sym_access_definition, sym_array_type_definition, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32472] = 7, + [32387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - sym_identifier, - ACTIONS(2171), 1, - anon_sym_LPAREN, - ACTIONS(2173), 1, - anon_sym_LBRACK, - STATE(1051), 1, - sym_attribute_designator, - ACTIONS(2175), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(241), 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, - [32506] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(1315), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(1094), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32548] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(1315), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(1115), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2206), 18, + ACTIONS(2199), 1, + aux_sym_expression_token5, + STATE(598), 1, + aux_sym_expression_repeat3, + ACTIONS(2197), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42428,43 +42263,68 @@ static const uint16_t ts_small_parse_table[] = { 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, - [32614] = 7, + [32416] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - sym_identifier, - ACTIONS(2171), 1, - anon_sym_LPAREN, - ACTIONS(2173), 1, + ACTIONS(11), 1, anon_sym_LBRACK, - STATE(242), 1, - sym_attribute_designator, - ACTIONS(2175), 4, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + ACTIONS(2072), 1, aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(241), 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, - [32648] = 2, + STATE(734), 1, + sym_null_exclusion, + STATE(1314), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + STATE(1078), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 18, + ACTIONS(2202), 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, + [32482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42483,10 +42343,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, - [32672] = 2, + [32506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 18, + ACTIONS(2177), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42505,10 +42365,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, - [32696] = 2, + [32530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 18, + ACTIONS(2192), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42527,270 +42387,302 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32720] = 2, + [32554] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 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, - [32744] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2165), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + STATE(235), 1, + sym_attribute_designator, + ACTIONS(2171), 4, aux_sym_attribute_designator_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(1476), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - STATE(1478), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32786] = 11, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(241), 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, + [32588] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2210), 1, + ACTIONS(2204), 1, sym_identifier, - ACTIONS(2214), 1, + ACTIONS(2208), 1, anon_sym_SEMI, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - STATE(1257), 1, + STATE(1256), 1, sym_subprogram_default, - STATE(1661), 1, + STATE(1659), 1, sym_aspect_specification, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2218), 2, + ACTIONS(2212), 2, aux_sym_primary_null_token1, anon_sym_LT_GT, - ACTIONS(2212), 3, + ACTIONS(2206), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(939), 6, + STATE(940), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32828] = 11, + [32630] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2165), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_attribute_designator, + ACTIONS(2171), 4, aux_sym_attribute_designator_token1, - STATE(678), 1, - sym_null_exclusion, - STATE(1098), 1, - sym__subtype_indication, - STATE(1099), 1, - sym_access_definition, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32869] = 4, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(241), 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, + [32664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, - aux_sym_range_attribute_designator_token1, - STATE(648), 1, - sym_range_constraint, - ACTIONS(2220), 15, + ACTIONS(2214), 18, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_chunk_specification_token1, + anon_sym_RBRACK, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - aux_sym_expression_token1, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, aux_sym_expression_token3, + aux_sym_expression_token4, anon_sym_PIPE, - anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32896] = 11, + [32688] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2222), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2226), 1, - anon_sym_LPAREN, - STATE(489), 1, - sym__subtype_indication_paren_constraint, - STATE(652), 1, - sym_subpool_specification, - STATE(753), 1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + STATE(734), 1, sym_null_exclusion, - STATE(1910), 1, + STATE(1475), 1, + sym__subtype_indication, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2224), 3, + STATE(1477), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(261), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32937] = 11, + [32730] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2228), 1, + ACTIONS(2068), 1, sym_identifier, - STATE(661), 1, - sym_non_empty_mode, - STATE(754), 1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + STATE(734), 1, sym_null_exclusion, - STATE(1910), 1, + STATE(1314), 1, + sym__subtype_indication, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2230), 3, + STATE(1108), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(823), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [32978] = 10, + [32772] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2216), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2220), 1, aux_sym_package_specification_token3, - ACTIONS(2238), 1, + ACTIONS(2222), 1, aux_sym_at_clause_token1, STATE(651), 1, sym_mod_clause, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - STATE(628), 2, + STATE(650), 2, sym_component_clause, aux_sym_record_representation_clause_repeat1, - ACTIONS(2234), 3, + ACTIONS(2218), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1006), 6, + STATE(964), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33017] = 11, + [32811] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2084), 1, + ACTIONS(2068), 1, sym_identifier, - ACTIONS(2090), 1, - aux_sym_exception_declaration_token1, - STATE(698), 1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + STATE(734), 1, sym_null_exclusion, - STATE(1739), 1, + STATE(1072), 1, sym_access_definition, - STATE(1910), 1, + STATE(1074), 1, + sym__subtype_indication, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2086), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1011), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33058] = 4, + [32852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_chunk_specification_token1, + ACTIONS(257), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2224), 1, + sym_identifier, + STATE(671), 1, + sym_non_empty_mode, + STATE(783), 1, + sym_null_exclusion, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2226), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(824), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32893] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2080), 1, + sym_identifier, + ACTIONS(2086), 1, + aux_sym_exception_declaration_token1, + STATE(737), 1, + sym_null_exclusion, + STATE(1738), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2082), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(969), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - STATE(646), 1, + STATE(657), 1, sym_range_constraint, - ACTIONS(2240), 15, + ACTIONS(2228), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -42806,388 +42698,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33085] = 10, + [32961] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2242), 1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2230), 1, sym_identifier, - ACTIONS(2246), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1302), 1, - sym_exception_choice, - STATE(1816), 1, - sym_choice_parameter_specification, - STATE(1819), 1, - sym_exception_choice_list, - STATE(1910), 1, + ACTIONS(2234), 1, + anon_sym_LPAREN, + STATE(485), 1, + sym__subtype_indication_paren_constraint, + STATE(653), 1, + sym_subpool_specification, + STATE(773), 1, + sym_null_exclusion, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2244), 3, + ACTIONS(2232), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(931), 6, + STATE(263), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33123] = 11, + [33002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, + aux_sym_range_attribute_designator_token1, + STATE(641), 1, + sym_range_constraint, + ACTIONS(2236), 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, + [33029] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2242), 1, + aux_sym_positional_array_aggregate_token1, + STATE(1260), 1, + sym_exception_choice, + STATE(1817), 1, + sym_choice_parameter_specification, + STATE(1818), 1, + sym_exception_choice_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(938), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33067] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2244), 1, + sym_identifier, + STATE(689), 1, + sym_null_exclusion, + STATE(822), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2246), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(673), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33105] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2248), 1, + sym_identifier, + STATE(731), 1, + sym_null_exclusion, + STATE(1112), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2250), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(887), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33143] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2204), 1, + sym_identifier, + ACTIONS(2252), 1, + aux_sym_private_type_declaration_token1, + STATE(1168), 1, + sym_subprogram_default, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2212), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2206), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(940), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2080), 1, + sym_identifier, + STATE(737), 1, + sym_null_exclusion, + STATE(1738), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2082), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(969), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33217] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, aux_sym_relation_membership_token1, ACTIONS(53), 1, aux_sym_global_mode_token1, - ACTIONS(1934), 1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2248), 1, + ACTIONS(2254), 1, aux_sym_package_specification_token1, - ACTIONS(2250), 1, + ACTIONS(2256), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2252), 1, + ACTIONS(2258), 1, aux_sym_interface_type_definition_token1, - STATE(1036), 1, + STATE(1034), 1, sym_overriding_indicator, - STATE(1170), 3, + STATE(1240), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(472), 5, + STATE(468), 5, sym__proper_body, sym_subprogram_body, sym_package_body, sym_task_body, sym_protected_body, - [33163] = 10, + [33257] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2254), 1, - sym_identifier, - ACTIONS(2258), 1, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2072), 1, + aux_sym_attribute_designator_token1, ACTIONS(2260), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2262), 1, - aux_sym_access_to_subprogram_definition_token3, + sym_identifier, + STATE(692), 1, + sym_null_exclusion, + STATE(976), 1, + sym_access_definition, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2262), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33295] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, ACTIONS(2264), 1, - aux_sym_general_access_modifier_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2256), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(670), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33201] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2210), 1, sym_identifier, - ACTIONS(2266), 1, - aux_sym_private_type_declaration_token1, - STATE(1204), 1, - sym_subprogram_default, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2218), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2212), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(939), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33237] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, ACTIONS(2268), 1, - sym_identifier, - STATE(703), 1, - sym_null_exclusion, - STATE(824), 1, - sym_access_definition, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2270), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(671), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33275] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2084), 1, - sym_identifier, - STATE(698), 1, - sym_null_exclusion, - STATE(1739), 1, - sym_access_definition, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2086), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1011), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33313] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2278), 1, + ACTIONS(2270), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2280), 1, + ACTIONS(2272), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2282), 1, + ACTIONS(2274), 1, aux_sym_general_access_modifier_token1, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2274), 3, + ACTIONS(2266), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(659), 6, + STATE(660), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33351] = 10, + [33333] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, + ACTIONS(2276), 1, + sym_identifier, + ACTIONS(2280), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2282), 1, + aux_sym_access_to_subprogram_definition_token2, ACTIONS(2284), 1, - sym_identifier, - STATE(738), 1, - sym_null_exclusion, - STATE(979), 1, - sym_access_definition, - STATE(1910), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2286), 1, + aux_sym_general_access_modifier_token1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2286), 3, + ACTIONS(2278), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(838), 6, + STATE(662), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33389] = 10, + [33371] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2076), 1, - aux_sym_attribute_designator_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1129), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33406] = 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(2288), 1, + aux_sym_allocator_token1, + STATE(1584), 1, + sym_task_definition, + STATE(1586), 1, + sym_overriding_indicator, + STATE(635), 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, + [33441] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2216), 1, sym_identifier, - STATE(713), 1, - sym_null_exclusion, - STATE(1113), 1, - sym_access_definition, - STATE(1910), 1, + ACTIONS(2290), 1, + aux_sym_package_specification_token3, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2290), 3, + STATE(629), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2218), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(870), 6, + STATE(964), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33427] = 9, + [33474] = 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(2292), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2294), 1, - aux_sym_package_specification_token3, - STATE(1587), 1, - sym_overriding_indicator, - STATE(639), 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, - [33462] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2232), 1, sym_identifier, - ACTIONS(2296), 1, - aux_sym_package_specification_token3, - STATE(1910), 1, - sym_value_sequence, - STATE(635), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2234), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1006), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33495] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1136), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33530] = 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(2298), 1, - aux_sym_allocator_token1, - STATE(1500), 1, - sym_task_definition, - STATE(1587), 1, - sym_overriding_indicator, - STATE(627), 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, - [33565] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1465), 1, - sym__subtype_indication, - STATE(1910), 1, + ACTIONS(2301), 1, + aux_sym_package_specification_token3, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + STATE(629), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2295), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(964), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33600] = 9, + [33507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2303), 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, + [33528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2305), 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, + [33549] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1460), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33584] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43198,13 +43180,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2300), 1, + ACTIONS(2307), 1, aux_sym_allocator_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1815), 1, + STATE(1499), 1, sym_task_definition, - STATE(627), 8, + STATE(1586), 1, + sym_overriding_indicator, + STATE(635), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -43213,7 +43195,33 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [33635] = 9, + [33619] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1147), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33654] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43224,166 +43232,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2302), 1, - aux_sym_allocator_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1935), 1, - sym_task_definition, - STATE(627), 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, - [33670] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2232), 1, - sym_identifier, - ACTIONS(2304), 1, - aux_sym_package_specification_token3, - STATE(1910), 1, - sym_value_sequence, - STATE(635), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2234), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1006), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33703] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - sym_identifier, - ACTIONS(2312), 1, - anon_sym_LBRACK, - ACTIONS(2315), 1, - aux_sym_package_specification_token3, - STATE(1910), 1, - sym_value_sequence, - STATE(635), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2309), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1006), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33736] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2317), 1, - sym_identifier, - ACTIONS(2321), 1, - aux_sym_use_clause_token1, - ACTIONS(2323), 1, - aux_sym_use_clause_token2, - STATE(1876), 1, - sym__name_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2319), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33771] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1252), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33806] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1130), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33841] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2330), 1, - aux_sym_relation_membership_token1, - ACTIONS(2333), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2336), 1, - aux_sym_global_mode_token1, - STATE(1587), 1, - sym_overriding_indicator, - ACTIONS(2328), 2, + ACTIONS(2309), 1, aux_sym_compilation_unit_token1, + ACTIONS(2311), 1, aux_sym_package_specification_token3, - STATE(639), 8, + STATE(1586), 1, + sym_overriding_indicator, + STATE(645), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -43392,26 +43247,52 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [33874] = 10, + [33689] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1100), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33724] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1930), 1, + ACTIONS(1926), 1, sym_identifier, - ACTIONS(2339), 1, + ACTIONS(2313), 1, aux_sym_primary_null_token1, - ACTIONS(2341), 1, + ACTIONS(2315), 1, aux_sym_case_expression_token1, - STATE(702), 1, + STATE(725), 1, aux_sym_component_list_repeat1, - STATE(1341), 1, + STATE(1422), 1, sym_variant_part, - STATE(1417), 1, - sym_component_list, - STATE(1784), 1, + STATE(1783), 1, sym__defining_identifier_list, - STATE(942), 7, + STATE(1784), 1, + sym_component_list, + STATE(928), 7, sym__component_item, sym_component_declaration, sym__aspect_clause, @@ -43419,111 +43300,104 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_definition_clause, sym_enumeration_representation_clause, sym_record_representation_clause, - [33911] = 9, + [33761] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1200), 1, + STATE(1133), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33946] = 9, + [33796] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1065), 1, + STATE(1130), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33981] = 9, + [33831] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1422), 1, + STATE(1421), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34016] = 9, + [33866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1061), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34051] = 9, + ACTIONS(2317), 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, + [33887] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43534,13 +43408,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2343), 1, + ACTIONS(2319), 1, aux_sym_allocator_token1, - STATE(1585), 1, - sym_task_definition, - STATE(1587), 1, + STATE(1586), 1, sym_overriding_indicator, - STATE(627), 8, + STATE(1671), 1, + sym_task_definition, + STATE(635), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -43549,10 +43423,10 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34086] = 2, + [33922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2345), 15, + ACTIONS(2321), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -43568,115 +43442,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34107] = 9, + [33943] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2246), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(2347), 1, - sym_identifier, - STATE(1302), 1, - sym_exception_choice, - STATE(1521), 1, - sym_exception_choice_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2244), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(931), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 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, - [34163] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2072), 1, + ACTIONS(2068), 1, sym_identifier, - STATE(757), 1, + STATE(756), 1, sym_null_exclusion, - STATE(1106), 1, + STATE(1065), 1, sym__subtype_indication, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2074), 3, + ACTIONS(2070), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 6, + STATE(567), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34198] = 2, + [33978] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 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, - [34219] = 8, + ACTIONS(2323), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2328), 1, + aux_sym_relation_membership_token1, + ACTIONS(2331), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2334), 1, + aux_sym_global_mode_token1, + STATE(1586), 1, + sym_overriding_indicator, + ACTIONS(2326), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(645), 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, + [34011] = 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(2337), 1, + aux_sym_allocator_token1, + STATE(1586), 1, + sym_overriding_indicator, + STATE(1815), 1, + sym_task_definition, + STATE(635), 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, + [34046] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2242), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2296), 1, - aux_sym_package_specification_token3, - STATE(1910), 1, + STATE(1260), 1, + sym_exception_choice, + STATE(1520), 1, + sym_exception_choice_list, + STATE(1909), 1, sym_value_sequence, - STATE(634), 2, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(938), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34081] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1055), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34116] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1251), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34151] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2216), 1, + sym_identifier, + ACTIONS(2341), 1, + aux_sym_package_specification_token3, + STATE(1909), 1, + sym_value_sequence, + STATE(629), 2, sym_component_clause, aux_sym_record_representation_clause_repeat1, - ACTIONS(2234), 3, + ACTIONS(2218), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1006), 6, + STATE(964), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34184] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2216), 1, + sym_identifier, + ACTIONS(2341), 1, + aux_sym_package_specification_token3, + STATE(1909), 1, + sym_value_sequence, + STATE(628), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2218), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(964), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34217] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + sym_identifier, + ACTIONS(2347), 1, + aux_sym_use_clause_token1, + ACTIONS(2349), 1, + aux_sym_use_clause_token2, + STATE(1875), 1, + sym__name_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2345), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 6, sym__name, sym_selected_component, sym__attribute_reference, @@ -43688,28 +43678,107 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2222), 1, + ACTIONS(2230), 1, sym_identifier, - STATE(493), 1, + STATE(486), 1, sym__subtype_indication_paren_constraint, - STATE(753), 1, + STATE(773), 1, sym_null_exclusion, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2224), 3, + ACTIONS(2232), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(261), 6, + STATE(263), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34287] = 2, + [34287] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2068), 1, + sym_identifier, + STATE(756), 1, + sym_null_exclusion, + STATE(1374), 1, + sym__subtype_indication, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2070), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(567), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34322] = 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(2351), 1, + aux_sym_allocator_token1, + STATE(1586), 1, + sym_overriding_indicator, + STATE(1934), 1, + sym_task_definition, + STATE(635), 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, + [34357] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1926), 1, + sym_identifier, + ACTIONS(2313), 1, + aux_sym_primary_null_token1, + ACTIONS(2315), 1, + aux_sym_case_expression_token1, + STATE(725), 1, + aux_sym_component_list_repeat1, + STATE(1390), 1, + sym_component_list, + STATE(1422), 1, + sym_variant_part, + STATE(1783), 1, + sym__defining_identifier_list, + STATE(928), 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, + [34394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2353), 15, @@ -43728,140 +43797,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34308] = 9, + [34415] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1378), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 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, - [34364] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2072), 1, - sym_identifier, - STATE(757), 1, - sym_null_exclusion, - STATE(1101), 1, - sym__subtype_indication, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2074), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34399] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1930), 1, - sym_identifier, + ACTIONS(2242), 1, + aux_sym_positional_array_aggregate_token1, ACTIONS(2339), 1, - aux_sym_primary_null_token1, - ACTIONS(2341), 1, - aux_sym_case_expression_token1, - STATE(702), 1, - aux_sym_component_list_repeat1, - STATE(1341), 1, - sym_variant_part, - STATE(1784), 1, - sym__defining_identifier_list, - STATE(1785), 1, - sym_component_list, - STATE(942), 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, - [34436] = 9, + sym_identifier, + STATE(1437), 1, + sym_exception_choice, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2240), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(938), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2357), 1, - aux_sym_allocator_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1674), 1, - sym_task_definition, - STATE(627), 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, - [34471] = 6, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + STATE(1880), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + ACTIONS(2357), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(992), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, ACTIONS(2359), 10, anon_sym_RPAREN, @@ -43874,16 +43866,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [34499] = 6, + [34505] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + aux_sym_relation_membership_token1, + ACTIONS(2224), 1, + sym_identifier, + STATE(783), 1, + sym_null_exclusion, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2226), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(824), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, ACTIONS(2361), 10, anon_sym_RPAREN, @@ -43896,79 +43912,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [34527] = 8, + [34565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, - aux_sym_relation_membership_token1, - ACTIONS(2363), 1, - sym_identifier, - STATE(780), 1, - sym_null_exclusion, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2365), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(819), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34559] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2367), 1, - sym_identifier, - ACTIONS(2371), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2373), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(2363), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(940), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34591] = 8, + 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, + [34593] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2246), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(2347), 1, + ACTIONS(2365), 1, sym_identifier, - STATE(1438), 1, - sym_exception_choice, - STATE(1910), 1, + ACTIONS(2369), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2371), 1, + anon_sym_SEMI, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2244), 3, + ACTIONS(2367), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(931), 6, + STATE(930), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34623] = 8, + [34625] = 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(1586), 1, + sym_overriding_indicator, + STATE(1792), 1, + sym_task_definition, + STATE(635), 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, + [34657] = 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(1586), 1, + sym_overriding_indicator, + STATE(1857), 1, + sym_task_definition, + STATE(635), 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, + [34689] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(2373), 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, + [34717] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -43981,9 +44041,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token1, ACTIONS(2375), 1, aux_sym_package_specification_token3, - STATE(1587), 1, + STATE(1586), 1, sym_overriding_indicator, - STATE(639), 8, + STATE(645), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -43992,7 +44052,7 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34655] = 8, + [34749] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44003,11 +44063,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1587), 1, + STATE(1586), 1, sym_overriding_indicator, - STATE(1793), 1, + STATE(1678), 1, sym_task_definition, - STATE(627), 8, + STATE(635), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44016,7 +44076,7 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34687] = 8, + [34781] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44027,11 +44087,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1493), 1, - sym_task_definition, - STATE(1587), 1, + STATE(1586), 1, sym_overriding_indicator, - STATE(627), 8, + STATE(1679), 1, + sym_task_definition, + STATE(635), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44040,31 +44100,31 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34719] = 8, + [34813] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1773), 1, aux_sym_relation_membership_token1, - ACTIONS(2228), 1, + ACTIONS(2377), 1, sym_identifier, - STATE(754), 1, + STATE(747), 1, sym_null_exclusion, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2230), 3, + ACTIONS(2379), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(823), 6, + STATE(817), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34751] = 8, + [34845] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44075,11 +44135,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1679), 1, + STATE(1492), 1, sym_task_definition, - STATE(627), 8, + STATE(1586), 1, + sym_overriding_indicator, + STATE(635), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44088,84 +44148,16 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34783] = 8, + [34877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1680), 1, - sym_task_definition, - STATE(627), 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, - [34815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(2377), 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, - [34843] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(2379), 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, - [34871] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, ACTIONS(2381), 10, anon_sym_RPAREN, @@ -44178,7 +44170,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [34899] = 8, + [34905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2385), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2383), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(978), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34932] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1834), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1611), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1496), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35013] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44189,11 +44265,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1587), 1, + STATE(1586), 1, sym_overriding_indicator, - STATE(1858), 1, - sym_task_definition, - STATE(627), 8, + STATE(668), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44202,547 +44276,461 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [34931] = 7, + [35042] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2383), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - STATE(1881), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - ACTIONS(2385), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(989), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34961] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - sym_identifier, ACTIONS(2391), 1, - aux_sym_package_body_token1, - STATE(1910), 1, + anon_sym_SEMI, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2389), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(877), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34990] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1397), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2389), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(1001), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1800), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35044] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - sym_identifier, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2397), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35073] = 6, + [35069] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1681), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35100] = 6, + [35096] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1735), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1377), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35154] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(2173), 1, - anon_sym_LBRACK, - STATE(1270), 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, - [35177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1736), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35204] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1499), 1, + STATE(1725), 1, sym__name_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2319), 4, + ACTIONS(2345), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(900), 6, + STATE(913), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35231] = 6, + [35123] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2393), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(965), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35150] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2262), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35179] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + sym_identifier, ACTIONS(2403), 1, - anon_sym_SEMI, - STATE(1910), 1, + aux_sym_package_body_token1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2401), 4, - sym_identifier, + ACTIONS(2401), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(966), 6, + STATE(884), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35258] = 6, + [35208] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2407), 1, - anon_sym_SEMI, - STATE(1910), 1, + STATE(1847), 1, + sym_reduction_specification, + STATE(1909), 1, sym_value_sequence, ACTIONS(2405), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1047), 6, + STATE(1031), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35285] = 6, + [35235] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1497), 1, + STATE(1498), 1, + sym__name_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2345), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35262] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2407), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1007), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35289] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1799), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35312] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1726), 1, - sym__name_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2319), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35339] = 6, + [35316] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, ACTIONS(2411), 1, - anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2409), 4, sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2413), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(974), 6, + STATE(667), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - anon_sym_LPAREN, - ACTIONS(2173), 1, - anon_sym_LBRACK, - STATE(1216), 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, - [35389] = 6, + [35345] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1349), 1, + STATE(1869), 1, sym__name_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2413), 4, + ACTIONS(2345), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(921), 6, + STATE(913), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35416] = 6, + [35372] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_SEMI, - STATE(1910), 1, + STATE(1676), 1, + sym__interface_list, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2415), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(963), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35443] = 6, + [35399] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2415), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2417), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(827), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35428] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(2421), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, ACTIONS(2419), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(941), 6, + STATE(950), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35470] = 6, + [35455] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2423), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1858), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1860), 10, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + [35478] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, + STATE(1494), 1, + sym__name_list, + STATE(1909), 1, sym_value_sequence, - STATE(1938), 1, + ACTIONS(2345), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35505] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1368), 1, sym__interface_list, - ACTIONS(2393), 4, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35497] = 6, + [35532] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1842), 1, + ACTIONS(2427), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2425), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1010), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35559] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1841), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35524] = 6, + [35586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1848), 1, - sym_reduction_specification, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2423), 4, + ACTIONS(2429), 2, sym_identifier, + anon_sym_DASH, + ACTIONS(2431), 11, sym_string_literal, sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, sym_target_name, - STATE(1032), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1152), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35578] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2425), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2427), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1046), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, [35607] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_SEMI, - STATE(1910), 1, + STATE(1438), 1, + sym__interface_list, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2429), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(968), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, @@ -44754,16 +44742,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1364), 1, - sym_index_subtype_definition, - STATE(1910), 1, + ACTIONS(2435), 1, + anon_sym_SEMI, + STATE(1909), 1, sym_value_sequence, ACTIONS(2433), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(962), 6, + STATE(1014), 6, sym__name, sym_selected_component, sym__attribute_reference, @@ -44775,16 +44763,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2435), 4, + STATE(1937), 1, + sym__interface_list, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1003), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, @@ -44792,77 +44780,158 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_qualified_expression, [35688] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1930), 1, - sym_identifier, - STATE(1784), 1, - sym__defining_identifier_list, - ACTIONS(2439), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(726), 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, - [35715] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2441), 1, - sym_identifier, - STATE(1910), 1, + ACTIONS(2439), 1, + anon_sym_SEMI, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2443), 3, + ACTIONS(2437), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(660), 6, + STATE(968), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35744] = 6, + [35715] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1685), 1, + STATE(1761), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35771] = 6, + [35742] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1695), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35769] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1472), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + STATE(1195), 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, + [35819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2443), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2441), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(977), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35846] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1733), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35873] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(2447), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, ACTIONS(2445), 4, sym_identifier, @@ -44876,310 +44945,271 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35798] = 6, + [35900] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1696), 1, + STATE(1734), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35825] = 6, + [35927] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1334), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35954] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(2451), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, ACTIONS(2449), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1000), 6, + STATE(960), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35852] = 6, + [35981] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1762), 1, + STATE(1635), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35879] = 6, + [36008] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2455), 1, - anon_sym_SEMI, - STATE(1910), 1, + STATE(1376), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1363), 1, + sym_index_subtype_definition, + STATE(1909), 1, sym_value_sequence, ACTIONS(2453), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1014), 6, + STATE(991), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35906] = 6, + [36062] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1913), 1, + aux_sym_iterator_filter_token1, + ACTIONS(1915), 1, + aux_sym_terminate_alternative_token1, + STATE(28), 1, + sym_accept_statement, + STATE(807), 1, + sym_guard, + STATE(1278), 1, + sym_select_alternative, + STATE(29), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1239), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [36097] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2459), 1, + ACTIONS(2224), 1, + sym_identifier, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2226), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(824), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2457), 4, + ACTIONS(2455), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(994), 6, + STATE(993), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35933] = 6, + [36153] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1864), 1, + STATE(1649), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35960] = 6, + [36180] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1388), 1, + STATE(1863), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35987] = 7, + [36207] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2461), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2463), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(879), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36016] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1835), 1, + STATE(1162), 1, sym__interface_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2387), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(837), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36043] = 6, + [36234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1358), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2459), 1, sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36070] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1636), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36097] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1380), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym__name_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2319), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2228), 1, - sym_identifier, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2230), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(823), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36180] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2469), 1, + ACTIONS(2463), 1, aux_sym_non_empty_mode_token1, - ACTIONS(2467), 11, + ACTIONS(2461), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -45191,122 +45221,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [36203] = 6, + [36257] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1870), 1, - sym__name_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2319), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2471), 1, - aux_sym_chunk_specification_token1, - ACTIONS(1862), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1864), 10, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - [36253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1235), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36280] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(2467), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2473), 4, + ACTIONS(2465), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(961), 6, + STATE(987), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36307] = 6, + [36284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1411), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36334] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2477), 1, - sym_identifier, - ACTIONS(2480), 1, + ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1784), 1, + ACTIONS(1926), 1, + sym_identifier, + STATE(1783), 1, sym__defining_identifier_list, - ACTIONS(2483), 2, + ACTIONS(2469), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - STATE(726), 8, + STATE(738), 8, sym__component_item, sym_component_declaration, sym__aspect_clause, @@ -45315,439 +45263,101 @@ static const uint16_t ts_small_parse_table[] = { sym_enumeration_representation_clause, sym_record_representation_clause, aux_sym_component_list_repeat1, - [36361] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1913), 1, - aux_sym_iterator_filter_token1, - ACTIONS(1915), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(813), 1, - sym_guard, - STATE(1279), 1, - sym_select_alternative, - STATE(28), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1197), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [36396] = 6, + [36311] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1650), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, + ACTIONS(2471), 1, sym_identifier, + ACTIONS(2475), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2473), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 6, + STATE(834), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36423] = 6, + [36340] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1682), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36450] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - sym_identifier, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2286), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(838), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36479] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2479), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2477), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(981), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36367] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2481), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36394] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1346), 1, + sym__name_list, + STATE(1909), 1, sym_value_sequence, ACTIONS(2485), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1010), 6, + STATE(891), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36506] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(664), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2489), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2491), 11, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - anon_sym_PLUS, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [36556] = 6, + [36421] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2495), 1, - anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2493), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1021), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36583] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1495), 1, + STATE(1713), 1, sym__name_list, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2319), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36610] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2499), 1, - anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2497), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1022), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36637] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2503), 1, - anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2501), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1008), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36664] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2505), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2507), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1714), 1, - sym__name_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2319), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2511), 1, - anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2509), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1013), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1518), 1, - sym__interface_list, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36774] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2517), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2515), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36803] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2519), 1, - sym_identifier, - ACTIONS(2523), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(839), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36832] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2527), 1, - anon_sym_SEMI, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2525), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1012), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2533), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2531), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(835), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36888] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2535), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(832), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2537), 4, + ACTIONS(2345), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45759,10 +45369,1292 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36936] = 2, + [36448] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 12, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2487), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2489), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(859), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36477] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2491), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1046), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1220), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2495), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2497), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36560] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1410), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1722), 1, + sym__name_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2345), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36614] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2499), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2501), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1028), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + sym_identifier, + ACTIONS(2506), 1, + aux_sym_iterated_element_association_token1, + STATE(1783), 1, + sym__defining_identifier_list, + ACTIONS(2509), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(738), 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, + [36670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2513), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2511), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(989), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36697] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1517), 1, + sym__interface_list, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2387), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36724] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2515), 1, + sym_identifier, + ACTIONS(2519), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2517), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(838), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36753] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2525), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2523), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(835), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2529), 1, + anon_sym_SEMI, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2527), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(994), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + STATE(1215), 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, + [36832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2531), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(840), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2533), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(903), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2535), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(819), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2537), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(547), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2539), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(861), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2541), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(843), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2543), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(895), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2545), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1025), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2547), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1015), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2549), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1020), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + STATE(818), 1, + sym_formal_part, + ACTIONS(2553), 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, + [37094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2497), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2555), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(970), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2557), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(902), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2559), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(910), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2561), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(849), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2563), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(959), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2565), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(833), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2567), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(867), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37286] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2569), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(911), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2571), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(917), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym_formal_part, + ACTIONS(2573), 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, + [37356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2575), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(932), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2577), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(995), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2278), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(662), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2579), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(906), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2581), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1012), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2583), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2585), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(260), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2587), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(889), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2589), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(905), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2591), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2357), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(992), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2593), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(909), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2595), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(883), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2597), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1038), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2401), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(884), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym_identifier, + ACTIONS(2601), 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, + [37714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + STATE(821), 1, + sym_formal_part, + ACTIONS(2603), 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, + [37736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2379), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(817), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2605), 1, + sym_identifier, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2571), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(917), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2607), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(916), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2609), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(894), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37834] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2611), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(839), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2613), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(901), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2615), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1032), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37906] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2617), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1013), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2619), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(826), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37954] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2621), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(893), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2623), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(907), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38002] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2625), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(663), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2627), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(921), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38050] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1909), 1, + sym_value_sequence, + ACTIONS(2629), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(828), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -45775,546 +46667,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [36954] = 5, + [38092] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2541), 4, + ACTIONS(2633), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(905), 6, + STATE(830), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36978] = 5, + [38116] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2543), 4, + ACTIONS(2635), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(865), 6, + STATE(874), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37002] = 5, + [38140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2545), 4, + ACTIONS(2459), 1, sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1029), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37026] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2547), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(964), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2549), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(262), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37074] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2365), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(819), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37098] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2389), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(877), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2551), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(831), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2397), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2553), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(991), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37194] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2555), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(904), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2385), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(989), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37244] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2559), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1035), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2561), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(871), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37292] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2563), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(895), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2565), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(898), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37340] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2567), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(899), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2569), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(912), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37388] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2571), 1, - sym_identifier, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2569), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(912), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37414] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2573), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(828), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2575), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(907), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37462] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2577), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(919), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2579), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(836), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37510] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2581), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2583), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(672), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37558] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2585), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(922), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37582] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2587), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37606] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2589), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(916), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 11, + ACTIONS(2461), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -46326,107 +46722,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [37650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2591), 1, - sym_identifier, - ACTIONS(2593), 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, - [37670] = 5, + [38160] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2595), 4, + ACTIONS(2637), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(911), 6, + STATE(829), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37694] = 5, + [38184] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2597), 4, + ACTIONS(2639), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(818), 6, + STATE(920), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37718] = 5, + [38208] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, - ACTIONS(2599), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(975), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37742] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2601), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(906), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2603), 4, + ACTIONS(2641), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46438,427 +46779,110 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37790] = 5, + [38232] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2605), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(973), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - STATE(826), 1, - sym_formal_part, - ACTIONS(2609), 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, - [37836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2611), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(980), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2613), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(843), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37884] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2615), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(894), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37908] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2617), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(893), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - STATE(820), 1, - sym_formal_part, - ACTIONS(2619), 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, - [37954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2621), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(977), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2623), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1028), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38002] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2625), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(896), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38026] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2627), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(917), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2629), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(902), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38074] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2631), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38098] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2633), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(827), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2635), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(834), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2637), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(845), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2639), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(903), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38194] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2274), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(659), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2641), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(860), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38242] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, + STATE(1909), 1, sym_value_sequence, ACTIONS(2643), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(960), 6, + STATE(890), 6, sym__name, sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38266] = 5, + [38256] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1910), 1, - sym_value_sequence, - ACTIONS(2645), 4, + ACTIONS(2645), 1, sym_identifier, + ACTIONS(2647), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2649), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2651), 1, + aux_sym_interface_type_definition_token1, + STATE(1568), 1, + sym__defining_identifier_list, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(813), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [38285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2655), 10, sym_string_literal, sym_character_literal, + sym_numeric_literal, sym_target_name, - STATE(552), 6, - sym__name, - sym_selected_component, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, anon_sym_LPAREN, - STATE(822), 1, - sym_formal_part, - ACTIONS(2647), 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, - [38312] = 3, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38304] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1915), 1, + aux_sym_terminate_alternative_token1, + STATE(28), 1, + sym_accept_statement, + STATE(1317), 1, + sym_select_alternative, + STATE(29), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1239), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [38333] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1915), 1, + aux_sym_terminate_alternative_token1, + STATE(28), 1, + sym_accept_statement, + STATE(1084), 1, + sym_select_alternative, + STATE(29), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1239), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [38362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 1, sym_identifier, - ACTIONS(2651), 10, + ACTIONS(2659), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -46869,49 +46893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [38331] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2657), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2659), 1, - aux_sym_interface_type_definition_token1, - STATE(1569), 1, - sym__defining_identifier_list, - STATE(327), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(810), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [38360] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1915), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(1088), 1, - sym_select_alternative, - STATE(28), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1197), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38389] = 3, + [38381] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2661), 1, @@ -46927,33 +46909,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [38408] = 8, + [38400] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2665), 1, sym_identifier, - ACTIONS(2668), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2670), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2673), 1, - aux_sym_interface_type_definition_token1, - STATE(1569), 1, - sym__defining_identifier_list, - STATE(327), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(810), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [38437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 1, - sym_identifier, - ACTIONS(2678), 10, + ACTIONS(2667), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -46964,70 +46925,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [38456] = 3, + [38419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(2669), 1, sym_identifier, - ACTIONS(2682), 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, - [38475] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1915), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(1203), 1, - sym_select_alternative, - STATE(28), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1197), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38504] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2657), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2659), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2684), 1, - aux_sym_subprogram_body_token1, - STATE(1569), 1, - sym__defining_identifier_list, - STATE(327), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(807), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [38533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, - sym_identifier, - ACTIONS(2688), 10, + ACTIONS(2671), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -47038,12 +46941,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [38552] = 3, + [38438] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, + ACTIONS(2673), 1, sym_identifier, - ACTIONS(2692), 10, + ACTIONS(2676), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2678), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2681), 1, + aux_sym_interface_type_definition_token1, + STATE(1568), 1, + sym__defining_identifier_list, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(813), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [38467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym_identifier, + ACTIONS(2686), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -47054,12 +46978,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [38571] = 3, + [38486] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2645), 1, sym_identifier, - ACTIONS(2696), 9, + ACTIONS(2649), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2651), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2688), 1, + aux_sym_subprogram_body_token1, + STATE(1568), 1, + sym__defining_identifier_list, + STATE(426), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(805), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [38515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2690), 1, + sym_identifier, + ACTIONS(2692), 9, sym_string_literal, sym_character_literal, sym_target_name, @@ -47069,51 +47014,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [38589] = 10, + [38533] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1120), 1, + STATE(1091), 1, sym__assign_value, - STATE(1385), 1, + STATE(1423), 1, sym_aspect_specification, - ACTIONS(2698), 2, + ACTIONS(2694), 2, anon_sym_RPAREN, anon_sym_SEMI, - [38621] = 10, + [38565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, + ACTIONS(2573), 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, - STATE(217), 1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [38581] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(226), 1, sym_actual_parameter_part, - STATE(1092), 1, + STATE(1079), 1, sym__assign_value, - STATE(1338), 1, + STATE(1337), 1, sym_aspect_specification, - ACTIONS(2700), 2, + ACTIONS(2696), 2, anon_sym_RPAREN, anon_sym_SEMI, - [38653] = 2, + [38613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 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, + [38629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2698), 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, + [38645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2700), 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, + [38661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2702), 10, @@ -47127,438 +47128,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [38669] = 10, + [38677] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1055), 1, + STATE(1050), 1, sym__assign_value, - STATE(1456), 1, + STATE(1386), 1, sym_aspect_specification, ACTIONS(2704), 2, anon_sym_RPAREN, anon_sym_SEMI, - [38701] = 2, + [38709] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 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, - [38717] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1114), 1, + STATE(1059), 1, sym__assign_value, - STATE(1394), 1, + STATE(1455), 1, sym_aspect_specification, ACTIONS(2706), 2, anon_sym_RPAREN, anon_sym_SEMI, - [38749] = 2, + [38741] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 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, - [38765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 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, - [38781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2619), 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, - [38797] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2714), 1, + ACTIONS(2710), 1, aux_sym_iterator_filter_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1331), 1, + STATE(1330), 1, sym_iterator_filter, - ACTIONS(2712), 3, + ACTIONS(2708), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [38824] = 8, + [38768] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2716), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, - aux_sym_package_specification_token2, - STATE(217), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2712), 1, + anon_sym_SEMI, + STATE(226), 1, sym_actual_parameter_part, - STATE(1118), 1, + STATE(1248), 1, + sym__assign_value, + STATE(1537), 1, + sym_aspect_specification, + [38799] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2710), 1, + aux_sym_iterator_filter_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1328), 1, + sym_iterator_filter, + ACTIONS(2708), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38826] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + aux_sym_package_specification_token2, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1404), 1, sym_formal_part, - ACTIONS(2718), 3, + STATE(1073), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [38855] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2722), 1, + aux_sym_package_specification_token2, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1076), 1, + sym_formal_part, + ACTIONS(2720), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [38851] = 8, + [38882] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(2725), 1, - aux_sym_expression_token1, - STATE(217), 1, + anon_sym_SEMI, + STATE(226), 1, sym_actual_parameter_part, - STATE(1007), 1, + STATE(1289), 1, + sym__assign_value, + STATE(1623), 1, + sym_aspect_specification, + [38913] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2727), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1227), 1, + sym__assign_value, + STATE(1902), 1, + sym_aspect_specification, + [38944] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2710), 1, + aux_sym_iterator_filter_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1224), 1, + sym_iterator_filter, + ACTIONS(2729), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38971] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2710), 1, + aux_sym_iterator_filter_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1184), 1, + sym_iterator_filter, + ACTIONS(2731), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38998] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2710), 1, + aux_sym_iterator_filter_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1271), 1, + sym_iterator_filter, + ACTIONS(2733), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(2735), 1, + anon_sym_COLON, + ACTIONS(2738), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1252), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1860), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON_EQ, + [39048] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2742), 1, + aux_sym_expression_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(974), 1, aux_sym__interface_list_repeat1, - ACTIONS(2723), 3, + ACTIONS(2740), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [38878] = 6, + [39075] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, - anon_sym_COMMA, - ACTIONS(2727), 1, - anon_sym_COLON, - ACTIONS(2730), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1244), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1864), 5, + ACTIONS(905), 1, sym_tick, - anon_sym_DOT, + ACTIONS(941), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON_EQ, - [38901] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2716), 1, - anon_sym_LPAREN, - ACTIONS(2732), 1, - aux_sym_package_specification_token2, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1118), 1, - sym_formal_part, - ACTIONS(2718), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [38928] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2716), 1, - anon_sym_LPAREN, - ACTIONS(2735), 1, - aux_sym_package_specification_token2, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1412), 1, - sym_formal_part, - STATE(1117), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [38957] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2714), 1, + ACTIONS(2710), 1, aux_sym_iterator_filter_token1, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1281), 1, - sym_iterator_filter, - ACTIONS(2739), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [38984] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2714), 1, - aux_sym_iterator_filter_token1, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1329), 1, - sym_iterator_filter, - ACTIONS(2712), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39011] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2714), 1, - aux_sym_iterator_filter_token1, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1185), 1, - sym_iterator_filter, - ACTIONS(2741), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39038] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2716), 1, - anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - ACTIONS(2743), 1, - aux_sym_package_specification_token2, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1412), 1, - sym_formal_part, - STATE(1117), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39067] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2745), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1258), 1, - sym__assign_value, - STATE(1538), 1, - sym_aspect_specification, - [39098] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2747), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1290), 1, - sym__assign_value, - STATE(1626), 1, - sym_aspect_specification, - [39129] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2714), 1, - aux_sym_iterator_filter_token1, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1278), 1, - sym_iterator_filter, - ACTIONS(2739), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39156] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2749), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1314), 1, - sym__assign_value, - STATE(1903), 1, - sym_aspect_specification, - [39187] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2714), 1, - aux_sym_iterator_filter_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, STATE(1273), 1, sym_iterator_filter, - ACTIONS(2751), 3, + ACTIONS(2733), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [39214] = 7, + [39102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2716), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1118), 1, - sym_formal_part, - ACTIONS(2718), 3, - anon_sym_SEMI, + ACTIONS(2744), 1, aux_sym_package_specification_token2, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1076), 1, + sym_formal_part, + ACTIONS(2720), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - [39238] = 8, + aux_sym_object_renaming_declaration_token1, + [39129] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2755), 1, - aux_sym_with_clause_token2, - ACTIONS(2758), 1, - aux_sym_expression_token1, - STATE(217), 1, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + ACTIONS(2747), 1, + aux_sym_package_specification_token2, + STATE(226), 1, sym_actual_parameter_part, - ACTIONS(2753), 2, - anon_sym_SEMI, - aux_sym_expression_token3, + STATE(1404), 1, + sym_formal_part, + STATE(1073), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 1, + sym_identifier, + ACTIONS(2751), 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, + [39174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, + sym_identifier, + ACTIONS(2755), 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, + [39190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2714), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1404), 1, + sym_formal_part, + STATE(1073), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2757), 1, + sym_identifier, + ACTIONS(2759), 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, + [39232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 1, + sym_identifier, + ACTIONS(2763), 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, + [39248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2765), 1, + sym_identifier, + ACTIONS(2767), 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, [39264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, + ACTIONS(2769), 1, sym_identifier, - ACTIONS(2762), 7, + ACTIONS(2771), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47566,230 +47559,42 @@ 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, - [39280] = 8, + [39280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(2773), 1, + sym_identifier, + ACTIONS(2775), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39296] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2716), 1, + ACTIONS(2714), 1, anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1412), 1, + STATE(1076), 1, sym_formal_part, - STATE(1117), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, - sym_identifier, - ACTIONS(2766), 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, - [39322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2770), 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, - [39338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, - sym_identifier, - ACTIONS(2774), 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, - [39354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, - sym_identifier, - ACTIONS(2778), 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, - [39370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2780), 1, - sym_identifier, - ACTIONS(2782), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 1, - sym_identifier, - ACTIONS(2786), 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, - [39402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 1, - sym_identifier, - ACTIONS(2790), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2794), 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, - [39434] = 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_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39450] = 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, - [39466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym_identifier, - ACTIONS(2806), 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, - [39482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, - sym_identifier, - ACTIONS(2810), 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, - [39498] = 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, - [39514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 1, - sym_identifier, - ACTIONS(2818), 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, - [39530] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2822), 1, - aux_sym_with_clause_token2, - ACTIONS(2825), 1, - aux_sym_expression_token1, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(2820), 2, + ACTIONS(2720), 3, anon_sym_SEMI, - aux_sym_expression_token3, - [39556] = 3, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [39320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(2777), 1, sym_identifier, - ACTIONS(2829), 7, + ACTIONS(2779), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47797,12 +47602,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, - [39572] = 3, + [39336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2833), 7, + ACTIONS(2783), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47810,12 +47615,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, - [39588] = 3, + [39352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2837), 7, + ACTIONS(2787), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47823,12 +47628,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, - [39604] = 3, + [39368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 1, + ACTIONS(2789), 1, sym_identifier, - ACTIONS(2841), 7, + ACTIONS(2791), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47836,111 +47641,270 @@ 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, - [39620] = 6, + [39384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(2793), 1, + sym_identifier, + ACTIONS(2795), 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, + [39400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 1, + sym_identifier, + ACTIONS(2799), 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, + [39416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 1, + sym_identifier, + ACTIONS(2803), 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, + [39432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 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, + [39448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2809), 1, + sym_identifier, + ACTIONS(2811), 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, + [39464] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(2843), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - [39642] = 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, - [39658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2849), 1, - sym_identifier, - ACTIONS(2851), 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, - [39674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2853), 1, - sym_identifier, - ACTIONS(2855), 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, - [39690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - sym_identifier, - ACTIONS(2859), 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, - [39706] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1395), 1, + STATE(1339), 1, sym__assign_value, - ACTIONS(2861), 2, + ACTIONS(2813), 2, anon_sym_RPAREN, anon_sym_SEMI, - [39732] = 8, + [39490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2865), 1, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2817), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2868), 1, - aux_sym_expression_token1, - STATE(217), 1, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(226), 1, sym_actual_parameter_part, - ACTIONS(2863), 2, + ACTIONS(2819), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + [39528] = 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, + [39544] = 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, + [39560] = 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, + [39576] = 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, + [39592] = 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, + [39608] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2843), 1, + aux_sym_with_clause_token2, + ACTIONS(2846), 1, + aux_sym_expression_token1, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(2841), 2, anon_sym_SEMI, aux_sym_expression_token3, - [39758] = 3, + [39634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2848), 1, + sym_identifier, + ACTIONS(2850), 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, + [39650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2852), 1, + sym_identifier, + ACTIONS(2854), 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, + [39666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2856), 1, + sym_identifier, + ACTIONS(2858), 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, + [39682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, + anon_sym_LBRACK, + ACTIONS(2864), 1, + aux_sym_record_component_association_list_token1, + STATE(1495), 1, + sym_enumeration_aggregate, + STATE(1497), 4, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [39704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2866), 1, + sym_identifier, + ACTIONS(2868), 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, + [39720] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2870), 1, @@ -47953,83 +47917,171 @@ 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, - [39774] = 3, + [39736] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2876), 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, - [39790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 1, - sym_identifier, - ACTIONS(2880), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2884), 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, - [39822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2886), 1, - sym_identifier, - ACTIONS(2888), 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, - [39838] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2876), 1, aux_sym_with_clause_token2, - ACTIONS(2890), 1, + ACTIONS(2879), 1, + aux_sym_expression_token1, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(2874), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [39762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + sym_identifier, + ACTIONS(2883), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + sym_identifier, + ACTIONS(2887), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 1, + sym_identifier, + ACTIONS(2891), 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, + [39810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2893), 1, + sym_identifier, + ACTIONS(2895), 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, + [39826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2897), 1, + sym_identifier, + ACTIONS(2899), 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, + [39842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2901), 1, + sym_identifier, + ACTIONS(2903), 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, + [39858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + sym_identifier, + ACTIONS(2907), 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, + [39874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 1, + sym_identifier, + ACTIONS(2911), 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, + [39890] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2915), 1, + aux_sym_with_clause_token2, + ACTIONS(2918), 1, + aux_sym_expression_token1, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(2913), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [39916] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2920), 1, aux_sym_package_specification_token2, - ACTIONS(2892), 1, + ACTIONS(2922), 1, aux_sym_object_renaming_declaration_token1, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1718), 1, + STATE(1717), 1, sym_aspect_specification, - [39866] = 3, + [39944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2924), 1, sym_identifier, - ACTIONS(2896), 7, + ACTIONS(2926), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48037,132 +48089,38 @@ 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, - [39882] = 8, + [39960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(2928), 1, + sym_identifier, + ACTIONS(2930), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39976] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1334), 1, + STATE(1394), 1, sym__assign_value, - ACTIONS(2898), 2, + ACTIONS(2932), 2, anon_sym_RPAREN, anon_sym_SEMI, - [39908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2900), 1, - sym_identifier, - ACTIONS(2902), 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, - [39924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2904), 1, - sym_identifier, - ACTIONS(2906), 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, - [39940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2908), 1, - sym_identifier, - ACTIONS(2910), 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, - [39956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2912), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(2916), 1, - aux_sym_record_component_association_list_token1, - STATE(1496), 1, - sym_enumeration_aggregate, - STATE(1498), 4, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [39978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2918), 1, - sym_identifier, - ACTIONS(2920), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [39994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2924), 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, - [40010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2926), 1, - sym_identifier, - ACTIONS(2928), 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, - [40026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 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, - [40042] = 3, + [40002] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2934), 1, @@ -48175,7899 +48133,7886 @@ 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, - [40058] = 3, + [40018] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(2938), 1, - sym_identifier, - ACTIONS(2940), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 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, - [40087] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, anon_sym_SEMI, - ACTIONS(2948), 1, - aux_sym_package_specification_token2, - ACTIONS(2950), 1, - aux_sym_expression_token3, - STATE(1326), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [40108] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2952), 1, - anon_sym_LPAREN, - ACTIONS(2954), 1, - aux_sym_iterator_filter_token1, - STATE(1057), 1, - sym_non_empty_entry_body_formal_part, - STATE(1449), 1, - sym_aspect_specification, - STATE(1450), 1, - sym_formal_part, - STATE(1508), 1, - sym_entry_barrier, - [40133] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2956), 1, - anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1803), 1, + STATE(1514), 1, sym_aspect_specification, - [40158] = 8, + [40043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(2958), 1, + ACTIONS(2940), 1, anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1634), 1, + STATE(1689), 1, sym_aspect_specification, - [40183] = 8, + [40068] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2960), 1, - anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1635), 1, - sym_aspect_specification, - [40208] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2962), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1804), 1, - sym_aspect_specification, - [40233] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2964), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1807), 1, - sym_aspect_specification, - [40258] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2966), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1868), 1, - sym_aspect_specification, - [40283] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2968), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1749), 1, - sym_aspect_specification, - [40308] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_COMMA, - ACTIONS(2972), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1186), 1, + STATE(1140), 1, aux_sym__name_list_repeat1, - [40333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 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, - [40346] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_COMMA, - ACTIONS(2976), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1332), 1, - aux_sym__name_list_repeat1, - [40371] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2978), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1664), 1, - sym_aspect_specification, - [40396] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(2980), 3, + ACTIONS(2942), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [40417] = 8, + [40091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2982), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1770), 1, - sym_aspect_specification, - [40442] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2984), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1812), 1, - sym_aspect_specification, - [40467] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2986), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1515), 1, - sym_aspect_specification, - [40492] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2988), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2990), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2993), 1, - anon_sym_COLON, - ACTIONS(2995), 1, - aux_sym_iterator_specification_token1, - ACTIONS(1864), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [40513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, + ACTIONS(1930), 1, aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40526] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2999), 1, + ACTIONS(2944), 1, aux_sym_package_specification_token1, - STATE(1778), 1, + STATE(1777), 1, sym_package_specification, - STATE(1293), 3, + STATE(1194), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [40547] = 8, + [40112] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3001), 1, + ACTIONS(2946), 1, anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1581), 1, + STATE(1630), 1, sym_aspect_specification, - [40572] = 8, + [40137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3003), 1, - aux_sym_package_specification_token2, - STATE(217), 1, + ACTIONS(2948), 1, + anon_sym_SEMI, + STATE(226), 1, sym_actual_parameter_part, - STATE(1488), 1, + STATE(1633), 1, sym_aspect_specification, - [40597] = 8, + [40162] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3005), 1, + ACTIONS(2950), 1, anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - STATE(1690), 1, + STATE(1580), 1, sym_aspect_specification, - [40622] = 2, + [40187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 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, - [40635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40648] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + ACTIONS(2952), 1, sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3011), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1724), 1, - sym_aspect_specification, - [40673] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3013), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1806), 1, - sym_aspect_specification, - [40698] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(3015), 1, - anon_sym_SEMI, - STATE(1026), 1, - sym_actual_parameter_part, - STATE(1782), 1, - sym__assign_value, - [40723] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3017), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1565), 1, - sym_aspect_specification, - [40748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3019), 1, - sym_tick, - ACTIONS(1981), 6, + ACTIONS(1979), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [40763] = 7, + [40202] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - STATE(217), 1, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2954), 1, + anon_sym_SEMI, + STATE(226), 1, sym_actual_parameter_part, - STATE(1139), 1, + STATE(1802), 1, + sym_aspect_specification, + [40227] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2956), 1, + anon_sym_LPAREN, + ACTIONS(2958), 1, + aux_sym_iterator_filter_token1, + STATE(1056), 1, + sym_non_empty_entry_body_formal_part, + STATE(1448), 1, + sym_aspect_specification, + STATE(1449), 1, + sym_formal_part, + STATE(1507), 1, + sym_entry_barrier, + [40252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2960), 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, + [40265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 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, + [40278] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2964), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1867), 1, + sym_aspect_specification, + [40303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2966), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1662), 1, + sym_aspect_specification, + [40328] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2968), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1803), 1, + sym_aspect_specification, + [40353] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2972), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2975), 1, + anon_sym_COLON, + ACTIONS(2977), 1, + aux_sym_iterator_specification_token1, + ACTIONS(1860), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [40374] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2979), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1806), 1, + sym_aspect_specification, + [40399] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2981), 1, + anon_sym_COMMA, + ACTIONS(2983), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1316), 1, aux_sym__name_list_repeat1, - ACTIONS(2972), 2, + [40424] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1564), 1, + sym_aspect_specification, + [40449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 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, + [40462] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2989), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1805), 1, + sym_aspect_specification, + [40487] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2991), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1814), 1, + sym_aspect_specification, + [40512] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2993), 1, + aux_sym_package_specification_token2, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1717), 1, + sym_aspect_specification, + [40537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2995), 1, + anon_sym_LPAREN, + ACTIONS(2997), 1, + anon_sym_SEMI, + ACTIONS(2999), 1, + aux_sym_package_specification_token2, + ACTIONS(3001), 1, + aux_sym_expression_token3, + STATE(1325), 3, + sym__discriminant_part, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [40558] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2942), 1, + anon_sym_SEMI, + ACTIONS(2981), 1, + anon_sym_COMMA, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1182), 1, + aux_sym__name_list_repeat1, + [40583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3003), 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, + [40596] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3005), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1769), 1, + sym_aspect_specification, + [40621] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1748), 1, + sym_aspect_specification, + [40646] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3009), 1, + aux_sym_package_specification_token2, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1487), 1, + sym_aspect_specification, + [40671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3011), 7, + aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [40684] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(3013), 1, + anon_sym_SEMI, + STATE(999), 1, + sym_actual_parameter_part, + STATE(1781), 1, + sym__assign_value, + [40709] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3015), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + STATE(1721), 1, + sym_aspect_specification, + [40734] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(3017), 3, anon_sym_COMMA, anon_sym_RPAREN, - [40786] = 8, + anon_sym_SEMI, + [40755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3021), 1, - aux_sym_package_specification_token2, - STATE(217), 1, - sym_actual_parameter_part, - STATE(1718), 1, - sym_aspect_specification, - [40811] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, + ACTIONS(1775), 1, aux_sym_primary_null_token1, - ACTIONS(1785), 1, + ACTIONS(1781), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3023), 1, + ACTIONS(3019), 1, aux_sym_compilation_unit_token1, - ACTIONS(3025), 1, + ACTIONS(3021), 1, aux_sym_allocator_token1, - ACTIONS(3027), 1, + ACTIONS(3023), 1, aux_sym_interface_type_definition_token2, - STATE(1386), 1, + STATE(1338), 1, sym_record_definition, - [40833] = 3, + [40777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3025), 1, + sym_identifier, + ACTIONS(3027), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [40791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3029), 1, sym_identifier, ACTIONS(3031), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [40847] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1930), 1, - sym_identifier, - ACTIONS(3033), 1, - aux_sym_iterated_element_association_token1, - STATE(1269), 1, - sym_parameter_specification, - STATE(1548), 1, - sym__defining_identifier_list, - STATE(1549), 1, - sym__parameter_specification_list, - STATE(1653), 1, - sym_entry_index_specification, - [40869] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3023), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3035), 1, - anon_sym_SEMI, - ACTIONS(3037), 1, - aux_sym_with_clause_token1, - STATE(1386), 1, - sym_record_definition, - [40891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 1, - sym_identifier, - ACTIONS(3041), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [40905] = 7, + [40805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3043), 1, - aux_sym_with_clause_token1, - ACTIONS(3045), 1, - aux_sym_allocator_token1, - ACTIONS(3047), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(3049), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3051), 1, - aux_sym_private_extension_declaration_token1, - [40927] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3056), 1, - aux_sym_package_specification_token3, - ACTIONS(3058), 1, - aux_sym_pragma_g_token1, - STATE(929), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [40945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3061), 1, - aux_sym_package_specification_token1, - STATE(1093), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [40963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(3063), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [40983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [40995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3070), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3072), 1, - anon_sym_COLON, - ACTIONS(1864), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41025] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3074), 1, - anon_sym_SEMI, - ACTIONS(3076), 1, - aux_sym_with_clause_token2, - STATE(217), 1, - sym_actual_parameter_part, - [41047] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(3078), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3080), 1, - aux_sym_package_specification_token3, - STATE(929), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [41065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - anon_sym_EQ_GT, - ACTIONS(3082), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 1, - anon_sym_COMMA, - STATE(949), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3088), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41095] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - STATE(217), 1, - sym_actual_parameter_part, - ACTIONS(3090), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [41115] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3092), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3094), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41137] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3096), 1, - anon_sym_SEMI, - ACTIONS(3098), 1, - aux_sym_with_clause_token2, - STATE(217), 1, - sym_actual_parameter_part, - [41159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2341), 1, - aux_sym_case_expression_token1, - ACTIONS(3100), 1, - sym_identifier, - STATE(1480), 1, - sym_variant_part, - ACTIONS(3102), 3, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [41177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - sym_identifier, - ACTIONS(3106), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41191] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3108), 1, - aux_sym_entry_declaration_token1, - STATE(1063), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [41209] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - STATE(1054), 1, + STATE(1067), 1, sym__assign_value, - STATE(1458), 1, + STATE(1457), 1, sym_aspect_specification, - ACTIONS(3110), 2, + ACTIONS(3033), 2, anon_sym_RPAREN, anon_sym_SEMI, - [41229] = 3, + [40825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 1, - anon_sym_COLON, - ACTIONS(1864), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON_EQ, - [41243] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(319), 1, - aux_sym_subprogram_body_token1, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3114), 1, - aux_sym_declare_expression_token1, - ACTIONS(3116), 1, - aux_sym_loop_statement_token1, - STATE(1773), 1, - sym_iteration_scheme, - [41265] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(3118), 1, - anon_sym_SEMI, - ACTIONS(3120), 1, - aux_sym_package_specification_token2, - STATE(1419), 1, - sym_known_discriminant_part, - STATE(1420), 2, - sym__discriminant_part, - sym_unknown_discriminant_part, - [41285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3086), 1, + ACTIONS(3035), 6, anon_sym_COMMA, - STATE(933), 1, + anon_sym_RPAREN, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_loop_statement_token1, + [40837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(936), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3122), 4, + ACTIONS(3039), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41301] = 7, + [40853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 1, - aux_sym_entry_declaration_token1, - ACTIONS(3124), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3126), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1020), 1, - sym__subprogram_specification, - STATE(1105), 1, - sym_function_specification, - STATE(1107), 1, - sym_procedure_specification, - [41323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1880), 1, + ACTIONS(2315), 1, + aux_sym_case_expression_token1, + ACTIONS(3041), 1, sym_identifier, - ACTIONS(1882), 5, + STATE(1464), 1, + sym_variant_part, + ACTIONS(3043), 3, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [40871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + sym_identifier, + ACTIONS(1886), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [41337] = 7, + [40885] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3128), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(3130), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3047), 1, anon_sym_SEMI, - ACTIONS(3132), 1, - aux_sym_package_specification_token2, - STATE(1084), 1, - sym_known_discriminant_part, - STATE(1351), 1, - sym_aspect_specification, - [41359] = 3, + STATE(226), 1, + sym_actual_parameter_part, + [40907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 1, + ACTIONS(3049), 1, sym_identifier, - ACTIONS(3136), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41373] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3138), 1, - sym_identifier, - STATE(1284), 1, + STATE(1276), 1, sym_quantifier, - ACTIONS(3140), 2, + ACTIONS(3051), 2, aux_sym_use_clause_token1, aux_sym_quantifier_token1, STATE(1439), 2, sym_loop_parameter_specification, sym_iterator_specification, - [41391] = 6, + [40925] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3053), 1, + anon_sym_SEMI, + ACTIONS(3055), 1, + aux_sym_with_clause_token2, + STATE(226), 1, + sym_actual_parameter_part, + [40947] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, anon_sym_COMMA, - ACTIONS(3144), 1, + ACTIONS(3059), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, + aux_sym_with_clause_token2, + STATE(1358), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3061), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [40967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + anon_sym_COLON, + ACTIONS(1860), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [40981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [40995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, + anon_sym_COMMA, + STATE(936), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3074), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(3078), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41043] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1926), 1, + sym_identifier, + ACTIONS(3080), 1, + aux_sym_iterated_element_association_token1, + STATE(1254), 1, + sym_parameter_specification, + STATE(1545), 1, + sym__defining_identifier_list, + STATE(1547), 1, + sym__parameter_specification_list, + STATE(1652), 1, + sym_entry_index_specification, + [41065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(226), 1, + sym_actual_parameter_part, + ACTIONS(3082), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [41085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + anon_sym_COMMA, + ACTIONS(3063), 1, + aux_sym_with_clause_token2, + ACTIONS(3084), 1, + anon_sym_RPAREN, + STATE(1358), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3061), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41105] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3019), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3086), 1, + anon_sym_SEMI, + ACTIONS(3088), 1, + aux_sym_with_clause_token1, + STATE(1338), 1, + sym_record_definition, + [41127] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3093), 1, + aux_sym_package_specification_token3, + ACTIONS(3095), 1, + aux_sym_pragma_g_token1, + STATE(943), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [41145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3098), 1, + aux_sym_package_specification_token1, + STATE(1080), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41163] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 1, + anon_sym_COMMA, + ACTIONS(3102), 1, anon_sym_RBRACK, - ACTIONS(3148), 1, + ACTIONS(3104), 1, aux_sym_with_clause_token2, - STATE(1323), 1, + STATE(1308), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3146), 2, + ACTIONS(3061), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [41411] = 6, + [41183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RPAREN, - ACTIONS(3154), 1, - aux_sym_with_clause_token2, - STATE(1359), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3146), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, - aux_sym_with_clause_token2, - ACTIONS(3156), 1, - anon_sym_RPAREN, - STATE(1359), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3146), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41451] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(231), 1, - aux_sym_chunk_specification_token1, - ACTIONS(251), 1, - aux_sym_global_mode_token1, - ACTIONS(253), 1, - aux_sym_non_empty_mode_token1, - STATE(691), 1, - sym_global_mode, - STATE(817), 1, - sym_non_empty_mode, - STATE(1441), 1, - sym_global_aspect_element, - [41473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3158), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(317), 1, + aux_sym_subprogram_body_token1, + ACTIONS(399), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3106), 1, + aux_sym_declare_expression_token1, + ACTIONS(3108), 1, aux_sym_loop_statement_token1, - [41485] = 6, + STATE(1772), 1, + sym_iteration_scheme, + [41205] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3160), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3162), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41523] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3164), 1, - aux_sym_range_attribute_designator_token1, - STATE(217), 1, - sym_actual_parameter_part, - [41542] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3166), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41561] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3168), 1, - anon_sym_RPAREN, - STATE(217), 1, - sym_actual_parameter_part, - [41580] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(2607), 1, + ACTIONS(3110), 1, anon_sym_LPAREN, - ACTIONS(3170), 1, - anon_sym_SEMI, - STATE(1327), 1, - sym_formal_part, - STATE(1583), 1, - sym_aspect_specification, - [41599] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3172), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, + ACTIONS(3112), 1, anon_sym_SEMI, + ACTIONS(3114), 1, aux_sym_package_specification_token2, - [41629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3176), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41648] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3178), 1, - anon_sym_SEMI, - STATE(1303), 1, - sym__assign_value, - STATE(1902), 1, - sym_aspect_specification, - [41667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - STATE(1624), 1, - sym_delay_alternative, - STATE(28), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - [41682] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3180), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41701] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3182), 1, - aux_sym_package_specification_token3, - ACTIONS(3184), 1, - aux_sym_expression_token4, - ACTIONS(3186), 1, - aux_sym_elsif_expression_item_token1, - STATE(984), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [41718] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3188), 1, - aux_sym_object_renaming_declaration_token1, - STATE(217), 1, - sym_actual_parameter_part, - [41737] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3190), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41756] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3192), 1, - aux_sym_object_renaming_declaration_token1, - STATE(217), 1, - sym_actual_parameter_part, - [41775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3196), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3194), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - STATE(976), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [41790] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3199), 1, - aux_sym_object_renaming_declaration_token1, - STATE(217), 1, - sym_actual_parameter_part, - [41809] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3201), 1, - anon_sym_SEMI, - ACTIONS(3203), 1, - aux_sym_package_specification_token2, - ACTIONS(3205), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1461), 1, - sym_aspect_specification, - [41828] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3207), 1, - anon_sym_SEMI, - STATE(1291), 1, - sym__assign_value, - STATE(1628), 1, - sym_aspect_specification, - [41847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3209), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [41866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3211), 1, - anon_sym_SEMI, - STATE(1163), 1, - sym__assign_value, - STATE(1862), 1, - sym_aspect_specification, - [41885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3213), 1, - anon_sym_SEMI, - STATE(1141), 1, - sym__assign_value, - STATE(1859), 1, - sym_aspect_specification, - [41904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3215), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(983), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [41919] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3186), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3220), 1, - aux_sym_package_specification_token3, - ACTIONS(3222), 1, - aux_sym_expression_token4, - STATE(976), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [41936] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3224), 1, - anon_sym_SEMI, - STATE(1316), 1, - sym__assign_value, - STATE(1854), 1, - sym_aspect_specification, - [41955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3015), 1, - anon_sym_SEMI, - STATE(1026), 1, - sym_actual_parameter_part, - [41974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(3226), 1, - aux_sym_package_specification_token2, - STATE(1256), 1, + STATE(1088), 1, sym_known_discriminant_part, - STATE(1539), 1, + STATE(1349), 1, sym_aspect_specification, - [41993] = 4, + [41227] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3019), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3116), 1, + aux_sym_with_clause_token1, + ACTIONS(3118), 1, + aux_sym_allocator_token1, + ACTIONS(3120), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3122), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3124), 1, + aux_sym_private_extension_declaration_token1, + [41249] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3128), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3130), 1, + aux_sym_entry_declaration_token1, + STATE(986), 1, + sym__subprogram_specification, + STATE(1104), 1, + sym_function_specification, + STATE(1106), 1, + sym_procedure_specification, + [41271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3132), 1, + anon_sym_SEMI, + ACTIONS(3134), 1, + aux_sym_with_clause_token2, + STATE(226), 1, + sym_actual_parameter_part, + [41293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3136), 1, + anon_sym_COLON, + ACTIONS(1860), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON_EQ, + [41307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3138), 1, + sym_identifier, + ACTIONS(3140), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [41321] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(3078), 1, + ACTIONS(3142), 1, aux_sym_iterator_filter_token1, - STATE(936), 3, + ACTIONS(3144), 1, + aux_sym_package_specification_token3, + STATE(943), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [42008] = 6, + [41339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(943), 1, + ACTIONS(2995), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3228), 1, - sym_tick, - ACTIONS(3230), 1, - aux_sym_iterated_element_association_token2, - STATE(217), 1, - sym_actual_parameter_part, - [42027] = 2, + ACTIONS(3146), 1, + anon_sym_SEMI, + ACTIONS(3148), 1, + aux_sym_package_specification_token2, + STATE(1415), 1, + sym_known_discriminant_part, + STATE(1416), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [41359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 5, + ACTIONS(3152), 1, + anon_sym_EQ_GT, + ACTIONS(3150), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 1, + anon_sym_COMMA, + STATE(927), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3154), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41389] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(235), 1, + aux_sym_chunk_specification_token1, + ACTIONS(255), 1, + aux_sym_global_mode_token1, + ACTIONS(257), 1, + aux_sym_non_empty_mode_token1, + STATE(729), 1, + sym_global_mode, + STATE(816), 1, + sym_non_empty_mode, + STATE(1442), 1, + sym_global_aspect_element, + [41411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3130), 1, + aux_sym_entry_declaration_token1, + STATE(1061), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41429] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3156), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41448] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3158), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41467] = 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, + [41478] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + STATE(1146), 1, + sym_formal_part, + ACTIONS(3162), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [41493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(1404), 1, + sym_formal_part, + STATE(1146), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [41510] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3164), 1, + aux_sym_at_clause_token1, + STATE(226), 1, + sym_actual_parameter_part, + [41529] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3166), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3168), 1, + anon_sym_SEMI, + STATE(1286), 1, + sym__assign_value, + STATE(1624), 1, + sym_aspect_specification, + [41567] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3170), 1, + anon_sym_SEMI, + ACTIONS(3172), 1, + aux_sym_package_specification_token2, + ACTIONS(3174), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1766), 1, + sym_aspect_specification, + [41586] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3176), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3178), 1, + aux_sym_object_renaming_declaration_token1, + STATE(226), 1, + sym_actual_parameter_part, + [41624] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3180), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3182), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41662] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(1404), 1, + sym_formal_part, + STATE(1237), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [41679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + STATE(1237), 1, + sym_formal_part, + ACTIONS(3184), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [41694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + aux_sym_expression_token1, + STATE(1045), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3186), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [41709] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3188), 1, + anon_sym_SEMI, + ACTIONS(3190), 1, + aux_sym_package_specification_token2, + ACTIONS(3192), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1454), 1, + sym_aspect_specification, + [41728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3194), 1, + anon_sym_SEMI, + STATE(1290), 1, + sym__assign_value, + STATE(1626), 1, + sym_aspect_specification, + [41747] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3196), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3198), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3200), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2710), 1, + aux_sym_iterator_filter_token1, + STATE(1183), 1, + sym_iterator_filter, + ACTIONS(3202), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [41819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3204), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_SEMI, + STATE(1218), 1, + sym_formal_part, + STATE(1702), 1, + sym_aspect_specification, + [41857] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3210), 1, + anon_sym_SEMI, + STATE(1233), 1, + sym__assign_value, + STATE(1685), 1, + sym_aspect_specification, + [41876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3212), 1, + anon_sym_SEMI, + STATE(1231), 1, + sym__assign_value, + STATE(1688), 1, + sym_aspect_specification, + [41895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 1, + aux_sym_package_specification_token3, + ACTIONS(3216), 1, + aux_sym_expression_token4, + ACTIONS(3218), 1, + aux_sym_elsif_expression_item_token1, + STATE(1021), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [41912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3170), 1, + anon_sym_SEMI, + ACTIONS(3174), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3220), 1, + aux_sym_package_specification_token2, + STATE(1389), 1, + sym_aspect_specification, + [41931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3222), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2710), 1, + aux_sym_iterator_filter_token1, + STATE(1222), 1, + sym_iterator_filter, + ACTIONS(3224), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [41965] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3226), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [41984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3228), 1, + aux_sym_package_specification_token2, + ACTIONS(1860), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [41997] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3231), 1, + aux_sym_range_attribute_designator_token1, + STATE(226), 1, + sym_actual_parameter_part, + [42016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3233), 1, + sym_tick, + ACTIONS(3235), 1, + aux_sym_iterated_element_association_token2, + STATE(226), 1, + sym_actual_parameter_part, + [42035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3239), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3241), 1, + anon_sym_RPAREN, + STATE(226), 1, + sym_actual_parameter_part, + [42092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(1404), 1, + sym_formal_part, + STATE(820), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(3243), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym_formal_part, + STATE(1582), 1, + sym_aspect_specification, + [42128] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3128), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(986), 1, + sym__subprogram_specification, + STATE(1104), 1, + sym_function_specification, + STATE(1106), 1, + sym_procedure_specification, + [42147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_SEMI, + ACTIONS(853), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [42160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3248), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3250), 1, + aux_sym_with_clause_token1, + STATE(1461), 1, + sym_record_definition, + [42179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3252), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42198] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3128), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(967), 1, + sym__subprogram_specification, + STATE(1104), 1, + sym_function_specification, + STATE(1106), 1, + sym_procedure_specification, + [42217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3254), 1, + sym_identifier, + ACTIONS(3256), 1, + anon_sym_LT_GT, + STATE(1165), 1, + sym_discriminant_specification, + STATE(1484), 1, + sym__defining_identifier_list, + STATE(1505), 1, + sym_discriminant_specification_list, + [42236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3258), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42247] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 1, + anon_sym_RPAREN, + ACTIONS(3262), 1, + aux_sym_expression_token4, + ACTIONS(3264), 1, + aux_sym_elsif_expression_item_token1, + STATE(1029), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 1, + anon_sym_COMMA, + ACTIONS(3102), 1, + anon_sym_RBRACK, + STATE(1308), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3061), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3268), 1, + anon_sym_SEMI, + STATE(1230), 1, + sym__assign_value, + STATE(1901), 1, + sym_aspect_specification, + [42319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + STATE(1737), 1, + sym_delay_alternative, + STATE(29), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + [42334] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3270), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3272), 1, + aux_sym_package_specification_token3, + ACTIONS(3274), 1, + aux_sym_expression_token4, + STATE(985), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3276), 1, + aux_sym_object_renaming_declaration_token1, + STATE(226), 1, + sym_actual_parameter_part, + [42389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3278), 1, + anon_sym_RPAREN, + STATE(226), 1, + sym_actual_parameter_part, + [42408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3280), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3282), 1, + aux_sym_object_renaming_declaration_token1, + STATE(226), 1, + sym_actual_parameter_part, + [42446] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1101), 1, + sym__subprogram_specification, + STATE(1104), 1, + sym_function_specification, + STATE(1106), 1, + sym_procedure_specification, + [42465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 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, - [42038] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3232), 1, - anon_sym_RPAREN, - STATE(217), 1, - sym_actual_parameter_part, - [42057] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3234), 1, - anon_sym_RPAREN, - ACTIONS(3236), 1, - aux_sym_expression_token4, - ACTIONS(3238), 1, - aux_sym_elsif_expression_item_token1, - STATE(1040), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3240), 1, - sym_identifier, - ACTIONS(3242), 1, - anon_sym_LT_GT, - STATE(1157), 1, - sym_discriminant_specification, - STATE(1485), 1, - sym__defining_identifier_list, - STATE(1506), 1, - sym_discriminant_specification_list, - [42093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3244), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42112] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3124), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3126), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1020), 1, - sym__subprogram_specification, - STATE(1105), 1, - sym_function_specification, - STATE(1107), 1, - sym_procedure_specification, - [42131] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3246), 1, - anon_sym_SEMI, - STATE(1232), 1, - sym__assign_value, - STATE(1691), 1, - sym_aspect_specification, - [42150] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3248), 1, - anon_sym_SEMI, - STATE(1234), 1, - sym__assign_value, - STATE(1689), 1, - sym_aspect_specification, - [42169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - aux_sym_package_specification_token2, - ACTIONS(1864), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - aux_sym_with_clause_token2, - [42182] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(1412), 1, - sym_formal_part, - STATE(826), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42199] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3253), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3255), 1, - anon_sym_LPAREN, - ACTIONS(3257), 1, - anon_sym_SEMI, - STATE(1219), 1, - sym_formal_part, - STATE(1704), 1, - sym_aspect_specification, - [42237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 1, - aux_sym_iterator_filter_token1, - STATE(1294), 1, - sym_iterator_filter, - ACTIONS(3259), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3261), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42271] = 5, + [42476] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, ACTIONS(3142), 1, - anon_sym_COMMA, - ACTIONS(3144), 1, - anon_sym_RBRACK, - STATE(1323), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3146), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [42288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3263), 5, - anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42299] = 6, + STATE(953), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [42491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3265), 1, - aux_sym_at_clause_token1, - STATE(217), 1, - sym_actual_parameter_part, - [42318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - aux_sym_expression_token1, - STATE(1039), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3267), 3, - anon_sym_SEMI, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42333] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, + ACTIONS(3110), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42352] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3271), 1, - anon_sym_SEMI, - ACTIONS(3273), 1, + ACTIONS(3284), 1, aux_sym_package_specification_token2, - ACTIONS(3275), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1767), 1, + STATE(1301), 1, + sym_known_discriminant_part, + STATE(1533), 1, sym_aspect_specification, - [42371] = 6, + [42510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(3277), 1, + ACTIONS(3286), 1, anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - [42390] = 6, + [42529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3279), 1, - aux_sym_object_renaming_declaration_token1, - STATE(217), 1, - sym_actual_parameter_part, - [42409] = 6, + ACTIONS(3290), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3288), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + STATE(1021), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3281), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42428] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3283), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3285), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - STATE(1201), 1, - sym_formal_part, - ACTIONS(3287), 3, - anon_sym_SEMI, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42481] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(1412), 1, - sym_formal_part, - STATE(1201), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42498] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1105), 1, - sym_function_specification, - STATE(1107), 1, - sym_procedure_specification, - STATE(1126), 1, - sym__subprogram_specification, - [42517] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(1412), 1, - sym_formal_part, - STATE(1250), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - STATE(1250), 1, - sym_formal_part, - ACTIONS(3289), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3271), 1, - anon_sym_SEMI, - ACTIONS(3275), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3291), 1, - aux_sym_package_specification_token2, - STATE(1392), 1, - sym_aspect_specification, - [42568] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, ACTIONS(3293), 1, anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42587] = 6, + STATE(1305), 1, + sym__assign_value, + STATE(1591), 1, + sym_aspect_specification, + [42563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3295), 1, anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42606] = 6, + STATE(1307), 1, + sym__assign_value, + STATE(1600), 1, + sym_aspect_specification, + [42582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, + ACTIONS(3188), 1, + anon_sym_SEMI, + ACTIONS(3192), 1, + aux_sym_object_renaming_declaration_token1, ACTIONS(3297), 1, - anon_sym_SEMI, - STATE(1306), 1, - sym__assign_value, - STATE(1592), 1, + aux_sym_package_specification_token2, + STATE(1744), 1, sym_aspect_specification, - [42625] = 6, + [42601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, ACTIONS(3299), 1, - anon_sym_SEMI, - STATE(1308), 1, - sym__assign_value, - STATE(1601), 1, - sym_aspect_specification, - [42644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3301), 1, - anon_sym_SEMI, - STATE(1288), 1, - sym__assign_value, - STATE(1625), 1, - sym_aspect_specification, - [42663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 1, - anon_sym_SEMI, - ACTIONS(849), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [42676] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3306), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3308), 1, - aux_sym_with_clause_token1, - STATE(1468), 1, - sym_record_definition, - [42695] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3310), 1, - anon_sym_SEMI, - STATE(217), 1, + aux_sym_object_renaming_declaration_token1, + STATE(226), 1, sym_actual_parameter_part, - [42714] = 6, + [42620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3312), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [42733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2607), 1, - anon_sym_LPAREN, - ACTIONS(3314), 1, - anon_sym_SEMI, - STATE(1251), 1, - sym_formal_part, - STATE(1665), 1, - sym_aspect_specification, - [42752] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, + ACTIONS(1775), 1, aux_sym_primary_null_token1, - ACTIONS(1785), 1, + ACTIONS(1781), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3027), 1, + ACTIONS(3023), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3316), 1, + ACTIONS(3301), 1, aux_sym_allocator_token1, - STATE(1386), 1, + STATE(1338), 1, sym_record_definition, - [42771] = 6, + [42639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(1404), 1, + sym_formal_part, + STATE(821), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(3318), 1, - anon_sym_COMMA, - STATE(217), 1, + ACTIONS(3303), 1, + aux_sym_object_renaming_declaration_token1, + STATE(226), 1, sym_actual_parameter_part, - [42790] = 5, + [42675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(1412), 1, - sym_formal_part, - STATE(820), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42807] = 5, + ACTIONS(3264), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3305), 1, + anon_sym_RPAREN, + ACTIONS(3307), 1, + aux_sym_expression_token4, + STATE(1041), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(1412), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3013), 1, + anon_sym_SEMI, + STATE(999), 1, + sym_actual_parameter_part, + [42711] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3309), 1, + anon_sym_COMMA, + STATE(226), 1, + sym_actual_parameter_part, + [42730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(941), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3311), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42749] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(3313), 1, + anon_sym_SEMI, + STATE(1250), 1, sym_formal_part, - STATE(822), 2, - sym__parameter_and_result_profile, - sym_result_profile, + STATE(1663), 1, + sym_aspect_specification, + [42768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1932), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1172), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [42783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3315), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3319), 1, + anon_sym_SEMI, + STATE(1297), 1, + sym__assign_value, + STATE(1853), 1, + sym_aspect_specification, [42824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(941), 1, anon_sym_LPAREN, - ACTIONS(1917), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(3320), 1, + ACTIONS(3321), 1, anon_sym_SEMI, - STATE(217), 1, + STATE(226), 1, sym_actual_parameter_part, - [42843] = 4, + [42843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1936), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1162), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [42858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 5, + ACTIONS(3074), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [42869] = 2, + [42854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3326), 1, - aux_sym_expression_token1, - STATE(1039), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2843), 3, - anon_sym_SEMI, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42895] = 5, + ACTIONS(3323), 1, + anon_sym_LPAREN, + ACTIONS(3325), 1, + anon_sym_SEMI, + STATE(1287), 1, + sym_formal_part, + STATE(1628), 1, + sym_aspect_specification, + [42873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 1, - aux_sym_elsif_expression_item_token1, ACTIONS(3329), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3327), 2, anon_sym_RPAREN, - ACTIONS(3331), 1, aux_sym_expression_token4, - STATE(983), 2, + STATE(1041), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [42912] = 6, + [42888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3333), 1, - anon_sym_LPAREN, - ACTIONS(3335), 1, + ACTIONS(3332), 1, anon_sym_SEMI, - STATE(1289), 1, + STATE(1312), 1, + sym__assign_value, + STATE(1858), 1, + sym_aspect_specification, + [42907] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(1404), 1, sym_formal_part, - STATE(1629), 1, - sym_aspect_specification, - [42931] = 2, + STATE(818), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42942] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3201), 1, + ACTIONS(3334), 1, anon_sym_SEMI, - ACTIONS(3205), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3337), 1, - aux_sym_package_specification_token2, - STATE(1745), 1, + STATE(1315), 1, + sym__assign_value, + STATE(1861), 1, sym_aspect_specification, - [42961] = 6, + [42943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3126), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1009), 1, - sym__subprogram_specification, - STATE(1105), 1, - sym_function_specification, - STATE(1107), 1, - sym_procedure_specification, - [42980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 1, - aux_sym_iterator_filter_token1, - STATE(1184), 1, - sym_iterator_filter, - ACTIONS(3339), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3341), 1, - aux_sym_object_renaming_declaration_token1, - STATE(217), 1, - sym_actual_parameter_part, - [43014] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_LPAREN, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(3343), 1, - anon_sym_SEMI, - STATE(217), 1, - sym_actual_parameter_part, - [43033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 4, + ACTIONS(3336), 1, + aux_sym_expression_token1, + STATE(1045), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2819), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43043] = 5, + [42958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3347), 1, - aux_sym_compilation_unit_token1, - STATE(1410), 1, - sym_record_definition, - [43059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - anon_sym_COMMA, - STATE(1050), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3352), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(885), 3, + ACTIONS(905), 1, sym_tick, - anon_sym_DOT, + ACTIONS(941), 1, anon_sym_LPAREN, - [43085] = 4, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3339), 1, + anon_sym_SEMI, + STATE(226), 1, + sym_actual_parameter_part, + [42977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3341), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3343), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3345), 1, anon_sym_COMMA, - STATE(1052), 1, + STATE(1048), 1, aux_sym__name_list_repeat1, - ACTIONS(2980), 2, + ACTIONS(3017), 2, anon_sym_RPAREN, anon_sym_SEMI, - [43099] = 4, + [43003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3350), 1, + anon_sym_SEMI, + ACTIONS(3352), 1, + aux_sym_with_clause_token1, + ACTIONS(3354), 1, + aux_sym_expression_token3, + [43019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1424), 1, + sym_aspect_specification, + ACTIONS(3356), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43033] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3360), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3363), 1, - aux_sym_package_specification_token3, - STATE(1053), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [43113] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - STATE(1402), 1, - sym_aspect_specification, - ACTIONS(3365), 2, - anon_sym_RPAREN, + aux_sym_expression_token1, + ACTIONS(3358), 3, anon_sym_SEMI, - [43127] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, aux_sym_with_clause_token2, - STATE(1401), 1, - sym_aspect_specification, - ACTIONS(3367), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43141] = 4, + aux_sym_expression_token3, + [43045] = 4, ACTIONS(3), 1, sym_comment, - STATE(1147), 1, - sym__enumeration_literal_specification, - STATE(1756), 1, - sym__enumeration_literal_list, - ACTIONS(3369), 2, - sym_identifier, - sym_character_literal, - [43155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(2954), 1, - aux_sym_iterator_filter_token1, - STATE(1390), 1, - sym_aspect_specification, - STATE(1655), 1, - sym_entry_barrier, - [43171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, + ACTIONS(3364), 1, aux_sym_allocator_token1, - ACTIONS(3051), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3371), 1, - aux_sym_with_clause_token1, - ACTIONS(3373), 1, + ACTIONS(3366), 1, aux_sym_private_type_declaration_token2, - [43187] = 3, + ACTIONS(3362), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [43059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + aux_sym_package_specification_token2, + ACTIONS(3368), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [43071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + aux_sym_allocator_token1, + ACTIONS(3124), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3373), 1, + aux_sym_with_clause_token1, + ACTIONS(3375), 1, + aux_sym_private_type_declaration_token2, + [43087] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3377), 1, - aux_sym_expression_token1, - ACTIONS(3375), 3, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, ACTIONS(3379), 1, - aux_sym_compilation_unit_token1, - STATE(1410), 1, - sym_record_definition, - [43215] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3381), 1, - anon_sym_SEMI, - ACTIONS(3383), 1, aux_sym_with_clause_token2, - ACTIONS(3386), 1, + ACTIONS(3382), 1, aux_sym_expression_token1, - STATE(1406), 1, + STATE(1370), 1, sym_record_extension_part, - [43231] = 2, + [43103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 4, - anon_sym_RPAREN, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2958), 1, aux_sym_iterator_filter_token1, + STATE(1385), 1, + sym_aspect_specification, + STATE(1654), 1, + sym_entry_barrier, + [43119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3386), 1, + aux_sym_expression_token3, + STATE(1057), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3384), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + [43133] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1157), 1, + sym__enumeration_literal_specification, + STATE(1755), 1, + sym__enumeration_literal_list, + ACTIONS(3389), 2, + sym_identifier, + sym_character_literal, + [43147] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1391), 1, + sym_aspect_specification, + ACTIONS(3391), 2, + anon_sym_RPAREN, anon_sym_SEMI, + [43161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3393), 1, + aux_sym_compilation_unit_token1, + STATE(1409), 1, + sym_record_definition, + [43177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3170), 1, + anon_sym_SEMI, + ACTIONS(3172), 1, aux_sym_package_specification_token2, + STATE(1766), 1, + sym_aspect_specification, + [43193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3395), 1, + anon_sym_SEMI, + ACTIONS(3397), 1, + aux_sym_package_specification_token2, + STATE(1375), 1, + sym_aspect_specification, + [43209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3352), 1, + aux_sym_with_clause_token1, + ACTIONS(3399), 1, + anon_sym_SEMI, + ACTIONS(3401), 1, + aux_sym_expression_token3, + [43225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3403), 1, + anon_sym_SEMI, + ACTIONS(3405), 1, + aux_sym_expression_token3, + STATE(1527), 1, + sym_aspect_specification, [43241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3271), 1, + ACTIONS(3407), 1, anon_sym_SEMI, - ACTIONS(3273), 1, - aux_sym_package_specification_token2, - STATE(1767), 1, - sym_aspect_specification, + ACTIONS(3409), 1, + aux_sym_with_clause_token2, + ACTIONS(3412), 1, + aux_sym_expression_token1, + STATE(1405), 1, + sym_record_extension_part, [43257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3390), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, - aux_sym_package_specification_token2, - STATE(1379), 1, - sym_aspect_specification, - [43273] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_SEMI, - ACTIONS(3396), 1, - aux_sym_with_clause_token2, - ACTIONS(3399), 1, - aux_sym_expression_token1, - STATE(1372), 1, - sym_record_extension_part, - [43289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3403), 1, + ACTIONS(3414), 1, aux_sym_package_specification_token3, - ACTIONS(3405), 1, + ACTIONS(3416), 1, aux_sym_expression_token3, - ACTIONS(3407), 1, + ACTIONS(3418), 1, aux_sym_expression_token4, - STATE(1087), 1, + STATE(1086), 1, aux_sym_selective_accept_repeat1, - [43315] = 2, + [43273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 4, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1392), 1, + sym_aspect_specification, + ACTIONS(3420), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43287] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3422), 1, + anon_sym_LPAREN, + ACTIONS(3424), 1, + anon_sym_SEMI, + ACTIONS(3426), 1, + aux_sym_accept_statement_token2, + STATE(1356), 1, + sym_formal_part, + [43303] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3416), 1, + aux_sym_expression_token3, + ACTIONS(3428), 1, + aux_sym_package_specification_token3, + ACTIONS(3430), 1, + aux_sym_expression_token4, + STATE(1057), 1, + aux_sym_selective_accept_repeat1, + [43319] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3432), 1, + aux_sym_compilation_unit_token1, + STATE(1409), 1, + sym_record_definition, + [43335] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3434), 1, + aux_sym_with_clause_token1, + STATE(1338), 1, + sym_record_definition, + [43351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3436), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [43325] = 5, + [43361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, - anon_sym_LPAREN, - ACTIONS(3413), 1, + ACTIONS(3438), 4, anon_sym_SEMI, - ACTIONS(3415), 1, - aux_sym_accept_statement_token2, - STATE(1357), 1, - sym_formal_part, - [43341] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - aux_sym_iterator_filter_token1, - STATE(1620), 1, - sym_variant_list, - STATE(1097), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [43355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3419), 1, - aux_sym_compilation_unit_token1, - STATE(1410), 1, - sym_record_definition, - [43371] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3421), 1, - aux_sym_with_clause_token1, - STATE(1386), 1, - sym_record_definition, - [43387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - aux_sym_range_attribute_designator_token1, - STATE(1339), 1, - sym_real_range_specification, - ACTIONS(3423), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [43401] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3201), 1, - anon_sym_SEMI, - ACTIONS(3337), 1, aux_sym_package_specification_token2, - STATE(1745), 1, - sym_aspect_specification, - [43417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3429), 1, - aux_sym_package_specification_token2, - ACTIONS(3427), 3, - anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [43429] = 4, + [43371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - aux_sym_allocator_token1, - ACTIONS(3436), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3432), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [43443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3440), 1, + ACTIONS(3440), 4, anon_sym_SEMI, - ACTIONS(3442), 1, - aux_sym_with_clause_token1, - ACTIONS(3444), 1, + aux_sym_with_clause_token2, aux_sym_expression_token3, - [43459] = 2, + anon_sym_COLON_EQ, + [43381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3442), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3444), 1, + aux_sym_package_specification_token3, + STATE(1113), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43395] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3446), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [43405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3448), 1, + aux_sym_compilation_unit_token1, + STATE(1409), 1, + sym_record_definition, + [43421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + STATE(1384), 1, + sym__assign_value, + ACTIONS(3450), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [43435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1400), 1, + sym_aspect_specification, + ACTIONS(3452), 2, anon_sym_RPAREN, anon_sym_SEMI, + [43449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [43469] = 5, + ACTIONS(3454), 1, + anon_sym_SEMI, + ACTIONS(3456), 1, + aux_sym_package_specification_token2, + STATE(1597), 1, + sym_aspect_specification, + [43465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, - anon_sym_COMMA, - ACTIONS(2730), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3448), 1, - anon_sym_COLON, - STATE(1244), 1, - aux_sym__defining_identifier_list_repeat1, - [43485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, - anon_sym_COMMA, - STATE(1050), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3453), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3457), 1, - aux_sym_package_specification_token3, - STATE(1053), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [43513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, + ACTIONS(3460), 1, aux_sym_allocator_token1, - ACTIONS(3463), 1, + ACTIONS(3462), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3459), 2, + ACTIONS(3458), 2, aux_sym_with_clause_token1, aux_sym_private_extension_declaration_token1, - [43527] = 5, + [43479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3465), 1, + ACTIONS(2133), 1, + anon_sym_COLON_EQ, + STATE(1378), 1, + sym__assign_value, + ACTIONS(3464), 2, anon_sym_SEMI, - ACTIONS(3467), 1, - aux_sym_expression_token3, - STATE(1638), 1, - sym_aspect_specification, - [43543] = 5, + aux_sym_accept_statement_token2, + [43493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3469), 1, + ACTIONS(3188), 1, anon_sym_SEMI, - ACTIONS(3471), 1, + ACTIONS(3466), 1, aux_sym_package_specification_token2, - STATE(1464), 1, + STATE(1454), 1, sym_aspect_specification, - [43559] = 3, + [43509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - aux_sym_expression_token2, - ACTIONS(3473), 3, - aux_sym_package_specification_token3, + ACTIONS(3416), 1, aux_sym_expression_token3, + ACTIONS(3468), 1, + aux_sym_package_specification_token3, + ACTIONS(3470), 1, aux_sym_expression_token4, - [43571] = 5, + STATE(1069), 1, + aux_sym_selective_accept_repeat1, + [43525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(1775), 1, aux_sym_primary_null_token1, - ACTIONS(1785), 1, + ACTIONS(1781), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3306), 1, + ACTIONS(3248), 1, aux_sym_compilation_unit_token1, - STATE(1468), 1, + STATE(1461), 1, sym_record_definition, - [43587] = 5, + [43541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3416), 1, aux_sym_expression_token3, - ACTIONS(3477), 1, + ACTIONS(3468), 1, aux_sym_package_specification_token3, - ACTIONS(3479), 1, + ACTIONS(3470), 1, aux_sym_expression_token4, - STATE(1108), 1, + STATE(1057), 1, aux_sym_selective_accept_repeat1, - [43603] = 5, + [43557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3474), 1, + aux_sym_expression_token2, + ACTIONS(3472), 3, + aux_sym_package_specification_token3, aux_sym_expression_token3, - ACTIONS(3477), 1, - aux_sym_package_specification_token3, - ACTIONS(3479), 1, aux_sym_expression_token4, - STATE(1102), 1, - aux_sym_selective_accept_repeat1, - [43619] = 3, + [43569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3476), 1, + anon_sym_SEMI, + ACTIONS(3478), 1, aux_sym_package_specification_token2, - ACTIONS(3427), 3, + STATE(1474), 1, + sym_aspect_specification, + [43585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + ACTIONS(3480), 1, + anon_sym_SEMI, + ACTIONS(3482), 1, + aux_sym_accept_statement_token2, + STATE(1340), 1, + sym_formal_part, + [43601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3484), 4, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43631] = 4, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1357), 1, + sym_aspect_specification, + ACTIONS(3486), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3488), 1, anon_sym_COMMA, - STATE(1090), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3487), 2, + STATE(1099), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3490), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [43645] = 4, + [43639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1373), 1, - sym__assign_value, - ACTIONS(3489), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - STATE(1340), 1, - sym_aspect_specification, - ACTIONS(3491), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43673] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3493), 1, - anon_sym_SEMI, + ACTIONS(3492), 1, + aux_sym_iterator_filter_token1, ACTIONS(3495), 1, - aux_sym_package_specification_token2, - STATE(1598), 1, - sym_aspect_specification, - [43689] = 4, + aux_sym_package_specification_token3, + STATE(1093), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [43653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1387), 1, - sym__assign_value, - ACTIONS(3497), 2, + ACTIONS(3497), 4, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43703] = 5, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 1, - sym_identifier, - STATE(1157), 1, - sym_discriminant_specification, - STATE(1485), 1, - sym__defining_identifier_list, - STATE(1506), 1, - sym_discriminant_specification_list, - [43719] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, ACTIONS(3499), 1, - aux_sym_compilation_unit_token1, - STATE(1410), 1, - sym_record_definition, - [43735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, aux_sym_iterator_filter_token1, ACTIONS(3501), 1, aux_sym_package_specification_token3, - STATE(1132), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [43749] = 2, + STATE(1093), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [43677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43759] = 2, + ACTIONS(3503), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(873), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [43689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43769] = 5, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(2738), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3506), 1, + anon_sym_COLON, + STATE(1252), 1, + aux_sym__defining_identifier_list_repeat1, + [43705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3507), 1, - aux_sym_compilation_unit_token1, - STATE(1410), 1, - sym_record_definition, - [43785] = 5, + ACTIONS(3254), 1, + sym_identifier, + STATE(1254), 1, + sym_parameter_specification, + STATE(1545), 1, + sym__defining_identifier_list, + STATE(1547), 1, + sym__parameter_specification_list, + [43721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3488), 1, + anon_sym_COMMA, + STATE(1128), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3509), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [43735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, - anon_sym_SEMI, ACTIONS(3511), 1, + anon_sym_SEMI, + ACTIONS(3513), 1, aux_sym_with_clause_token2, - ACTIONS(3514), 1, - aux_sym_expression_token1, - STATE(1481), 1, - sym_record_extension_part, - [43801] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 1, - aux_sym_expression_token3, ACTIONS(3516), 1, - aux_sym_package_specification_token3, - ACTIONS(3518), 1, - aux_sym_expression_token4, - STATE(1108), 1, - aux_sym_selective_accept_repeat1, - [43817] = 5, + aux_sym_expression_token1, + STATE(1467), 1, + sym_record_extension_part, + [43751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3520), 1, + ACTIONS(3170), 1, anon_sym_SEMI, - ACTIONS(3522), 1, - aux_sym_expression_token3, - STATE(1528), 1, + ACTIONS(3518), 1, + aux_sym_package_specification_token2, + STATE(1389), 1, sym_aspect_specification, - [43833] = 5, + [43767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3442), 1, - aux_sym_with_clause_token1, - ACTIONS(3524), 1, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(2738), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3520), 1, + anon_sym_COLON, + STATE(1252), 1, + aux_sym__defining_identifier_list_repeat1, + [43783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3523), 4, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3526), 1, - aux_sym_expression_token3, - [43849] = 3, + aux_sym_with_clause_token2, + aux_sym_accept_statement_token2, + [43793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 1, + aux_sym_package_specification_token2, + ACTIONS(3368), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [43805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(1860), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [43817] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3528), 1, aux_sym_package_specification_token2, - ACTIONS(3427), 3, + ACTIONS(3368), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [43861] = 5, + [43829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 1, - anon_sym_SEMI, - ACTIONS(3531), 1, - aux_sym_with_clause_token2, - ACTIONS(3534), 1, - aux_sym_expression_token1, - STATE(1372), 1, - sym_record_extension_part, - [43877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3536), 1, - aux_sym_package_specification_token2, - ACTIONS(3427), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 1, - aux_sym_expression_token3, - STATE(1108), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3539), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - [43903] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3546), 1, - anon_sym_RPAREN, - STATE(1217), 1, - aux_sym_record_component_association_list_repeat1, - STATE(1218), 1, - aux_sym_positional_array_aggregate_repeat1, - [43919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - aux_sym_expression_token1, - ACTIONS(3549), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3553), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3555), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, - anon_sym_COMMA, - STATE(1080), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3557), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - STATE(1396), 1, - sym__assign_value, - ACTIONS(3559), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, STATE(1336), 1, - sym_aspect_specification, - ACTIONS(3561), 2, - anon_sym_RPAREN, + sym__assign_value, + ACTIONS(3531), 2, anon_sym_SEMI, - [43985] = 4, + aux_sym_accept_statement_token2, + [43843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, + ACTIONS(2133), 1, anon_sym_COLON_EQ, STATE(1335), 1, sym__assign_value, - ACTIONS(3563), 2, + ACTIONS(3531), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [43999] = 4, + [43857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, + ACTIONS(3535), 1, + aux_sym_expression_token1, + ACTIONS(3533), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 1, + sym_identifier, + STATE(955), 1, + sym__aspect_mark, + STATE(956), 1, + sym_aspect_association, + STATE(1134), 1, + sym_aspect_mark_list, + [43885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3539), 1, + aux_sym_compilation_unit_token1, + STATE(1409), 1, + sym_record_definition, + [43901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, anon_sym_COLON_EQ, - STATE(1337), 1, + STATE(1395), 1, sym__assign_value, - ACTIONS(3563), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_COMMA, - ACTIONS(2730), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3569), 1, - anon_sym_COLON, - STATE(1244), 1, - aux_sym__defining_identifier_list_repeat1, - [44049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - STATE(1363), 1, - sym_aspect_specification, - ACTIONS(3572), 2, + ACTIONS(3541), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44063] = 2, + [43915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - ACTIONS(3576), 1, - anon_sym_SEMI, - ACTIONS(3578), 1, - aux_sym_accept_statement_token2, - STATE(1342), 1, - sym_formal_part, - [44089] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3240), 1, - sym_identifier, - STATE(1269), 1, - sym_parameter_specification, - STATE(1548), 1, - sym__defining_identifier_list, - STATE(1549), 1, - sym__parameter_specification_list, - [44105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - aux_sym_range_attribute_designator_token1, - STATE(1436), 1, - sym_real_range_specification, - ACTIONS(3580), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [44119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2990), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(1864), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [44131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3271), 1, - anon_sym_SEMI, - ACTIONS(3582), 1, - aux_sym_package_specification_token2, - STATE(1392), 1, - sym_aspect_specification, - [44147] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3584), 1, - anon_sym_COMMA, - STATE(1359), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3146), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3586), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3588), 1, - sym_identifier, - STATE(937), 1, - sym__aspect_mark, - STATE(938), 1, - sym_aspect_association, - STATE(1062), 1, - sym_aspect_mark_list, - [44187] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3381), 1, - anon_sym_SEMI, - ACTIONS(3590), 1, - aux_sym_with_clause_token2, - ACTIONS(3593), 1, - aux_sym_expression_token1, - STATE(1406), 1, - sym_record_extension_part, - [44203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3595), 1, - aux_sym_with_clause_token1, - STATE(1468), 1, - sym_record_definition, - [44219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, + ACTIONS(3543), 1, aux_sym_iterator_filter_token1, - ACTIONS(3600), 1, + ACTIONS(3546), 1, aux_sym_package_specification_token3, - STATE(1132), 2, + STATE(1113), 2, sym_variant, aux_sym_variant_list_repeat1, - [44233] = 5, + [43929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(3548), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3061), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [43943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, aux_sym_primary_null_token1, - ACTIONS(1785), 1, + ACTIONS(1781), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3602), 1, + ACTIONS(3550), 1, aux_sym_compilation_unit_token1, - STATE(1410), 1, + STATE(1420), 1, sym_record_definition, - [44249] = 5, + [43959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(3552), 1, + anon_sym_COMMA, + ACTIONS(3554), 1, + anon_sym_RPAREN, + STATE(1216), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1217), 1, + aux_sym_positional_array_aggregate_repeat1, + [43975] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3254), 1, + sym_identifier, + STATE(1165), 1, + sym_discriminant_specification, + STATE(1484), 1, + sym__defining_identifier_list, + STATE(1505), 1, + sym_discriminant_specification_list, + [43991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3201), 1, + ACTIONS(3188), 1, anon_sym_SEMI, - ACTIONS(3604), 1, + ACTIONS(3297), 1, aux_sym_package_specification_token2, - STATE(1461), 1, + STATE(1744), 1, sym_aspect_specification, - [44265] = 5, + [44007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3606), 1, - aux_sym_compilation_unit_token1, - STATE(1421), 1, - sym_record_definition, - [44281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3509), 1, + ACTIONS(3559), 1, + aux_sym_range_attribute_designator_token1, + STATE(1333), 1, + sym_real_range_specification, + ACTIONS(3557), 2, anon_sym_SEMI, - ACTIONS(3608), 1, + aux_sym_with_clause_token2, + [44021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3561), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3564), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3566), 1, + aux_sym_compilation_unit_token1, + STATE(1409), 1, + sym_record_definition, + [44051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, + aux_sym_package_specification_token2, + ACTIONS(3368), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_range_attribute_designator_token1, + STATE(1478), 1, + sym_real_range_specification, + ACTIONS(3571), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [44077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3442), 1, + aux_sym_iterator_filter_token1, + STATE(1619), 1, + sym_variant_list, + STATE(1075), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [44091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3573), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3575), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3577), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3579), 1, + anon_sym_COMMA, + STATE(1128), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3582), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44135] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, + aux_sym_with_clause_token2, + ACTIONS(3587), 1, + aux_sym_expression_token1, + STATE(1405), 1, + sym_record_extension_part, + [44151] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3377), 1, + anon_sym_SEMI, + ACTIONS(3589), 1, + aux_sym_with_clause_token2, + ACTIONS(3592), 1, + aux_sym_expression_token1, + STATE(1370), 1, + sym_record_extension_part, + [44167] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3594), 1, + anon_sym_SEMI, + ACTIONS(3596), 1, + aux_sym_expression_token3, + STATE(1636), 1, + sym_aspect_specification, + [44183] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3598), 1, + aux_sym_compilation_unit_token1, + STATE(1409), 1, + sym_record_definition, + [44199] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3511), 1, + anon_sym_SEMI, + ACTIONS(3600), 1, + aux_sym_with_clause_token2, + ACTIONS(3603), 1, + aux_sym_expression_token1, + STATE(1467), 1, + sym_record_extension_part, + [44215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [44225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3607), 1, + aux_sym_with_clause_token1, + STATE(1461), 1, + sym_record_definition, + [44241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 1, + sym_identifier, + STATE(955), 1, + sym__aspect_mark, + STATE(1039), 1, + sym_aspect_association, + [44254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3611), 1, - aux_sym_expression_token1, - STATE(1481), 1, - sym_record_extension_part, - [44297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3613), 3, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44306] = 2, + STATE(1760), 1, + sym_aspect_specification, + [44276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3615), 3, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3613), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44315] = 3, + STATE(1836), 1, + sym_aspect_specification, + [44289] = 3, ACTIONS(3), 1, sym_comment, - STATE(1052), 1, + STATE(1048), 1, aux_sym__name_list_repeat1, - ACTIONS(3617), 2, + ACTIONS(3615), 2, anon_sym_COMMA, anon_sym_RPAREN, - [44326] = 2, + [44300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 3, - anon_sym_RPAREN, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [44335] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3299), 1, - anon_sym_SEMI, - STATE(1601), 1, - sym_aspect_specification, - [44348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3621), 3, + ACTIONS(3617), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44357] = 4, + [44309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - sym_identifier, - ACTIONS(3625), 1, - aux_sym_use_clause_token2, - ACTIONS(3627), 1, - aux_sym_package_body_token1, - [44370] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, - anon_sym_COMMA, - ACTIONS(3632), 1, + ACTIONS(3619), 1, anon_sym_RPAREN, - STATE(1144), 1, - aux_sym_record_component_association_list_repeat1, - [44383] = 4, + ACTIONS(3621), 1, + anon_sym_SEMI, + STATE(1142), 1, + aux_sym_discriminant_specification_list_repeat1, + [44322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, + ACTIONS(3624), 1, + sym_identifier, + ACTIONS(3626), 1, + aux_sym_use_clause_token2, + ACTIONS(3628), 1, + aux_sym_package_body_token1, + [44335] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1397), 1, + sym__enumeration_literal_specification, + ACTIONS(3630), 2, + sym_identifier, + sym_character_literal, + [44346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 1, + anon_sym_COMMA, ACTIONS(3634), 1, + anon_sym_RPAREN, + STATE(1242), 1, + aux_sym__enumeration_literal_list_repeat1, + [44359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 3, anon_sym_SEMI, - STATE(1833), 1, - sym_aspect_specification, - [44396] = 2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3636), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [44405] = 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44377] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3559), 1, + aux_sym_range_attribute_designator_token1, ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3640), 1, - anon_sym_RPAREN, - STATE(1180), 1, - aux_sym__enumeration_literal_list_repeat1, - [44418] = 4, + aux_sym_attribute_designator_token3, + STATE(1479), 1, + sym_real_range_specification, + [44390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(3640), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3642), 1, anon_sym_SEMI, - STATE(1531), 1, + STATE(1667), 1, sym_aspect_specification, - [44431] = 4, + [44412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RPAREN, - STATE(1149), 1, - aux_sym_index_constraint_repeat1, - [44444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, - anon_sym_RPAREN, - ACTIONS(3651), 1, - anon_sym_SEMI, - STATE(1241), 1, - aux_sym_discriminant_specification_list_repeat1, - [44457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3653), 1, - anon_sym_SEMI, - STATE(1672), 1, - sym_aspect_specification, - [44470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 3, + ACTIONS(3644), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44479] = 4, + [44421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 1, + ACTIONS(3646), 1, sym_identifier, - STATE(1399), 1, - sym_discriminant_specification, - STATE(1485), 1, - sym__defining_identifier_list, - [44492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3657), 1, - anon_sym_SEMI, - STATE(1828), 1, - sym_aspect_specification, - [44505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, - anon_sym_COMMA, - ACTIONS(3661), 1, - anon_sym_RPAREN, - STATE(1245), 1, - aux_sym_case_expression_repeat1, - [44518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 1, - anon_sym_COMMA, - ACTIONS(3665), 1, - anon_sym_RPAREN, - STATE(1236), 1, - aux_sym__index_subtype_definition_list_repeat1, - [44531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 1, - anon_sym_SEMI, - ACTIONS(3667), 1, - anon_sym_RPAREN, - STATE(1150), 1, - aux_sym_discriminant_specification_list_repeat1, - [44544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_expression_token3, - [44553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - STATE(1468), 1, - sym_record_definition, - [44566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3671), 1, - anon_sym_SEMI, - STATE(1763), 1, - sym_aspect_specification, - [44579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3673), 1, - anon_sym_SEMI, - STATE(1877), 1, - sym_aspect_specification, - [44592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3675), 1, - aux_sym_package_specification_token2, - STATE(1522), 1, - sym_aspect_specification, - [44605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3677), 1, - anon_sym_SEMI, - STATE(1602), 1, - sym_aspect_specification, - [44618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3679), 1, - sym_identifier, - ACTIONS(3681), 1, + ACTIONS(3648), 1, aux_sym_use_clause_token2, - ACTIONS(3683), 1, + ACTIONS(3650), 1, aux_sym_package_body_token1, - [44631] = 4, + [44434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 1, - sym_identifier, - STATE(1426), 1, - sym_parameter_specification, - STATE(1548), 1, - sym__defining_identifier_list, - [44644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, + ACTIONS(3652), 1, anon_sym_COMMA, - ACTIONS(1892), 1, - anon_sym_COLON, - STATE(1244), 1, - aux_sym__defining_identifier_list_repeat1, - [44657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3688), 1, + ACTIONS(3655), 1, anon_sym_RPAREN, - STATE(1167), 1, - aux_sym_actual_parameter_part_repeat1, - [44670] = 4, + STATE(1153), 1, + aux_sym_record_component_association_list_repeat1, + [44447] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, + anon_sym_RPAREN, + STATE(1154), 1, + aux_sym_index_constraint_repeat1, + [44460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3662), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [44469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3664), 1, + anon_sym_SEMI, + STATE(1832), 1, + sym_aspect_specification, + [44482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 1, + anon_sym_COMMA, + ACTIONS(3666), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym__enumeration_literal_list_repeat1, + [44495] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3668), 1, + anon_sym_SEMI, + STATE(1528), 1, + sym_aspect_specification, + [44508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 1, + anon_sym_COMMA, + ACTIONS(3672), 1, + anon_sym_RPAREN, + STATE(1241), 1, + aux_sym_case_expression_repeat1, + [44521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3674), 1, + anon_sym_RPAREN, + ACTIONS(3676), 1, + anon_sym_SEMI, + STATE(1142), 1, + aux_sym_discriminant_specification_list_repeat1, + [44534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3564), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3678), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3254), 1, + sym_identifier, + STATE(1481), 1, + sym_discriminant_specification, + STATE(1484), 1, + sym__defining_identifier_list, + [44565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3680), 1, + anon_sym_SEMI, + STATE(1827), 1, + sym_aspect_specification, + [44578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3676), 1, + anon_sym_SEMI, + ACTIONS(3682), 1, + anon_sym_RPAREN, + STATE(1160), 1, + aux_sym_discriminant_specification_list_repeat1, + [44591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3684), 1, + anon_sym_SEMI, + STATE(1762), 1, + sym_aspect_specification, + [44604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3688), 1, + anon_sym_SEMI, + STATE(1656), 1, + sym_aspect_specification, + [44626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + STATE(1461), 1, + sym_record_definition, + [44639] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3690), 1, anon_sym_EQ_GT, ACTIONS(3692), 1, anon_sym_PIPE, - STATE(1181), 1, - aux_sym_exception_choice_list_repeat1, - [44683] = 4, + STATE(1170), 1, + aux_sym_discrete_choice_list_repeat1, + [44652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_COMMA, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3695), 1, + anon_sym_SEMI, + STATE(1920), 1, + sym_aspect_specification, + [44665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3697), 1, - anon_sym_COLON, - STATE(1169), 1, - aux_sym__defining_identifier_list_repeat1, - [44696] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3699), 1, aux_sym_package_specification_token2, - STATE(1743), 1, + STATE(1521), 1, sym_aspect_specification, - [44709] = 2, + [44678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 3, - aux_sym_terminate_alternative_token1, - aux_sym_accept_statement_token1, - aux_sym_delay_until_statement_token1, - [44718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3703), 1, - anon_sym_SEMI, - STATE(1783), 1, - sym_aspect_specification, - [44731] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3705), 1, - anon_sym_RPAREN, - ACTIONS(3707), 1, - anon_sym_SEMI, - STATE(1199), 1, - aux_sym__parameter_specification_list_repeat1, - [44744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_attribute_designator_token1, - STATE(1318), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [44755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3709), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RPAREN, - STATE(1175), 1, - aux_sym_global_aspect_definition_repeat1, - [44768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3714), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3716), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [44786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3718), 1, - anon_sym_SEMI, - STATE(1797), 1, - sym_aspect_specification, - [44799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3722), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym__enumeration_literal_list_repeat1, - [44821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 1, + ACTIONS(3699), 1, anon_sym_EQ_GT, - ACTIONS(3726), 1, + ACTIONS(3701), 1, anon_sym_PIPE, STATE(1181), 1, aux_sym_exception_choice_list_repeat1, - [44834] = 4, + [44691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2993), 1, + ACTIONS(3703), 1, + anon_sym_COMMA, + ACTIONS(3706), 1, anon_sym_COLON, - ACTIONS(2995), 1, - aux_sym_iterator_specification_token1, - [44847] = 2, + STATE(1174), 1, + aux_sym__defining_identifier_list_repeat1, + [44704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [44856] = 2, + ACTIONS(1759), 1, + aux_sym_attribute_designator_token1, + STATE(1209), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [44715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44865] = 2, + ACTIONS(3708), 1, + anon_sym_COMMA, + ACTIONS(3711), 1, + anon_sym_RPAREN, + STATE(1176), 1, + aux_sym_global_aspect_definition_repeat1, + [44728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44874] = 4, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3713), 1, + anon_sym_SEMI, + STATE(1782), 1, + sym_aspect_specification, + [44741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3717), 1, + anon_sym_SEMI, + STATE(1796), 1, + sym_aspect_specification, + [44763] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2970), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2975), 1, + anon_sym_COLON, + ACTIONS(2977), 1, + aux_sym_iterator_specification_token1, + [44776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3719), 1, + anon_sym_EQ_GT, + ACTIONS(3721), 1, + anon_sym_PIPE, + STATE(1181), 1, + aux_sym_exception_choice_list_repeat1, + [44789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, anon_sym_COMMA, - ACTIONS(3617), 1, + ACTIONS(3615), 1, anon_sym_SEMI, - STATE(1052), 1, + STATE(1048), 1, aux_sym__name_list_repeat1, - [44887] = 2, + [44802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3487), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3739), 1, - aux_sym_package_specification_token2, - STATE(1590), 1, - sym_aspect_specification, - [44927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3741), 1, - aux_sym_package_specification_token2, - STATE(1540), 1, - sym_aspect_specification, - [44940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - STATE(1421), 1, - sym_record_definition, - [44953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_primary_null_token1, - ACTIONS(1785), 1, - aux_sym_record_component_association_list_token1, - STATE(1410), 1, - sym_record_definition, - [44966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(3743), 1, - aux_sym_attribute_designator_token3, - STATE(1434), 1, - sym_real_range_specification, - [44979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 1, - sym_identifier, - STATE(1881), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [44990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 1, + ACTIONS(3724), 3, + aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, - ACTIONS(3749), 1, - anon_sym_PIPE, - STATE(1196), 1, - aux_sym_component_choice_list_repeat1, - [45003] = 2, + aux_sym_loop_statement_token1, + [44811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 3, + ACTIONS(3726), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [44820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3728), 1, + anon_sym_SEMI, + ACTIONS(3730), 1, + aux_sym_with_clause_token1, + [44833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 3, + aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45012] = 2, + aux_sym_pragma_g_token1, + [44842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 3, + ACTIONS(3734), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45021] = 4, + [44851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3736), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3758), 1, + anon_sym_RBRACK, + [44860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3348), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3364), 1, + aux_sym_allocator_token1, + [44873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3738), 1, + aux_sym_package_specification_token2, + STATE(1589), 1, + sym_aspect_specification, + [44886] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3740), 1, + aux_sym_package_specification_token2, + STATE(1538), 1, + sym_aspect_specification, + [44899] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + STATE(1420), 1, + sym_record_definition, + [44912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3742), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [44921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3744), 1, anon_sym_SEMI, - STATE(1199), 1, + STATE(1546), 1, + sym_aspect_specification, + [44934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3746), 1, + anon_sym_SEMI, + STATE(1691), 1, + sym_aspect_specification, + [44947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + aux_sym_primary_null_token1, + ACTIONS(1781), 1, + aux_sym_record_component_association_list_token1, + STATE(1409), 1, + sym_record_definition, + [44960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3748), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_RPAREN, + ACTIONS(3752), 1, + anon_sym_SEMI, + STATE(1198), 1, aux_sym__parameter_specification_list_repeat1, - [45034] = 2, + [44982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 3, + ACTIONS(3755), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45043] = 2, + [44991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 3, + ACTIONS(3757), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45052] = 4, + [45000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3759), 1, + anon_sym_SEMI, + STATE(1631), 1, + sym_aspect_specification, + [45013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3582), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 1, sym_identifier, - STATE(937), 1, - sym__aspect_mark, - STATE(1042), 1, - sym_aspect_association, - [45065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, + ACTIONS(3763), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, + [45033] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(3765), 1, - anon_sym_SEMI, - STATE(1658), 1, - sym_aspect_specification, - [45087] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(1632), 1, - sym_aspect_specification, - [45100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, anon_sym_COMMA, - ACTIONS(3769), 1, + ACTIONS(3768), 1, anon_sym_RPAREN, - STATE(1155), 1, + STATE(1204), 1, + aux_sym_record_component_association_list_repeat2, + [45046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 1, + anon_sym_COMMA, + ACTIONS(3770), 1, + anon_sym_RPAREN, + STATE(1159), 1, aux_sym_case_expression_repeat1, - [45113] = 4, + [45059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3771), 1, - anon_sym_COMMA, - ACTIONS(3773), 1, - anon_sym_RPAREN, - STATE(1330), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [45126] = 4, + ACTIONS(3772), 3, + sym_identifier, + sym_string_literal, + sym_character_literal, + [45068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, - anon_sym_EQ_GT, - ACTIONS(3777), 1, - anon_sym_PIPE, - STATE(1208), 1, - aux_sym_discrete_choice_list_repeat1, - [45139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 3, + ACTIONS(3774), 3, aux_sym_package_specification_token3, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [45148] = 3, + [45077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, - sym_identifier, - ACTIONS(3784), 2, + ACTIONS(1868), 1, + anon_sym_EQ_GT, + ACTIONS(1870), 1, + anon_sym_PIPE, + STATE(1270), 1, + aux_sym_component_choice_list_repeat1, + [45090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3776), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - [45159] = 4, + aux_sym_expression_token3, + [45099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 1, + ACTIONS(3778), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3780), 1, anon_sym_RPAREN, - STATE(1149), 1, + STATE(1154), 1, aux_sym_index_constraint_repeat1, - [45172] = 4, + [45112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3790), 1, + ACTIONS(3782), 1, anon_sym_SEMI, - STATE(1886), 1, + STATE(1615), 1, sym_aspect_specification, - [45185] = 4, + [45125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_SEMI, - STATE(1820), 1, + STATE(1819), 1, sym_aspect_specification, - [45198] = 4, + [45138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3794), 1, + ACTIONS(3786), 1, + anon_sym_SEMI, + STATE(1824), 1, + sym_aspect_specification, + [45151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3788), 1, anon_sym_SEMI, STATE(1825), 1, sym_aspect_specification, - [45211] = 4, + [45164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3796), 1, + ACTIONS(3790), 1, anon_sym_SEMI, STATE(1826), 1, sym_aspect_specification, - [45224] = 4, + [45177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3798), 1, - anon_sym_SEMI, - STATE(1827), 1, - sym_aspect_specification, - [45237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3800), 1, + ACTIONS(3792), 1, anon_sym_COMMA, - ACTIONS(3802), 1, + ACTIONS(3794), 1, anon_sym_RPAREN, - STATE(1144), 1, + STATE(1153), 1, aux_sym_record_component_association_list_repeat1, - [45250] = 4, + [45190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, + ACTIONS(3796), 1, anon_sym_COMMA, - ACTIONS(3806), 1, + ACTIONS(3798), 1, anon_sym_RPAREN, - STATE(1090), 1, + STATE(1120), 1, aux_sym_positional_array_aggregate_repeat1, - [45263] = 4, + [45203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3808), 1, + ACTIONS(3800), 1, anon_sym_SEMI, - STATE(1829), 1, + STATE(1828), 1, sym_aspect_specification, - [45276] = 3, + [45216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3810), 1, + ACTIONS(3802), 1, anon_sym_COMMA, - ACTIONS(3146), 2, + ACTIONS(3061), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [45287] = 4, + [45227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3812), 1, + ACTIONS(3804), 3, anon_sym_SEMI, - STATE(1750), 1, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3810), 1, + aux_sym_package_specification_token2, + STATE(1538), 1, sym_aspect_specification, - [45300] = 2, + [45267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45276] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3814), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45309] = 4, + [45285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3816), 1, + ACTIONS(3816), 3, anon_sym_SEMI, - STATE(1906), 1, - sym_aspect_specification, - [45322] = 4, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3818), 1, anon_sym_SEMI, - STATE(1908), 1, + STATE(1629), 1, sym_aspect_specification, - [45335] = 4, + [45307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(3820), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3820), 1, - aux_sym_package_specification_token2, - STATE(1540), 1, - sym_aspect_specification, - [45348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 1, - sym_identifier, - STATE(1439), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [45359] = 2, + aux_sym_expression_token3, + [45316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3822), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45368] = 2, + [45325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 3, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3194), 1, anon_sym_SEMI, + STATE(1626), 1, + sym_aspect_specification, + [45338] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3828), 3, + ACTIONS(3332), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45395] = 4, + STATE(1858), 1, + sym_aspect_specification, + [45351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, + ACTIONS(3824), 1, + anon_sym_SEMI, + STATE(1712), 1, + sym_aspect_specification, + [45364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3826), 1, + anon_sym_SEMI, + STATE(1848), 1, + sym_aspect_specification, + [45377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 1, + aux_sym_allocator_token1, + ACTIONS(3828), 1, + aux_sym_with_clause_token1, ACTIONS(3830), 1, - anon_sym_SEMI, - STATE(1616), 1, - sym_aspect_specification, - [45408] = 4, + aux_sym_private_type_declaration_token2, + [45390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3213), 1, - anon_sym_SEMI, - STATE(1859), 1, - sym_aspect_specification, - [45421] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1398), 1, - sym__enumeration_literal_specification, - ACTIONS(3832), 2, - sym_identifier, - sym_character_literal, - [45432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, + ACTIONS(3832), 1, + anon_sym_COMMA, ACTIONS(3834), 1, - anon_sym_SEMI, - STATE(1849), 1, - sym_aspect_specification, - [45445] = 2, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym__index_subtype_definition_list_repeat1, + [45403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3836), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 1, - anon_sym_COMMA, - ACTIONS(3838), 1, - anon_sym_RPAREN, - STATE(1295), 1, - aux_sym__index_subtype_definition_list_repeat1, - [45467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3840), 1, - anon_sym_SEMI, - STATE(1716), 1, - sym_aspect_specification, - [45480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3842), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [45489] = 4, + [45412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(3838), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3840), 1, + anon_sym_SEMI, + STATE(1749), 1, + sym_aspect_specification, + [45434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3844), 1, - anon_sym_SEMI, - STATE(1888), 1, + aux_sym_package_specification_token2, + STATE(1742), 1, sym_aspect_specification, - [45502] = 4, + [45456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, ACTIONS(3846), 1, - anon_sym_SEMI, - STATE(1921), 1, - sym_aspect_specification, - [45515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3848), 1, + anon_sym_COMMA, + ACTIONS(3849), 1, anon_sym_RPAREN, - ACTIONS(3850), 1, - anon_sym_SEMI, STATE(1241), 1, - aux_sym_discriminant_specification_list_repeat1, - [45528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_RPAREN, - STATE(1211), 1, - aux_sym_index_constraint_repeat1, - [45541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3855), 1, - anon_sym_LPAREN, - STATE(1733), 1, - sym_iterated_element_association, - [45554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_COMMA, - ACTIONS(3857), 1, - anon_sym_COLON, - STATE(1169), 1, - aux_sym__defining_identifier_list_repeat1, - [45567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RPAREN, - STATE(1245), 1, aux_sym_case_expression_repeat1, - [45580] = 4, + [45469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(3851), 1, + anon_sym_COMMA, + ACTIONS(3854), 1, + anon_sym_RPAREN, + STATE(1242), 1, + aux_sym__enumeration_literal_list_repeat1, + [45482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + anon_sym_RPAREN, + STATE(1216), 1, + aux_sym_record_component_association_list_repeat1, + [45495] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3864), 1, + ACTIONS(3858), 1, anon_sym_SEMI, - STATE(1711), 1, + STATE(1709), 1, sym_aspect_specification, - [45593] = 4, + [45508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3860), 1, + anon_sym_SEMI, + STATE(1706), 1, + sym_aspect_specification, + [45521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(3864), 1, + anon_sym_RPAREN, + STATE(1324), 1, + aux_sym_actual_parameter_part_repeat1, + [45534] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3866), 1, anon_sym_COMMA, ACTIONS(3868), 1, anon_sym_RPAREN, - STATE(1167), 1, - aux_sym_actual_parameter_part_repeat1, - [45606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 1, - aux_sym_allocator_token1, - ACTIONS(3870), 1, - aux_sym_with_clause_token1, - ACTIONS(3872), 1, - aux_sym_private_type_declaration_token2, - [45619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_COMMA, - ACTIONS(3876), 1, - anon_sym_RPAREN, - STATE(1297), 1, + STATE(1296), 1, aux_sym_pragma_g_repeat1, - [45632] = 2, + [45547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 3, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3870), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45641] = 4, + STATE(1707), 1, + sym_aspect_specification, + [45560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(3872), 1, + anon_sym_COMMA, + ACTIONS(3874), 1, + anon_sym_RPAREN, + STATE(1299), 1, + aux_sym_record_component_association_list_repeat2, + [45573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, + ACTIONS(3876), 1, + anon_sym_SEMI, + STATE(1506), 1, + sym_aspect_specification, + [45586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3878), 1, + anon_sym_SEMI, + STATE(1865), 1, + sym_aspect_specification, + [45599] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1880), 1, + anon_sym_COMMA, ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(1507), 1, - sym_aspect_specification, - [45654] = 4, + anon_sym_COLON, + STATE(1174), 1, + aux_sym__defining_identifier_list_repeat1, + [45612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, ACTIONS(3882), 1, - anon_sym_SEMI, - STATE(1866), 1, - sym_aspect_specification, - [45667] = 4, + anon_sym_LPAREN, + STATE(1732), 1, + sym_iterated_element_association, + [45625] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3884), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(3886), 1, - anon_sym_RPAREN, - STATE(1301), 1, - aux_sym_record_component_association_list_repeat2, - [45680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3888), 1, - anon_sym_COMMA, - ACTIONS(3891), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym__enumeration_literal_list_repeat1, - [45693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3893), 1, anon_sym_SEMI, - STATE(1710), 1, - sym_aspect_specification, - [45706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3895), 1, - aux_sym_package_specification_token2, - STATE(1853), 1, - sym_aspect_specification, - [45719] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3897), 1, - anon_sym_SEMI, - STATE(1511), 1, - sym_aspect_specification, - [45732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3899), 1, - anon_sym_SEMI, - STATE(1708), 1, - sym_aspect_specification, - [45745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3901), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3903), 1, - anon_sym_EQ_GT, - ACTIONS(3905), 1, - anon_sym_PIPE, - STATE(1333), 1, - aux_sym_discrete_choice_list_repeat1, - [45767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3907), 1, - anon_sym_SEMI, - STATE(1837), 1, - sym_aspect_specification, - [45780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3434), 1, - aux_sym_allocator_token1, - ACTIONS(3438), 1, - aux_sym_compilation_unit_token1, - [45820] = 4, + STATE(1326), 1, + aux_sym__parameter_specification_list_repeat1, + [45638] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(501), 1, aux_sym_value_sequence_token1, - STATE(1885), 1, + STATE(1884), 1, sym_iterated_element_association, - [45833] = 4, + [45651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3915), 1, + ACTIONS(3888), 1, anon_sym_SEMI, - STATE(1761), 1, + STATE(1510), 1, sym_aspect_specification, - [45846] = 3, + [45664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, - aux_sym_iterator_filter_token1, - STATE(1081), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [45857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - anon_sym_SEMI, - ACTIONS(3917), 1, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(3890), 1, anon_sym_RPAREN, - STATE(1173), 1, - aux_sym__parameter_specification_list_repeat1, - [45870] = 4, + STATE(1210), 1, + aux_sym_index_constraint_repeat1, + [45677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3919), 1, - anon_sym_SEMI, - STATE(1694), 1, - sym_aspect_specification, - [45883] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3921), 1, - anon_sym_SEMI, - STATE(1612), 1, - sym_aspect_specification, - [45896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3923), 1, - anon_sym_SEMI, - ACTIONS(3925), 1, - aux_sym_with_clause_token1, - [45909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3927), 3, - aux_sym_iterated_element_association_token2, + ACTIONS(3892), 1, anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3929), 1, - anon_sym_SEMI, - STATE(1768), 1, - sym_aspect_specification, - [45931] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3804), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_RPAREN, - STATE(1218), 1, - aux_sym_positional_array_aggregate_repeat1, - [45944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3800), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_RPAREN, - STATE(1217), 1, - aux_sym_record_component_association_list_repeat1, - [45957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, + ACTIONS(3894), 1, anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_EQ_GT, - STATE(1196), 1, - aux_sym_component_choice_list_repeat1, - [45970] = 2, + STATE(1323), 1, + aux_sym_discrete_choice_list_repeat1, + [45690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3939), 1, + ACTIONS(3896), 1, anon_sym_SEMI, - STATE(1764), 1, + STATE(1680), 1, sym_aspect_specification, - [46001] = 2, + [45703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 3, - aux_sym_iterated_element_association_token2, + ACTIONS(3701), 1, + anon_sym_PIPE, + ACTIONS(3898), 1, anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46010] = 2, + STATE(1173), 1, + aux_sym_exception_choice_list_repeat1, + [45716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, + ACTIONS(3900), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3941), 1, - aux_sym_package_specification_token2, - STATE(1590), 1, - sym_aspect_specification, - [46032] = 3, + aux_sym_expression_token3, + [45725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(3902), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3904), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, sym_identifier, - STATE(1873), 2, + STATE(1439), 2, sym_loop_parameter_specification, sym_iterator_specification, - [46043] = 2, + [45754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 3, + ACTIONS(3908), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 1, + aux_sym_iterator_filter_token1, + STATE(1095), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [45774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3910), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [45783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RPAREN, + STATE(1217), 1, + aux_sym_positional_array_aggregate_repeat1, + [45796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3914), 1, + anon_sym_SEMI, + STATE(1876), 1, + sym_aspect_specification, + [45809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 1, + anon_sym_PIPE, + ACTIONS(3916), 1, + anon_sym_EQ_GT, + STATE(1322), 1, + aux_sym_component_choice_list_repeat1, + [45822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3920), 1, + anon_sym_SEMI, + STATE(1767), 1, + sym_aspect_specification, + [45844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3922), 1, + anon_sym_SEMI, + STATE(1763), 1, + sym_aspect_specification, + [45866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, + anon_sym_COLON, + STATE(1252), 1, + aux_sym__defining_identifier_list_repeat1, + [45879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, + sym_identifier, + STATE(1872), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [45890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [46052] = 4, + [45899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, + ACTIONS(3384), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3926), 1, + anon_sym_SEMI, + STATE(1885), 1, + sym_aspect_specification, + [45921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3928), 1, + aux_sym_package_specification_token2, + STATE(1589), 1, + sym_aspect_specification, + [45934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [45943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, anon_sym_COMMA, - ACTIONS(3948), 1, + ACTIONS(3933), 1, anon_sym_RPAREN, - STATE(1286), 1, + STATE(1282), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [46065] = 4, + [45956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3935), 1, + anon_sym_SEMI, + STATE(1887), 1, + sym_aspect_specification, + [45969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RPAREN, + STATE(1246), 1, + aux_sym_actual_parameter_part_repeat1, + [45982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3939), 1, + anon_sym_SEMI, + STATE(1907), 1, + sym_aspect_specification, + [45995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3941), 1, + anon_sym_SEMI, + STATE(1756), 1, + sym_aspect_specification, + [46008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3943), 1, + anon_sym_SEMI, + STATE(1592), 1, + sym_aspect_specification, + [46021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3945), 1, + anon_sym_SEMI, + STATE(1905), 1, + sym_aspect_specification, + [46034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3947), 1, + anon_sym_SEMI, + STATE(1534), 1, + sym_aspect_specification, + [46047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3949), 1, + anon_sym_SEMI, + STATE(1535), 1, + sym_aspect_specification, + [46060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3951), 1, + aux_sym_package_specification_token2, + STATE(1701), 1, + sym_aspect_specification, + [46073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3953), 3, + aux_sym_terminate_alternative_token1, + aux_sym_accept_statement_token1, + aux_sym_delay_until_statement_token1, + [46082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3955), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, + anon_sym_RPAREN, + STATE(1300), 1, + aux_sym_global_aspect_definition_repeat1, + [46108] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1276), 1, + sym_quantifier, + ACTIONS(3051), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [46119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3964), 1, + anon_sym_COMMA, + ACTIONS(3967), 1, + anon_sym_RPAREN, + STATE(1296), 1, + aux_sym_pragma_g_repeat1, + [46132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3969), 1, + anon_sym_SEMI, + STATE(1588), 1, + sym_aspect_specification, + [46145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 1, + sym_identifier, + STATE(1414), 1, + sym__named_record_component_association, + STATE(1670), 1, + sym_component_choice_list, + [46158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_COMMA, + ACTIONS(3973), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_record_component_association_list_repeat2, + [46171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, + anon_sym_RPAREN, + STATE(1176), 1, + aux_sym_global_aspect_definition_repeat1, + [46184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3977), 1, + aux_sym_package_specification_token2, + STATE(1852), 1, + sym_aspect_specification, + [46197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3979), 1, + anon_sym_SEMI, + STATE(1724), 1, + sym_aspect_specification, + [46210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, + anon_sym_RPAREN, + STATE(1235), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3985), 1, + anon_sym_SEMI, + STATE(1571), 1, + sym_aspect_specification, + [46245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3987), 1, + anon_sym_SEMI, + STATE(1747), 1, + sym_aspect_specification, + [46258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3989), 1, + anon_sym_SEMI, + STATE(1572), 1, + sym_aspect_specification, + [46271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + anon_sym_COMMA, + ACTIONS(3993), 1, + anon_sym_RBRACK, + STATE(1120), 1, + aux_sym_positional_array_aggregate_repeat1, + [46284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3995), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [46306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 3, + anon_sym_RPAREN, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [46315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3295), 1, + anon_sym_SEMI, + STATE(1600), 1, + sym_aspect_specification, + [46328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [46337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 3, + anon_sym_SEMI, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [46346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(4007), 1, + anon_sym_SEMI, + STATE(1601), 1, + sym_aspect_specification, + [46359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, + anon_sym_COMMA, + ACTIONS(4009), 1, + anon_sym_SEMI, + STATE(1048), 1, + aux_sym__name_list_repeat1, + [46372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4011), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46381] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3866), 1, anon_sym_COMMA, - ACTIONS(3950), 1, + ACTIONS(4013), 1, anon_sym_RPAREN, STATE(1247), 1, - aux_sym_actual_parameter_part_repeat1, - [46078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3952), 1, - anon_sym_SEMI, - STATE(1757), 1, - sym_aspect_specification, - [46091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3954), 1, - anon_sym_SEMI, - STATE(1593), 1, - sym_aspect_specification, - [46104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3956), 1, - anon_sym_SEMI, - STATE(1535), 1, - sym_aspect_specification, - [46117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3958), 1, - anon_sym_SEMI, - STATE(1536), 1, - sym_aspect_specification, - [46130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [46139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3962), 1, - anon_sym_SEMI, - STATE(1547), 1, - sym_aspect_specification, - [46152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3964), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_COMMA, - ACTIONS(3969), 1, - anon_sym_RPAREN, - STATE(1295), 1, - aux_sym__index_subtype_definition_list_repeat1, - [46174] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3971), 1, - anon_sym_SEMI, - STATE(1730), 1, - sym_aspect_specification, - [46187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3973), 1, - anon_sym_COMMA, - ACTIONS(3976), 1, - anon_sym_RPAREN, - STATE(1297), 1, aux_sym_pragma_g_repeat1, - [46200] = 4, + [46394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_COMMA, - ACTIONS(3980), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_global_aspect_definition_repeat1, - [46213] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1284), 1, - sym_quantifier, - ACTIONS(3140), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [46224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3982), 1, + ACTIONS(3906), 1, sym_identifier, - STATE(1346), 1, - sym__named_record_component_association, - STATE(1671), 1, - sym_component_choice_list, - [46237] = 4, + STATE(1880), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [46405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 1, - anon_sym_COMMA, - ACTIONS(3984), 1, - anon_sym_RPAREN, - STATE(1325), 1, - aux_sym_record_component_association_list_repeat2, - [46250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3692), 1, - anon_sym_PIPE, - ACTIONS(3986), 1, - anon_sym_EQ_GT, - STATE(1168), 1, - aux_sym_exception_choice_list_repeat1, - [46263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3207), 1, - anon_sym_SEMI, - STATE(1628), 1, - sym_aspect_specification, - [46276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3978), 1, - anon_sym_COMMA, - ACTIONS(3988), 1, - anon_sym_RPAREN, - STATE(1175), 1, - aux_sym_global_aspect_definition_repeat1, - [46289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3990), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3992), 1, - anon_sym_SEMI, - STATE(1572), 1, - sym_aspect_specification, - [46311] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3994), 1, - anon_sym_SEMI, - STATE(1748), 1, - sym_aspect_specification, - [46324] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(3996), 1, - anon_sym_SEMI, - STATE(1573), 1, - sym_aspect_specification, - [46337] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3998), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 3, + ACTIONS(4015), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [46364] = 2, + [46414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4006), 3, + ACTIONS(3254), 1, sym_identifier, - sym_string_literal, - sym_character_literal, - [46382] = 4, + STATE(1427), 1, + sym_parameter_specification, + STATE(1545), 1, + sym__defining_identifier_list, + [46427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(4008), 1, - anon_sym_SEMI, - STATE(1631), 1, - sym_aspect_specification, - [46395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 3, - anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [46404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(4012), 1, - anon_sym_SEMI, - STATE(1589), 1, - sym_aspect_specification, - [46417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4016), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_COMMA, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1249), 1, - aux_sym_pragma_g_repeat1, - [46448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, - ACTIONS(4020), 1, - aux_sym_package_specification_token2, - STATE(1702), 1, - sym_aspect_specification, - [46461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1872), 1, + ACTIONS(4017), 1, anon_sym_EQ_GT, - ACTIONS(1874), 1, + ACTIONS(4019), 1, anon_sym_PIPE, - STATE(1277), 1, + STATE(1322), 1, aux_sym_component_choice_list_repeat1, - [46483] = 4, + [46440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_EQ_GT, + STATE(1170), 1, + aux_sym_discrete_choice_list_repeat1, + [46453] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4024), 1, anon_sym_COMMA, - ACTIONS(4026), 1, - anon_sym_RBRACK, - STATE(1090), 1, - aux_sym_positional_array_aggregate_repeat1, - [46496] = 3, + ACTIONS(4027), 1, + anon_sym_RPAREN, + STATE(1324), 1, + aux_sym_actual_parameter_part_repeat1, + [46466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(4029), 1, + anon_sym_SEMI, + ACTIONS(4031), 1, + aux_sym_package_specification_token2, + ACTIONS(4033), 1, + aux_sym_expression_token3, + [46479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + anon_sym_SEMI, + ACTIONS(4035), 1, + anon_sym_RPAREN, + STATE(1198), 1, + aux_sym__parameter_specification_list_repeat1, + [46492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 1, aux_sym_expression_token2, - ACTIONS(4028), 2, + ACTIONS(4037), 2, aux_sym_expression_token3, aux_sym_expression_token4, - [46507] = 4, + [46503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 1, + ACTIONS(4039), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, anon_sym_COMMA, - ACTIONS(4033), 1, - anon_sym_RPAREN, - STATE(1325), 1, - aux_sym_record_component_association_list_repeat2, - [46520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_SEMI, - ACTIONS(4037), 1, - aux_sym_package_specification_token2, - ACTIONS(4039), 1, - aux_sym_expression_token3, - [46533] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 1, - aux_sym_with_clause_token2, ACTIONS(4041), 1, - anon_sym_SEMI, - STATE(1729), 1, - sym_aspect_specification, - [46546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 3, - anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - [46555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4043), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46564] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - anon_sym_COMMA, - ACTIONS(4045), 1, - anon_sym_RPAREN, - STATE(1286), 1, + STATE(1282), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [46577] = 2, + [46525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4043), 3, + ACTIONS(4039), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46586] = 4, + [46534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 1, - anon_sym_COMMA, - ACTIONS(4047), 1, + ACTIONS(4043), 3, anon_sym_SEMI, - STATE(1052), 1, - aux_sym__name_list_repeat1, - [46599] = 4, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(4045), 1, + anon_sym_SEMI, + STATE(1728), 1, + sym_aspect_specification, + [46556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - anon_sym_PIPE, ACTIONS(4049), 1, - anon_sym_EQ_GT, - STATE(1208), 1, - aux_sym_discrete_choice_list_repeat1, - [46612] = 2, + aux_sym_with_clause_token2, + STATE(1450), 1, + sym_record_extension_part, + [46574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4051), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46620] = 2, + [46598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4053), 2, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [46628] = 2, + aux_sym_with_clause_token2, + [46606] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4055), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46636] = 2, + [46614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4053), 2, + ACTIONS(4057), 1, anon_sym_SEMI, + ACTIONS(4059), 1, aux_sym_accept_statement_token2, - [46644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [46676] = 3, + [46624] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4061), 1, - anon_sym_SEMI, + aux_sym_package_specification_token3, ACTIONS(4063), 1, - aux_sym_accept_statement_token2, - [46686] = 2, + aux_sym_exception_declaration_token1, + [46634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4065), 1, + sym_identifier, + ACTIONS(4067), 1, + anon_sym_SEMI, + [46644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4067), 1, - sym_identifier, - ACTIONS(4069), 1, - anon_sym_SEMI, - [46704] = 2, + [46652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4071), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46712] = 2, + [46660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4033), 2, + ACTIONS(4027), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46720] = 3, + [46668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - sym_identifier, ACTIONS(4075), 1, - anon_sym_SEMI, - [46730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4079), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 1, sym_identifier, - ACTIONS(4083), 1, + ACTIONS(4077), 1, anon_sym_SEMI, - [46756] = 3, + [46686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(4017), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3476), 1, anon_sym_SEMI, - ACTIONS(3471), 1, + ACTIONS(3478), 1, aux_sym_package_specification_token2, - [46766] = 3, + [46704] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4079), 1, + sym_identifier, + ACTIONS(4081), 1, + anon_sym_SEMI, + [46714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + sym_identifier, ACTIONS(4085), 1, - sym_identifier, + anon_sym_SEMI, + [46724] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4087), 1, - anon_sym_SEMI, - [46776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, sym_identifier, - ACTIONS(4091), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - [46786] = 3, + [46734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3461), 1, - aux_sym_allocator_token1, - [46796] = 3, + ACTIONS(4091), 1, + aux_sym_iterator_filter_token1, + STATE(1205), 1, + sym_case_expression_alternative, + [46744] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4093), 1, aux_sym_compilation_unit_token1, ACTIONS(4095), 1, - aux_sym_with_clause_token1, - [46806] = 3, + aux_sym_with_clause_token2, + [46754] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4097), 1, - sym_identifier, - STATE(231), 1, - sym_reduction_attribute_designator, - [46816] = 3, - ACTIONS(3), 1, - sym_comment, + aux_sym_compilation_unit_token1, ACTIONS(4099), 1, - anon_sym_SEMI, + aux_sym_with_clause_token1, + [46764] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4101), 1, - aux_sym_accept_statement_token2, - [46826] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_SEMI, ACTIONS(4103), 1, - aux_sym_with_clause_token2, - STATE(1455), 1, - sym_record_extension_part, - [46836] = 3, + aux_sym_accept_statement_token2, + [46774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, - anon_sym_COMMA, - STATE(1090), 1, - aux_sym_positional_array_aggregate_repeat1, - [46846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_formal_part, - [46856] = 3, + ACTIONS(4105), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46782] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4107), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4109), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym_positional_array_aggregate_repeat1, + [46792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - [46866] = 2, + [46800] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4111), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [46808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(4115), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [46874] = 2, + [46818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3969), 2, + ACTIONS(3967), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46890] = 3, + [46826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3434), 1, - aux_sym_allocator_token1, - [46900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4115), 2, + ACTIONS(3958), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46916] = 2, + [46834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4117), 2, anon_sym_COMMA, anon_sym_RPAREN, - [46924] = 2, + [46842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4119), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46932] = 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4121), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46940] = 3, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [46858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4123), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, - aux_sym_package_specification_token3, ACTIONS(4125), 1, - aux_sym_subprogram_body_token1, - [46950] = 2, + aux_sym_with_clause_token2, + STATE(1372), 1, + sym_record_extension_part, + [46876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4127), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46958] = 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4129), 2, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [46966] = 2, + aux_sym_with_clause_token2, + [46892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, + ACTIONS(4131), 1, sym_identifier, - ACTIONS(4135), 1, + ACTIONS(4133), 1, anon_sym_SEMI, - [46984] = 2, + [46902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4137), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 1, - aux_sym_with_clause_token2, - STATE(1455), 1, - sym_record_extension_part, - [47002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 1, - aux_sym_with_clause_token2, - ACTIONS(4143), 1, - aux_sym_expression_token1, - [47012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 1, - anon_sym_SEMI, - ACTIONS(4147), 1, - aux_sym_package_specification_token2, - [47022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 1, - aux_sym_with_clause_token2, - STATE(1362), 1, - sym_record_extension_part, - [47032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3146), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - sym_identifier, - ACTIONS(4151), 1, - anon_sym_SEMI, - [47050] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4153), 1, - sym_identifier, - ACTIONS(4155), 1, - anon_sym_SEMI, - [47068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3572), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [47076] = 2, + [46918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, + ACTIONS(4139), 1, + aux_sym_with_clause_token2, + ACTIONS(4141), 1, + aux_sym_expression_token1, + [46928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, + anon_sym_SEMI, + ACTIONS(4145), 1, + aux_sym_package_specification_token2, + [46938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + aux_sym_with_clause_token2, + STATE(1359), 1, + sym_record_extension_part, + [46948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47084] = 2, + [46956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(4149), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47092] = 3, + [46964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 1, - aux_sym_with_clause_token2, - STATE(1427), 1, - sym_record_extension_part, - [47102] = 3, + ACTIONS(4151), 1, + anon_sym_LPAREN, + ACTIONS(4153), 1, + anon_sym_SEMI, + [46974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3061), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 2, anon_sym_COMMA, - ACTIONS(4163), 1, + anon_sym_RPAREN, + [46990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, anon_sym_RBRACK, - [47112] = 3, + [47000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(4160), 1, + sym_identifier, + ACTIONS(4162), 1, + anon_sym_SEMI, + [47010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, aux_sym_iterator_filter_token1, - STATE(1781), 1, + STATE(1780), 1, sym_entry_barrier, - [47122] = 2, + [47028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [47130] = 3, + ACTIONS(3356), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47036] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4166), 1, + sym_identifier, ACTIONS(4168), 1, anon_sym_SEMI, + [47046] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4170), 1, + anon_sym_SEMI, + ACTIONS(4172), 1, + aux_sym_accept_statement_token2, + [47056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym_SEMI, + ACTIONS(4176), 1, aux_sym_package_specification_token2, - [47140] = 2, + [47066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47148] = 2, + ACTIONS(4178), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 2, + ACTIONS(4180), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4176), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 1, - aux_sym_with_clause_token2, - STATE(1427), 1, - sym_record_extension_part, - [47182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3848), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4178), 1, - sym_identifier, - ACTIONS(4180), 1, - anon_sym_SEMI, - [47208] = 2, + [47082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4182), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47216] = 2, + [47090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3849), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4184), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3862), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47232] = 2, + [47106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4186), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_SEMI, + [47124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47240] = 2, + [47132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 2, + ACTIONS(4192), 1, + aux_sym_expression_token3, + ACTIONS(4194), 1, + aux_sym_expression_token4, + [47142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4196), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [47248] = 2, + [47150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 2, + ACTIONS(4198), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_with_clause_token2, - [47256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4196), 1, - sym_identifier, - ACTIONS(4198), 1, - anon_sym_SEMI, - [47282] = 2, + [47158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4200), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47290] = 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47166] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4202), 1, - aux_sym_with_clause_token2, - STATE(1362), 1, - sym_record_extension_part, - [47300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2737), 1, - aux_sym_result_profile_token1, - STATE(825), 1, - sym_result_profile, - [47310] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4204), 1, - sym_identifier, + anon_sym_SEMI, + [47176] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4206), 1, - anon_sym_SEMI, - [47320] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4208), 1, - sym_identifier, - ACTIONS(4210), 1, anon_sym_SEMI, - [47330] = 2, + [47186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4212), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47338] = 3, + ACTIONS(2718), 1, + aux_sym_result_profile_token1, + STATE(823), 1, + sym_result_profile, + [47196] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4210), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4212), 1, + sym_identifier, ACTIONS(4214), 1, - sym_identifier, - ACTIONS(4216), 1, anon_sym_SEMI, - [47348] = 2, + [47214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47356] = 3, + ACTIONS(4216), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47222] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4218), 1, + sym_identifier, ACTIONS(4220), 1, - sym_identifier, - ACTIONS(4222), 1, anon_sym_SEMI, - [47366] = 3, + [47232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4222), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4224), 1, - anon_sym_SEMI, - ACTIONS(4226), 1, - aux_sym_package_specification_token2, - [47376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_SEMI, - ACTIONS(4231), 1, - aux_sym_package_specification_token2, - [47386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4233), 2, - anon_sym_SEMI, aux_sym_with_clause_token2, - [47394] = 3, + STATE(1359), 1, + sym_record_extension_part, + [47250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - aux_sym_with_clause_token2, - ACTIONS(4237), 1, - aux_sym_expression_token1, - [47404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4239), 1, - aux_sym_iterator_filter_token1, - STATE(1206), 1, - sym_case_expression_alternative, - [47414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4241), 1, - sym_identifier, - ACTIONS(4243), 1, - anon_sym_SEMI, - [47424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3756), 2, + ACTIONS(4226), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [47440] = 2, + [47258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 2, + ACTIONS(4228), 1, + sym_identifier, + ACTIONS(4230), 1, + anon_sym_SEMI, + [47268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3460), 1, + aux_sym_allocator_token1, + [47278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3768), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4232), 1, + anon_sym_SEMI, + ACTIONS(4234), 1, + aux_sym_package_specification_token2, + [47296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, + anon_sym_SEMI, + ACTIONS(4239), 1, + aux_sym_package_specification_token2, + [47306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, + sym_identifier, + ACTIONS(4245), 1, + anon_sym_SEMI, + [47324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4249), 1, + anon_sym_SEMI, + [47334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4249), 1, - sym_identifier, - ACTIONS(4251), 1, - anon_sym_SEMI, - [47458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2278), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2280), 1, - aux_sym_access_to_subprogram_definition_token3, - [47468] = 3, + [47342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4253), 1, - sym_identifier, + aux_sym_with_clause_token2, ACTIONS(4255), 1, - anon_sym_SEMI, - [47478] = 3, + aux_sym_expression_token1, + [47352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(2469), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3486), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4259), 1, + ACTIONS(2284), 1, aux_sym_access_to_subprogram_definition_token3, - [47488] = 2, + [47386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3364), 1, + aux_sym_allocator_token1, + [47396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 1, + sym_identifier, + STATE(251), 1, + sym_reduction_attribute_designator, + [47414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3690), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + anon_sym_LPAREN, + STATE(1366), 1, + sym_formal_part, + [47432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4261), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47496] = 3, + [47440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4265), 1, + aux_sym_access_to_subprogram_definition_token3, + [47450] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - STATE(1798), 1, + STATE(1797), 1, sym_iterated_element_association, - [47506] = 2, + [47460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4265), 1, - sym_identifier, ACTIONS(4267), 1, - anon_sym_SEMI, - [47524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4269), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47548] = 3, + aux_sym_package_specification_token3, + ACTIONS(4269), 1, + aux_sym_subprogram_body_token1, + [47470] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4271), 1, - aux_sym_iterated_element_association_token2, + sym_identifier, ACTIONS(4273), 1, + anon_sym_SEMI, + [47480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4275), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3719), 2, anon_sym_EQ_GT, - [47558] = 3, + anon_sym_PIPE, + [47496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + aux_sym_with_clause_token2, + STATE(1450), 1, + sym_record_extension_part, + [47506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 1, - sym_identifier, ACTIONS(4277), 1, - anon_sym_SEMI, - [47568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3712), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47576] = 3, - ACTIONS(3), 1, - sym_comment, + aux_sym_iterated_element_association_token2, ACTIONS(4279), 1, - sym_identifier, + anon_sym_EQ_GT, + [47516] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4281), 1, - anon_sym_SEMI, - [47586] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4283), 1, - sym_identifier, + anon_sym_SEMI, + [47526] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4285), 1, - anon_sym_SEMI, - [47596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3688), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3045), 1, - aux_sym_allocator_token1, - [47614] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4287), 1, - sym_identifier, - ACTIONS(4289), 1, anon_sym_SEMI, - [47624] = 3, + [47536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 1, - sym_identifier, - ACTIONS(4293), 1, - anon_sym_SEMI, - [47634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 2, + ACTIONS(3711), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47642] = 3, + [47544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - aux_sym_iterator_filter_token1, - STATE(1655), 1, - sym_entry_barrier, - [47652] = 2, + ACTIONS(4289), 1, + sym_identifier, + ACTIONS(4291), 1, + anon_sym_SEMI, + [47554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3118), 1, + aux_sym_allocator_token1, + [47564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + sym_identifier, + ACTIONS(4295), 1, + anon_sym_SEMI, + [47574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4297), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [47660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - aux_sym_package_specification_token3, - ACTIONS(4301), 1, - aux_sym_exception_declaration_token1, - [47670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4303), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47678] = 3, + [47582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, - sym_identifier, - ACTIONS(4307), 1, - anon_sym_SEMI, - [47688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 2, + ACTIONS(3706), 2, anon_sym_COMMA, anon_sym_COLON, - [47696] = 2, + [47590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 2, + ACTIONS(2958), 1, + aux_sym_iterator_filter_token1, + STATE(1654), 1, + sym_entry_barrier, + [47600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [47608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47704] = 2, + [47616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4311), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3365), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 1, + ACTIONS(217), 1, aux_sym_package_specification_token3, - ACTIONS(267), 1, + ACTIONS(219), 1, aux_sym_subprogram_body_token1, - [47738] = 3, + [47626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, - aux_sym_iterator_filter_token1, - STATE(1403), 1, - sym_case_expression_alternative, - [47748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, + ACTIONS(4303), 1, + sym_identifier, + ACTIONS(4305), 1, anon_sym_SEMI, - ACTIONS(3675), 1, - aux_sym_package_specification_token2, - [47758] = 3, + [47636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(4307), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3170), 1, + anon_sym_SEMI, + ACTIONS(3697), 1, + aux_sym_package_specification_token2, + [47654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3391), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 1, + sym_identifier, + ACTIONS(4311), 1, + anon_sym_SEMI, + [47672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3420), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3550), 1, aux_sym_compilation_unit_token1, ACTIONS(4313), 1, aux_sym_with_clause_token1, - [47768] = 2, + [47690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47776] = 3, + ACTIONS(4091), 1, + aux_sym_iterator_filter_token1, + STATE(1393), 1, + sym_case_expression_alternative, + [47700] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4315), 1, + aux_sym_with_clause_token2, ACTIONS(4317), 1, - anon_sym_SEMI, - ACTIONS(4319), 1, - aux_sym_package_specification_token2, - [47786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4321), 1, - aux_sym_with_clause_token2, - ACTIONS(4323), 1, aux_sym_expression_token1, - [47796] = 2, + [47710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 2, + ACTIONS(4319), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47820] = 3, + [47718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - aux_sym_expression_token3, - ACTIONS(4332), 1, - aux_sym_expression_token4, - [47830] = 3, + ACTIONS(4321), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 1, + ACTIONS(4323), 1, sym_identifier, - ACTIONS(3681), 1, - aux_sym_use_clause_token2, - [47840] = 3, + ACTIONS(4325), 1, + anon_sym_SEMI, + [47736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - sym_identifier, - ACTIONS(3625), 1, - aux_sym_use_clause_token2, - [47850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 2, + ACTIONS(4327), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - [47858] = 3, + [47744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3655), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 2, anon_sym_SEMI, - [47868] = 3, + aux_sym_with_clause_token2, + [47768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4336), 1, + aux_sym_access_to_subprogram_definition_token3, + [47778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3646), 1, + sym_identifier, + ACTIONS(3648), 1, + aux_sym_use_clause_token2, + [47788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, + sym_identifier, + ACTIONS(3626), 1, + aux_sym_use_clause_token2, + [47798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47806] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4340), 1, - sym_identifier, - ACTIONS(4342), 1, - anon_sym_SEMI, - [47878] = 3, + aux_sym_with_clause_token2, + STATE(1372), 1, + sym_record_extension_part, + [47816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4342), 1, sym_identifier, + ACTIONS(4344), 1, + anon_sym_SEMI, + [47826] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4346), 1, anon_sym_SEMI, - [47888] = 2, + ACTIONS(4348), 1, + aux_sym_package_specification_token2, + [47836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 2, + ACTIONS(4350), 2, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, - [47896] = 3, + [47844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 1, - sym_identifier, ACTIONS(4352), 1, - anon_sym_SEMI, - [47906] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4354), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4356), 1, - aux_sym_iterator_specification_token1, - [47916] = 3, + anon_sym_SEMI, + [47854] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4356), 1, + aux_sym_chunk_specification_token1, ACTIONS(4358), 1, + aux_sym_iterator_specification_token1, + [47864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 2, anon_sym_SEMI, - ACTIONS(4360), 1, - aux_sym_accept_statement_token2, - [47926] = 2, + aux_sym_with_clause_token2, + [47872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4362), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47934] = 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4364), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47942] = 3, + [47888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4366), 1, - aux_sym_access_to_subprogram_definition_token2, + aux_sym_record_component_association_list_token1, + [47903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + aux_sym_interface_type_definition_token2, + [47910] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(4368), 1, - aux_sym_access_to_subprogram_definition_token3, - [47952] = 2, + anon_sym_COLON, + [47917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4370), 1, - aux_sym_record_component_association_list_token1, - [47959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - aux_sym_interface_type_definition_token2, - [47966] = 2, + anon_sym_RPAREN, + [47924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4372), 1, - anon_sym_COLON, - [47973] = 2, + anon_sym_EQ_GT, + [47931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4374), 1, + aux_sym_package_specification_token2, + [47938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_RBRACK, + [47945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + aux_sym_subunit_token1, + [47952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, + anon_sym_SEMI, + [47959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4380), 1, + anon_sym_SEMI, + [47966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4382), 1, + anon_sym_SEMI, + [47973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, anon_sym_RPAREN, [47980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_SEMI, [47987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, - aux_sym_package_specification_token2, + ACTIONS(4388), 1, + anon_sym_SEMI, [47994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4380), 1, - anon_sym_RBRACK, - [48001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4382), 1, - aux_sym_subunit_token1, - [48008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4307), 1, - anon_sym_SEMI, - [48015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - anon_sym_SEMI, - [48022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_SEMI, - [48029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4388), 1, - anon_sym_RPAREN, - [48036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4390), 1, - anon_sym_SEMI, - [48043] = 2, + aux_sym_with_clause_token2, + [48001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4392), 1, anon_sym_SEMI, - [48050] = 2, + [48008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4394), 1, - aux_sym_with_clause_token2, - [48057] = 2, + anon_sym_SEMI, + [48015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4396), 1, anon_sym_SEMI, - [48064] = 2, + [48022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4398), 1, - anon_sym_SEMI, - [48071] = 2, + aux_sym_record_component_association_list_token1, + [48029] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4400), 1, - anon_sym_SEMI, - [48078] = 2, + anon_sym_RPAREN, + [48036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4402), 1, - aux_sym_record_component_association_list_token1, - [48085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4404), 1, - anon_sym_RPAREN, - [48092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4406), 1, aux_sym_package_specification_token3, - [48099] = 2, + [48043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 1, + ACTIONS(4287), 1, anon_sym_SEMI, - [48106] = 2, + [48050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2145), 1, anon_sym_DOT_DOT, - [48113] = 2, + [48057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_RPAREN, + [48064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym_SEMI, + [48071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4408), 1, - anon_sym_RPAREN, - [48120] = 2, + aux_sym_package_specification_token2, + [48078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4410), 1, - anon_sym_SEMI, - [48127] = 2, + sym_tick, + [48085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4412), 1, - aux_sym_package_specification_token2, - [48134] = 2, + anon_sym_RPAREN, + [48092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4414), 1, - sym_tick, - [48141] = 2, + anon_sym_SEMI, + [48099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4416), 1, anon_sym_RPAREN, - [48148] = 2, + [48106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_RPAREN, + [48113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4418), 1, - anon_sym_SEMI, - [48155] = 2, + anon_sym_LT_GT, + [48120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4420), 1, - anon_sym_RPAREN, - [48162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4380), 1, - anon_sym_RPAREN, - [48169] = 2, + anon_sym_SEMI, + [48127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4422), 1, - anon_sym_LT_GT, - [48176] = 2, + aux_sym_compilation_unit_token1, + [48134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4424), 1, anon_sym_SEMI, - [48183] = 2, + [48141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4426), 1, - aux_sym_compilation_unit_token1, - [48190] = 2, + aux_sym_with_clause_token2, + [48148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4428), 1, - anon_sym_SEMI, - [48197] = 2, + aux_sym_package_specification_token3, + [48155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4430), 1, - aux_sym_with_clause_token2, - [48204] = 2, + aux_sym_compilation_unit_token1, + [48162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4432), 1, - aux_sym_package_specification_token3, - [48211] = 2, + anon_sym_EQ_GT, + [48169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4176), 1, + aux_sym_package_specification_token2, + [48176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4434), 1, aux_sym_compilation_unit_token1, - [48218] = 2, + [48183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4436), 1, - anon_sym_EQ_GT, - [48225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4170), 1, - aux_sym_package_specification_token2, - [48232] = 2, + anon_sym_SEMI, + [48190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4438), 1, - anon_sym_LPAREN, - [48239] = 2, + aux_sym_compilation_unit_token1, + [48197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4440), 1, - aux_sym_compilation_unit_token1, - [48246] = 2, + aux_sym_iterated_element_association_token2, + [48204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4442), 1, + aux_sym_iterated_element_association_token2, + [48211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + anon_sym_SEMI, + [48218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3759), 1, + anon_sym_SEMI, + [48225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + aux_sym_subprogram_body_token1, + [48232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 1, + anon_sym_SEMI, + [48239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_DOT_DOT, + [48246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4162), 1, anon_sym_SEMI, [48253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - aux_sym_iterated_element_association_token2, + ACTIONS(3977), 1, + aux_sym_package_specification_token2, [48260] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, - aux_sym_iterated_element_association_token2, - [48267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_SEMI, - [48274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4450), 1, - aux_sym_compilation_unit_token1, - [48281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - aux_sym_subprogram_body_token1, - [48288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 1, anon_sym_SEMI, - [48295] = 2, + [48267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4452), 1, anon_sym_SEMI, - [48302] = 2, + [48274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4454), 1, - anon_sym_DOT_DOT, - [48309] = 2, + aux_sym_primary_null_token1, + [48281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, + ACTIONS(3870), 1, anon_sym_SEMI, - [48316] = 2, + [48288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4456), 1, - anon_sym_SEMI, - [48323] = 2, + aux_sym_package_specification_token2, + [48295] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4458), 1, + aux_sym_package_specification_token3, + [48302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4460), 1, + aux_sym_package_specification_token3, + [48309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, + aux_sym_if_expression_token1, + [48316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 1, + aux_sym_subprogram_body_token1, + [48323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, anon_sym_SEMI, [48330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - aux_sym_primary_null_token1, + ACTIONS(4468), 1, + aux_sym_package_specification_token3, [48337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, - anon_sym_SEMI, + ACTIONS(4470), 1, + anon_sym_COLON, [48344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 1, - aux_sym_package_specification_token2, + ACTIONS(4472), 1, + anon_sym_SEMI, [48351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_package_specification_token2, + ACTIONS(4474), 1, + anon_sym_RPAREN, [48358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 1, - aux_sym_package_specification_token3, + ACTIONS(4476), 1, + anon_sym_LPAREN, [48365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_if_expression_token1, + ACTIONS(4478), 1, + anon_sym_SEMI, [48372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - aux_sym_subprogram_body_token1, + ACTIONS(4480), 1, + anon_sym_SEMI, [48379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - anon_sym_SEMI, + ACTIONS(4482), 1, + aux_sym_record_component_association_list_token1, [48386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, - aux_sym_package_specification_token3, + ACTIONS(4484), 1, + aux_sym_asynchronous_select_token1, [48393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, + ACTIONS(4486), 1, aux_sym_package_specification_token3, [48400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4488), 1, anon_sym_SEMI, [48407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, - anon_sym_COLON, + ACTIONS(4490), 1, + aux_sym_range_attribute_designator_token1, [48414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, - anon_sym_RPAREN, + ACTIONS(4492), 1, + anon_sym_LPAREN, [48421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4494), 1, anon_sym_SEMI, [48428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 1, + ACTIONS(4496), 1, anon_sym_SEMI, [48435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_record_component_association_list_token1, + ACTIONS(4498), 1, + anon_sym_EQ_GT, [48442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, - aux_sym_asynchronous_select_token1, + ACTIONS(3937), 1, + anon_sym_RPAREN, [48449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 1, - aux_sym_package_specification_token3, + ACTIONS(4500), 1, + sym_identifier, [48456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, - anon_sym_SEMI, + ACTIONS(4502), 1, + sym_identifier, [48463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, - aux_sym_range_attribute_designator_token1, + ACTIONS(4504), 1, + sym_tick, [48470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_SEMI, [48477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_SEMI, + ACTIONS(3973), 1, + anon_sym_RPAREN, [48484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 1, - anon_sym_SEMI, + ACTIONS(4508), 1, + sym_identifier, [48491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_EQ_GT, + ACTIONS(4510), 1, + sym_identifier, [48498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_RPAREN, + ACTIONS(4512), 1, + anon_sym_COLON, [48505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, - sym_identifier, + ACTIONS(4514), 1, + aux_sym_package_specification_token2, [48512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, - sym_identifier, + ACTIONS(4516), 1, + aux_sym_loop_statement_token1, [48519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, - sym_tick, + ACTIONS(4518), 1, + anon_sym_SEMI, [48526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, + ACTIONS(4520), 1, anon_sym_SEMI, [48533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym_RPAREN, + ACTIONS(4522), 1, + anon_sym_SEMI, [48540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - sym_identifier, - [48547] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - sym_identifier, - [48554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - anon_sym_COLON, - [48561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - aux_sym_package_specification_token2, - [48568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 1, - aux_sym_loop_statement_token1, - [48575] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4522), 1, - anon_sym_SEMI, - [48582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4524), 1, - anon_sym_SEMI, - [48589] = 2, + anon_sym_RPAREN, + [48547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4526), 1, anon_sym_SEMI, - [48596] = 2, + [48554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4528), 1, - anon_sym_RPAREN, - [48603] = 2, + anon_sym_SEMI, + [48561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4530), 1, anon_sym_SEMI, - [48610] = 2, + [48568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4532), 1, - anon_sym_SEMI, - [48617] = 2, + aux_sym_expression_token2, + [48575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4534), 1, - anon_sym_SEMI, - [48624] = 2, + aux_sym_asynchronous_select_token2, + [48582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4536), 1, - aux_sym_expression_token2, - [48631] = 2, + anon_sym_SEMI, + [48589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4538), 1, - aux_sym_asynchronous_select_token2, - [48638] = 2, + aux_sym_package_specification_token3, + [48596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4540), 1, anon_sym_SEMI, - [48645] = 2, + [48603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4542), 1, - aux_sym_package_specification_token3, - [48652] = 2, + aux_sym_attribute_designator_token2, + [48610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4544), 1, anon_sym_SEMI, - [48659] = 2, + [48617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4546), 1, - aux_sym_attribute_designator_token2, - [48666] = 2, + anon_sym_SEMI, + [48624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 1, + aux_sym_entry_declaration_token1, + [48631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4548), 1, - anon_sym_SEMI, - [48673] = 2, + aux_sym_package_specification_token3, + [48638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4550), 1, anon_sym_SEMI, - [48680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, - aux_sym_entry_declaration_token1, - [48687] = 2, + [48645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4552), 1, - aux_sym_package_specification_token3, - [48694] = 2, + aux_sym_package_specification_token2, + [48652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4554), 1, - anon_sym_SEMI, - [48701] = 2, + anon_sym_RPAREN, + [48659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4556), 1, - aux_sym_package_specification_token2, - [48708] = 2, + anon_sym_SEMI, + [48666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4558), 1, - anon_sym_RPAREN, - [48715] = 2, + anon_sym_SEMI, + [48673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4560), 1, - anon_sym_SEMI, - [48722] = 2, + aux_sym_package_specification_token2, + [48680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4562), 1, + aux_sym_iterator_specification_token1, + [48687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4564), 1, + aux_sym_iterator_specification_token1, + [48694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 1, + aux_sym_asynchronous_select_token1, + [48701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 1, + anon_sym_SEMI, + [48708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 1, + aux_sym_iterated_element_association_token2, + [48715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + aux_sym_asynchronous_select_token2, + [48722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, anon_sym_SEMI, [48729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, - aux_sym_package_specification_token2, + ACTIONS(4574), 1, + anon_sym_SEMI, [48736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, - aux_sym_iterator_specification_token1, + ACTIONS(4013), 1, + anon_sym_RPAREN, [48743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, - aux_sym_iterator_specification_token1, + ACTIONS(4576), 1, + anon_sym_EQ_GT, [48750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - aux_sym_asynchronous_select_token1, + ACTIONS(4578), 1, + anon_sym_EQ_GT, [48757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4580), 1, anon_sym_SEMI, [48764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, - aux_sym_iterated_element_association_token2, + ACTIONS(4582), 1, + aux_sym_package_specification_token3, [48771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, - aux_sym_asynchronous_select_token2, + ACTIONS(4584), 1, + aux_sym_package_specification_token3, [48778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 1, + ACTIONS(4586), 1, anon_sym_SEMI, [48785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_SEMI, + ACTIONS(4588), 1, + aux_sym_asynchronous_select_token1, [48792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_RPAREN, + ACTIONS(4590), 1, + aux_sym_asynchronous_select_token1, [48799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, - anon_sym_EQ_GT, + ACTIONS(4592), 1, + aux_sym_with_clause_token2, [48806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_EQ_GT, - [48813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_SEMI, - [48820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 1, - aux_sym_package_specification_token3, - [48827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 1, - aux_sym_package_specification_token3, - [48834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_SEMI, - [48841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 1, - aux_sym_asynchronous_select_token1, - [48848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4594), 1, - aux_sym_asynchronous_select_token1, - [48855] = 2, + anon_sym_SEMI, + [48813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4596), 1, anon_sym_SEMI, - [48862] = 2, + [48820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4598), 1, - anon_sym_SEMI, - [48869] = 2, + sym_identifier, + [48827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4600), 1, anon_sym_SEMI, - [48876] = 2, + [48834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4602), 1, - sym_identifier, - [48883] = 2, + aux_sym_if_expression_token1, + [48841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4604), 1, + aux_sym_expression_token2, + [48848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 1, + aux_sym_package_specification_token3, + [48855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 1, + aux_sym_package_specification_token3, + [48862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 1, + anon_sym_SEMI, + [48869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 1, + anon_sym_SEMI, + [48876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 1, + aux_sym_package_specification_token3, + [48883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 1, anon_sym_SEMI, [48890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - aux_sym_if_expression_token1, + ACTIONS(3941), 1, + anon_sym_SEMI, [48897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_expression_token2, + ACTIONS(4616), 1, + aux_sym_package_specification_token3, [48904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 1, - aux_sym_package_specification_token3, + ACTIONS(3949), 1, + anon_sym_SEMI, [48911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, - aux_sym_package_specification_token3, + ACTIONS(4618), 1, + aux_sym_asynchronous_select_token1, [48918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(3208), 1, anon_sym_SEMI, [48925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, + ACTIONS(4620), 1, anon_sym_SEMI, [48932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, - aux_sym_package_specification_token3, + ACTIONS(4622), 1, + anon_sym_SEMI, [48939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, - aux_sym_package_specification_token3, + ACTIONS(3920), 1, + anon_sym_SEMI, [48946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, - anon_sym_SEMI, - [48953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_SEMI, - [48960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4622), 1, - aux_sym_package_specification_token3, - [48967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3958), 1, - anon_sym_SEMI, - [48974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 1, - anon_sym_SEMI, - [48981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4624), 1, - aux_sym_asynchronous_select_token1, - [48988] = 2, + aux_sym_compilation_unit_token1, + [48953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4626), 1, anon_sym_SEMI, - [48995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, - anon_sym_SEMI, - [49002] = 2, + [48960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4628), 1, + anon_sym_SEMI, + [48967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4630), 1, + aux_sym_with_clause_token2, + [48974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_SEMI, + [48981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 1, + aux_sym_iterated_element_association_token2, + [48988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3428), 1, + aux_sym_package_specification_token3, + [48995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4634), 1, + aux_sym_iterated_element_association_token2, + [49002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, aux_sym_compilation_unit_token1, [49009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, - anon_sym_SEMI, + ACTIONS(4636), 1, + aux_sym_chunk_specification_token1, [49016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, - anon_sym_SEMI, + ACTIONS(4638), 1, + aux_sym_allocator_token1, [49023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, - aux_sym_with_clause_token2, + ACTIONS(4640), 1, + anon_sym_RBRACK, [49030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4642), 1, anon_sym_SEMI, [49037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, + ACTIONS(4644), 1, anon_sym_SEMI, [49044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4638), 1, - aux_sym_iterated_element_association_token2, - [49051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3516), 1, - aux_sym_package_specification_token3, - [49058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4640), 1, - aux_sym_iterated_element_association_token2, - [49065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4642), 1, - aux_sym_chunk_specification_token1, - [49072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 1, - aux_sym_compilation_unit_token1, - [49079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4644), 1, - anon_sym_RBRACK, - [49086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4646), 1, - aux_sym_allocator_token1, - [49093] = 2, + anon_sym_SEMI, + [49051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4648), 1, anon_sym_SEMI, - [49100] = 2, + [49058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4650), 1, - anon_sym_SEMI, - [49107] = 2, + anon_sym_RPAREN, + [49065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4652), 1, - anon_sym_SEMI, - [49114] = 2, + aux_sym_with_clause_token2, + [49072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4654), 1, - anon_sym_SEMI, - [49121] = 2, + anon_sym_RPAREN, + [49079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4656), 1, - aux_sym_with_clause_token2, - [49128] = 2, + sym_identifier, + [49086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4658), 1, anon_sym_RPAREN, - [49135] = 2, + [49093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4660), 1, - sym_identifier, - [49142] = 2, + aux_sym_package_specification_token2, + [49100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4662), 1, - anon_sym_RPAREN, - [49149] = 2, + aux_sym_package_specification_token2, + [49107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4664), 1, - aux_sym_package_specification_token2, - [49156] = 2, + anon_sym_EQ_GT, + [49114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4666), 1, - aux_sym_package_specification_token2, - [49163] = 2, + anon_sym_SEMI, + [49121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4668), 1, - anon_sym_EQ_GT, - [49170] = 2, + aux_sym_package_specification_token3, + [49128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4670), 1, - anon_sym_RPAREN, - [49177] = 2, + anon_sym_SEMI, + [49135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + anon_sym_SEMI, + [49142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4672), 1, anon_sym_SEMI, - [49184] = 2, + [49149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 1, + anon_sym_RPAREN, + [49156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4674), 1, anon_sym_SEMI, - [49191] = 2, + [49163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4676), 1, - aux_sym_package_specification_token3, - [49198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 1, anon_sym_SEMI, - [49205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4644), 1, - anon_sym_RPAREN, - [49212] = 2, + [49170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4678), 1, - anon_sym_SEMI, - [49219] = 2, + aux_sym_subprogram_body_token1, + [49177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4680), 1, + anon_sym_RPAREN, + [49184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + aux_sym_package_specification_token3, + [49191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4684), 1, + anon_sym_SEMI, + [49198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + anon_sym_RPAREN, + [49205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 1, + aux_sym_expression_token2, + [49212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + [49219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 1, anon_sym_SEMI, [49226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, - anon_sym_SEMI, + ACTIONS(3059), 1, + anon_sym_RPAREN, [49233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, - anon_sym_RPAREN, + ACTIONS(4694), 1, + anon_sym_SEMI, [49240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - aux_sym_subprogram_body_token1, + ACTIONS(4696), 1, + anon_sym_RPAREN, [49247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, - aux_sym_package_specification_token3, + ACTIONS(4696), 1, + anon_sym_RBRACK, [49254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, - anon_sym_RPAREN, + ACTIONS(4698), 1, + aux_sym_with_clause_token2, [49261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - aux_sym_expression_token2, + ACTIONS(4700), 1, + anon_sym_SEMI, [49268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4694), 1, - anon_sym_EQ_GT, - [49275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4696), 1, - anon_sym_SEMI, - [49282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 1, - anon_sym_RPAREN, - [49289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4698), 1, - anon_sym_SEMI, - [49296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_RPAREN, - [49303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_RBRACK, - [49310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4702), 1, anon_sym_SEMI, - [49317] = 2, + [49275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4704), 1, anon_sym_SEMI, - [49324] = 2, + [49282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4706), 1, anon_sym_SEMI, - [49331] = 2, + [49289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4708), 1, - anon_sym_SEMI, - [49338] = 2, + aux_sym_with_clause_token2, + [49296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4710), 1, - aux_sym_with_clause_token2, - [49345] = 2, + anon_sym_SEMI, + [49303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4204), 1, + anon_sym_SEMI, + [49310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4712), 1, - aux_sym_with_clause_token2, - [49352] = 2, + anon_sym_SEMI, + [49317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4714), 1, anon_sym_SEMI, + [49324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + aux_sym_package_specification_token3, + [49331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 1, + aux_sym_package_specification_token3, + [49338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_SEMI, + [49345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 1, + anon_sym_SEMI, + [49352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 1, + anon_sym_SEMI, [49359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(3790), 1, anon_sym_SEMI, [49366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, - aux_sym_with_clause_token2, + ACTIONS(4724), 1, + aux_sym_compilation_unit_token1, [49373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, - anon_sym_SEMI, + ACTIONS(4726), 1, + anon_sym_EQ_GT, [49380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, - aux_sym_package_specification_token3, + ACTIONS(4728), 1, + anon_sym_RBRACK, [49387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4722), 1, - aux_sym_package_specification_token3, - [49394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 1, - anon_sym_SEMI, - [49401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_SEMI, - [49408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_SEMI, - [49415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4728), 1, - anon_sym_SEMI, - [49422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4730), 1, - aux_sym_compilation_unit_token1, - [49429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_SEMI, - [49436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 1, - anon_sym_EQ_GT, - [49443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4734), 1, aux_sym_with_clause_token2, - [49450] = 2, + [49394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(429), 1, aux_sym_allocator_token1, - [49457] = 2, + [49401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 1, + aux_sym_loop_statement_token1, + [49408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 1, + aux_sym_package_specification_token3, + [49415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4736), 1, - anon_sym_RBRACK, - [49464] = 2, + anon_sym_EQ_GT, + [49422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4738), 1, - aux_sym_loop_statement_token1, - [49471] = 2, + aux_sym_allocator_token1, + [49429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4740), 1, - aux_sym_package_specification_token3, - [49478] = 2, + aux_sym_package_specification_token2, + [49436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4742), 1, - anon_sym_EQ_GT, - [49485] = 2, + anon_sym_SEMI, + [49443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 1, + anon_sym_RPAREN, + [49450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4744), 1, - aux_sym_package_specification_token2, - [49492] = 2, + anon_sym_RPAREN, + [49457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + aux_sym_subprogram_body_token1, + [49464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3788), 1, + anon_sym_SEMI, + [49471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4746), 1, - aux_sym_allocator_token1, - [49499] = 2, + anon_sym_SEMI, + [49478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4748), 1, anon_sym_SEMI, - [49506] = 2, + [49485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4736), 1, - anon_sym_RPAREN, - [49513] = 2, + ACTIONS(3786), 1, + anon_sym_SEMI, + [49492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4750), 1, - anon_sym_RPAREN, - [49520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 1, - aux_sym_subprogram_body_token1, - [49527] = 2, + aux_sym_package_specification_token3, + [49499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4752), 1, - anon_sym_SEMI, - [49534] = 2, + aux_sym_if_expression_token1, + [49506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4754), 1, anon_sym_SEMI, - [49541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3796), 1, - anon_sym_SEMI, - [49548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3794), 1, - anon_sym_SEMI, - [49555] = 2, + [49513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4756), 1, - aux_sym_if_expression_token1, - [49562] = 2, + anon_sym_SEMI, + [49520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4758), 1, - aux_sym_package_specification_token3, - [49569] = 2, + anon_sym_SEMI, + [49527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4760), 1, + anon_sym_RPAREN, + [49534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 1, + aux_sym_package_specification_token3, + [49541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 1, + aux_sym_package_specification_token2, + [49548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 1, + sym_identifier, + [49555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, + anon_sym_SEMI, + [49562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 1, + anon_sym_LT_GT, + [49569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 1, anon_sym_SEMI, [49576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(4770), 1, anon_sym_SEMI, [49583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4764), 1, - anon_sym_SEMI, - [49590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - aux_sym_package_specification_token3, - [49597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4768), 1, - aux_sym_package_specification_token2, - [49604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4770), 1, - anon_sym_RPAREN, - [49611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4772), 1, - sym_identifier, - [49618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, - anon_sym_LT_GT, - [49625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4087), 1, - anon_sym_SEMI, - [49632] = 2, + anon_sym_EQ_GT, + [49590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4774), 1, anon_sym_SEMI, - [49639] = 2, + [49597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, anon_sym_SEMI, - [49646] = 2, + [49604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4778), 1, - anon_sym_EQ_GT, - [49653] = 2, + aux_sym_at_clause_token1, + [49611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4780), 1, - anon_sym_SEMI, - [49660] = 2, + sym_tick, + [49618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4782), 1, - aux_sym_at_clause_token1, - [49667] = 2, + anon_sym_SEMI, + [49625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + anon_sym_SEMI, + [49632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4784), 1, - sym_tick, - [49674] = 2, + anon_sym_SEMI, + [49639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4786), 1, - anon_sym_SEMI, - [49681] = 2, + aux_sym_subprogram_body_token1, + [49646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4788), 1, - anon_sym_SEMI, - [49688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4267), 1, - anon_sym_SEMI, - [49695] = 2, + anon_sym_RBRACK, + [49653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4790), 1, + aux_sym_with_clause_token2, + [49660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 1, + aux_sym_with_clause_token2, + [49667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 1, + aux_sym_attribute_designator_token4, + [49674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 1, + anon_sym_DOT_DOT, + [49681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + aux_sym_package_specification_token3, + [49688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + aux_sym_object_renaming_declaration_token1, + [49695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4291), 1, anon_sym_SEMI, [49702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4792), 1, - anon_sym_RBRACK, + ACTIONS(209), 1, + aux_sym_private_type_declaration_token1, [49709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, - aux_sym_subprogram_body_token1, + ACTIONS(4802), 1, + aux_sym_object_renaming_declaration_token1, [49716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 1, - aux_sym_with_clause_token2, + ACTIONS(3697), 1, + aux_sym_package_specification_token2, [49723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, - aux_sym_with_clause_token2, + ACTIONS(4804), 1, + aux_sym_primary_null_token1, [49730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_DOT_DOT, + ACTIONS(3170), 1, + anon_sym_SEMI, [49737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - aux_sym_attribute_designator_token4, + ACTIONS(4806), 1, + sym_identifier, [49744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - aux_sym_object_renaming_declaration_token1, + ACTIONS(4808), 1, + sym_identifier, [49751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 1, + ACTIONS(4810), 1, anon_sym_SEMI, [49758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(215), 1, - aux_sym_private_type_declaration_token1, - [49765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - aux_sym_object_renaming_declaration_token1, - [49772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, - aux_sym_package_specification_token2, - [49779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4808), 1, - aux_sym_primary_null_token1, - [49786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - anon_sym_SEMI, - [49793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4810), 1, - sym_identifier, - [49800] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4812), 1, - sym_identifier, - [49807] = 2, + anon_sym_SEMI, + [49765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4814), 1, anon_sym_SEMI, - [49814] = 2, + [49772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4816), 1, + aux_sym_allocator_token1, + [49779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3550), 1, + aux_sym_compilation_unit_token1, + [49786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + anon_sym_EQ_GT, + [49793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + aux_sym_case_expression_token1, + [49800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + aux_sym_allocator_token1, + [49807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4824), 1, + anon_sym_RPAREN, + [49814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 1, anon_sym_SEMI, [49821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, - anon_sym_SEMI, + ACTIONS(4828), 1, + aux_sym_record_component_association_list_token1, [49828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, - aux_sym_allocator_token1, + ACTIONS(4830), 1, + aux_sym_package_specification_token2, [49835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - aux_sym_compilation_unit_token1, + ACTIONS(4832), 1, + aux_sym_primary_null_token1, [49842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_EQ_GT, + ACTIONS(3668), 1, + anon_sym_SEMI, [49849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, - aux_sym_case_expression_token1, + ACTIONS(4834), 1, + aux_sym_with_clause_token2, [49856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - aux_sym_allocator_token1, + ACTIONS(3611), 1, + anon_sym_SEMI, [49863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_RPAREN, + ACTIONS(4836), 1, + anon_sym_SEMI, [49870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_SEMI, + ACTIONS(4838), 1, + aux_sym_compilation_unit_token1, [49877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4832), 1, - aux_sym_record_component_association_list_token1, + ACTIONS(4840), 1, + aux_sym_compilation_unit_token1, [49884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, - aux_sym_package_specification_token2, + ACTIONS(4174), 1, + anon_sym_SEMI, [49891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 1, - aux_sym_primary_null_token1, + ACTIONS(4842), 1, + anon_sym_SEMI, [49898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - anon_sym_SEMI, + ACTIONS(215), 1, + aux_sym_private_type_declaration_token1, [49905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - aux_sym_with_clause_token2, + ACTIONS(4844), 1, + anon_sym_SEMI, [49912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3915), 1, - anon_sym_SEMI, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, [49919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_SEMI, + ACTIONS(4848), 1, + sym_identifier, [49926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, - aux_sym_compilation_unit_token1, + ACTIONS(4850), 1, + aux_sym_loop_statement_token1, [49933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 1, - aux_sym_compilation_unit_token1, + ACTIONS(4852), 1, + anon_sym_SEMI, [49940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 1, - anon_sym_SEMI, + ACTIONS(4854), 1, + aux_sym_component_list_token1, [49947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - anon_sym_SEMI, + ACTIONS(4856), 1, + aux_sym_chunk_specification_token1, [49954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(209), 1, - aux_sym_private_type_declaration_token1, + ACTIONS(4267), 1, + aux_sym_package_specification_token3, [49961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4858), 1, anon_sym_SEMI, [49968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, - anon_sym_DOT_DOT, + ACTIONS(4860), 1, + sym_identifier, [49975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - sym_identifier, + ACTIONS(325), 1, + aux_sym_subprogram_body_token1, [49982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, - aux_sym_loop_statement_token1, + ACTIONS(4862), 1, + aux_sym_package_specification_token2, [49989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, + ACTIONS(4864), 1, anon_sym_SEMI, [49996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, - aux_sym_component_list_token1, + ACTIONS(4866), 1, + anon_sym_SEMI, [50003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4860), 1, - aux_sym_chunk_specification_token1, + ACTIONS(4868), 1, + anon_sym_COLON, [50010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, + ACTIONS(4870), 1, aux_sym_package_specification_token3, [50017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, - anon_sym_SEMI, + ACTIONS(4872), 1, + aux_sym_record_component_association_list_token1, [50024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, - sym_identifier, + ACTIONS(4874), 1, + aux_sym_allocator_token1, [50031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(269), 1, - aux_sym_subprogram_body_token1, + ACTIONS(3460), 1, + aux_sym_allocator_token1, [50038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4866), 1, - aux_sym_package_specification_token2, + ACTIONS(4876), 1, + anon_sym_RPAREN, [50045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - anon_sym_SEMI, + ACTIONS(4878), 1, + aux_sym_package_specification_token2, [50052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, - anon_sym_SEMI, + ACTIONS(4880), 1, + aux_sym_loop_statement_token1, [50059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, - anon_sym_COLON, + ACTIONS(4882), 1, + aux_sym_package_specification_token3, [50066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 1, - aux_sym_package_specification_token3, + ACTIONS(4884), 1, + anon_sym_SEMI, [50073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4876), 1, - aux_sym_record_component_association_list_token1, - [50080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4878), 1, - aux_sym_allocator_token1, - [50087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - aux_sym_allocator_token1, - [50094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4880), 1, - anon_sym_RPAREN, - [50101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 1, - aux_sym_package_specification_token2, - [50108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 1, - aux_sym_loop_statement_token1, - [50115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4886), 1, - aux_sym_package_specification_token3, - [50122] = 2, + anon_sym_SEMI, + [50080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4888), 1, anon_sym_SEMI, - [50129] = 2, + [50087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4208), 1, + anon_sym_SEMI, + [50094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3840), 1, + anon_sym_SEMI, + [50101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4890), 1, - anon_sym_SEMI, - [50136] = 2, + anon_sym_RBRACK, + [50108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4892), 1, + anon_sym_RPAREN, + [50115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 1, + aux_sym_with_clause_token2, + [50122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + aux_sym_compilation_unit_token1, + [50129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, + aux_sym_compilation_unit_token1, + [50136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 1, anon_sym_SEMI, [50143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 1, + ACTIONS(4902), 1, anon_sym_SEMI, [50150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3812), 1, - anon_sym_SEMI, - [50157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4894), 1, - anon_sym_RBRACK, - [50164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - anon_sym_RPAREN, - [50171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4898), 1, - aux_sym_with_clause_token2, - [50178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - aux_sym_compilation_unit_token1, - [50185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - aux_sym_compilation_unit_token1, - [50192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4904), 1, - anon_sym_SEMI, - [50199] = 2, + aux_sym_package_body_token1, + [50157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4906), 1, anon_sym_SEMI, - [50206] = 2, + [50164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4908), 1, - aux_sym_package_body_token1, - [50213] = 2, + anon_sym_SEMI, + [50171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4910), 1, - anon_sym_SEMI, - [50220] = 2, + aux_sym_package_body_token1, + [50178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4912), 1, - anon_sym_SEMI, - [50227] = 2, + aux_sym_expression_token2, + [50185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4914), 1, aux_sym_package_body_token1, - [50234] = 2, + [50192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4916), 1, - aux_sym_expression_token2, - [50241] = 2, + anon_sym_SEMI, + [50199] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4918), 1, - aux_sym_package_body_token1, - [50248] = 2, + aux_sym_expression_token2, + [50206] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4920), 1, anon_sym_SEMI, - [50255] = 2, + [50213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4922), 1, anon_sym_SEMI, - [50262] = 2, + [50220] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4924), 1, anon_sym_SEMI, - [50269] = 2, + [50227] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4926), 1, anon_sym_SEMI, - [50276] = 2, + [50234] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4928), 1, anon_sym_SEMI, - [50283] = 2, + [50241] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4930), 1, anon_sym_COLON, - [50290] = 2, + [50248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4932), 1, + anon_sym_EQ_GT, + [50255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, + anon_sym_SEMI, + [50262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_GT_GT, + [50269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 1, + anon_sym_COLON, + [50276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + sym_identifier, + [50283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 1, + aux_sym_package_specification_token3, + [50290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, anon_sym_SEMI, [50297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4934), 1, - aux_sym_expression_token2, - [50304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_EQ_GT, - [50311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 1, - anon_sym_SEMI, - [50318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, - anon_sym_GT_GT, - [50325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4942), 1, - anon_sym_COLON, - [50332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, - sym_identifier, - [50339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4946), 1, - aux_sym_package_specification_token3, - [50346] = 2, + anon_sym_SEMI, + [50304] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4948), 1, anon_sym_SEMI, - [50353] = 2, + [50311] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4950), 1, anon_sym_SEMI, - [50360] = 2, + [50318] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4952), 1, anon_sym_SEMI, - [50367] = 2, + [50325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4954), 1, anon_sym_SEMI, - [50374] = 2, + [50332] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4956), 1, + sym_identifier, + [50339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 1, + sym_identifier, + [50346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_SEMI, + [50353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 1, + anon_sym_SEMI, + [50360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 1, + aux_sym_with_clause_token2, + [50367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + anon_sym_RPAREN, + [50374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, anon_sym_SEMI, [50381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, - anon_sym_SEMI, + ACTIONS(4968), 1, + aux_sym_compilation_unit_token1, [50388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - sym_identifier, + ACTIONS(4970), 1, + aux_sym_package_specification_token2, [50395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, - sym_identifier, + ACTIONS(4972), 1, + aux_sym_loop_statement_token1, [50402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 1, - anon_sym_SEMI, + ACTIONS(4974), 1, + aux_sym_package_specification_token3, [50409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - anon_sym_SEMI, + ACTIONS(4976), 1, + aux_sym_with_clause_token2, [50416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, - aux_sym_with_clause_token2, + ACTIONS(319), 1, + aux_sym_subprogram_body_token1, [50423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_RPAREN, + ACTIONS(4978), 1, + anon_sym_SEMI, [50430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - anon_sym_SEMI, - [50437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - aux_sym_compilation_unit_token1, - [50444] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4974), 1, - aux_sym_package_specification_token2, - [50451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, - aux_sym_loop_statement_token1, - [50458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - aux_sym_package_specification_token3, - [50465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4980), 1, - aux_sym_with_clause_token2, - [50472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, - aux_sym_subprogram_body_token1, - [50479] = 2, + sym_identifier, + [50437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4982), 1, anon_sym_SEMI, - [50486] = 2, + [50444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4984), 1, sym_identifier, - [50493] = 2, + [50451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4986), 1, - anon_sym_SEMI, - [50500] = 2, + anon_sym_RPAREN, + [50458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4988), 1, - sym_identifier, - [50507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 1, - anon_sym_RPAREN, - [50514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 1, anon_sym_SEMI, - [50521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(271), 1, - aux_sym_subprogram_body_token1, - [50528] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - aux_sym_package_specification_token3, - [50535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_SEMI, - [50542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - aux_sym_package_specification_token2, - [50549] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5000), 1, - anon_sym_SEMI, - [50556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_RPAREN, - [50563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_RPAREN, - [50570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - sym_identifier, - [50577] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 1, - anon_sym_SEMI, - [50584] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 1, - anon_sym_SEMI, - [50591] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 1, - anon_sym_SEMI, - [50598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - aux_sym_compilation_unit_token1, - [50605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5014), 1, - anon_sym_SEMI, - [50612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4277), 1, - anon_sym_SEMI, - [50619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 1, - aux_sym_with_clause_token2, - [50626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5018), 1, - aux_sym_package_specification_token3, - [50633] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_SEMI, - [50640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5022), 1, - anon_sym_SEMI, - [50647] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5024), 1, - anon_sym_SEMI, - [50654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - aux_sym_package_specification_token3, - [50661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 1, - anon_sym_SEMI, - [50668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5030), 1, - anon_sym_SEMI, - [50675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5032), 1, - aux_sym_with_clause_token2, - [50682] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5034), 1, - anon_sym_EQ_GT, - [50689] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5036), 1, - anon_sym_SEMI, - [50696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5038), 1, - anon_sym_RPAREN, - [50703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5040), 1, - anon_sym_SEMI, - [50710] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 1, - anon_sym_SEMI, - [50717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5044), 1, - aux_sym_use_clause_token2, - [50724] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 1, - aux_sym_asynchronous_select_token1, - [50731] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5048), 1, - aux_sym_package_specification_token3, - [50738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5050), 1, - aux_sym_loop_statement_token1, - [50745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5052), 1, - anon_sym_SEMI, - [50752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 1, - aux_sym_package_specification_token3, - [50759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5056), 1, - aux_sym_asynchronous_select_token1, - [50766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5058), 1, - anon_sym_RBRACK, - [50773] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5060), 1, - anon_sym_SEMI, - [50780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5062), 1, - aux_sym_asynchronous_select_token1, - [50787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5064), 1, - anon_sym_SEMI, - [50794] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5066), 1, - aux_sym_compilation_unit_token1, - [50801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - aux_sym_result_profile_token1, - [50808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - anon_sym_RPAREN, - [50815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - aux_sym_package_specification_token3, - [50822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5074), 1, - anon_sym_EQ_GT, - [50829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5076), 1, - aux_sym_if_expression_token1, - [50836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5078), 1, - aux_sym_subprogram_body_token1, - [50843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_SEMI, - [50850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5082), 1, - sym_identifier, - [50857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3810), 1, - anon_sym_COMMA, - [50864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5084), 1, - anon_sym_RPAREN, - [50871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5086), 1, - aux_sym_compilation_unit_token1, - [50878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, - aux_sym_loop_statement_token1, - [50885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3207), 1, - anon_sym_SEMI, - [50892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 1, - anon_sym_SEMI, - [50899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5088), 1, - aux_sym_iterated_element_association_token2, - [50906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5090), 1, - anon_sym_LT_GT, - [50913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5092), 1, - anon_sym_SEMI, - [50920] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5094), 1, - anon_sym_LT_GT, - [50927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5096), 1, - anon_sym_SEMI, - [50934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5098), 1, - anon_sym_SEMI, - [50941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5100), 1, - sym_tick, - [50948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5102), 1, - anon_sym_LT_GT, - [50955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5104), 1, - anon_sym_LT_GT, - [50962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5106), 1, - aux_sym_package_specification_token3, - [50969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4216), 1, - anon_sym_SEMI, - [50976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5108), 1, - anon_sym_COLON, - [50983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 1, - ts_builtin_sym_end, - [50990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5112), 1, - anon_sym_LT_GT, - [50997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5114), 1, - sym_identifier, - [51004] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - sym_identifier, - [51011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5118), 1, - sym_identifier, - [51018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_SEMI, - [51025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_SEMI, - [51032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, - sym_identifier, - [51039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_EQ_GT, - [51046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5126), 1, - aux_sym_package_specification_token3, - [51053] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - aux_sym_allocator_token1, - [51060] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, - sym_identifier, - [51067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4289), 1, - anon_sym_SEMI, - [51074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_EQ_GT, - [51081] = 2, + [50465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(327), 1, aux_sym_subprogram_body_token1, - [51088] = 2, + [50472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + aux_sym_package_specification_token3, + [50479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 1, + anon_sym_SEMI, + [50486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, + aux_sym_package_specification_token2, + [50493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 1, + anon_sym_SEMI, + [50500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + anon_sym_RPAREN, + [50507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_RPAREN, + [50514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + sym_identifier, + [50521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_SEMI, + [50528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3295), 1, + anon_sym_SEMI, + [50535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_SEMI, + [50542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + aux_sym_compilation_unit_token1, + [50549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + anon_sym_SEMI, + [50556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 1, + anon_sym_SEMI, + [50563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 1, + aux_sym_with_clause_token2, + [50570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 1, + aux_sym_package_specification_token3, + [50577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 1, + anon_sym_SEMI, + [50584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 1, + anon_sym_SEMI, + [50591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_SEMI, + [50598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + aux_sym_package_specification_token3, + [50605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 1, + anon_sym_SEMI, + [50612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + anon_sym_SEMI, + [50619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + aux_sym_with_clause_token2, + [50626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + [50633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 1, + anon_sym_SEMI, + [50640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_RPAREN, + [50647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + anon_sym_SEMI, + [50654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 1, + anon_sym_SEMI, + [50661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 1, + aux_sym_use_clause_token2, + [50668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, + aux_sym_asynchronous_select_token1, + [50675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 1, + aux_sym_package_specification_token3, + [50682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 1, + aux_sym_loop_statement_token1, + [50689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_SEMI, + [50696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 1, + aux_sym_package_specification_token3, + [50703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 1, + aux_sym_asynchronous_select_token1, + [50710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 1, + anon_sym_RBRACK, + [50717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_SEMI, + [50724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 1, + aux_sym_asynchronous_select_token1, + [50731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 1, + anon_sym_SEMI, + [50738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_compilation_unit_token1, + [50745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5064), 1, + aux_sym_result_profile_token1, + [50752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + anon_sym_RPAREN, + [50759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5068), 1, + aux_sym_package_specification_token3, + [50766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_EQ_GT, + [50773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 1, + aux_sym_if_expression_token1, + [50780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + aux_sym_subprogram_body_token1, + [50787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5076), 1, + anon_sym_SEMI, + [50794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 1, + sym_identifier, + [50801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3802), 1, + anon_sym_COMMA, + [50808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_RPAREN, + [50815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 1, + aux_sym_compilation_unit_token1, + [50822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + aux_sym_loop_statement_token1, + [50829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3194), 1, + anon_sym_SEMI, + [50836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3818), 1, + anon_sym_SEMI, + [50843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5084), 1, + aux_sym_iterated_element_association_token2, + [50850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 1, + anon_sym_LT_GT, + [50857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_SEMI, + [50864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 1, + anon_sym_LT_GT, + [50871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5092), 1, + anon_sym_SEMI, + [50878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 1, + anon_sym_SEMI, + [50885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5096), 1, + sym_tick, + [50892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 1, + anon_sym_LT_GT, + [50899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, + anon_sym_LT_GT, + [50906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + aux_sym_package_specification_token3, + [50913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4295), 1, + anon_sym_SEMI, + [50920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 1, + anon_sym_COLON, + [50927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 1, + ts_builtin_sym_end, + [50934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5108), 1, + anon_sym_LT_GT, + [50941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5110), 1, + sym_identifier, + [50948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 1, + sym_identifier, + [50955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 1, + sym_identifier, + [50962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5116), 1, + anon_sym_SEMI, + [50969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_SEMI, + [50976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 1, + sym_identifier, + [50983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, + anon_sym_EQ_GT, + [50990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 1, + aux_sym_package_specification_token3, + [50997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5124), 1, + aux_sym_allocator_token1, + [51004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5126), 1, + sym_identifier, + [51011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + anon_sym_SEMI, + [51018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5128), 1, + anon_sym_EQ_GT, + [51025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 1, + aux_sym_subprogram_body_token1, + [51032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_SEMI, + [51039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5132), 1, + aux_sym_case_expression_token1, + [51046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5134), 1, anon_sym_SEMI, - [51095] = 2, + [51053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, - aux_sym_case_expression_token1, - [51102] = 2, + aux_sym_global_mode_token1, + [51060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 1, + anon_sym_SEMI, + [51067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5138), 1, - anon_sym_SEMI, - [51109] = 2, + anon_sym_LPAREN, + [51074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5140), 1, - aux_sym_global_mode_token1, - [51116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4317), 1, - anon_sym_SEMI, - [51123] = 2, + sym_identifier, + [51081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5142), 1, - anon_sym_LPAREN, - [51130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 1, - sym_identifier, - [51137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, aux_sym_with_clause_token2, }; @@ -56078,9 +56023,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(75)] = 373, [SMALL_STATE(76)] = 494, [SMALL_STATE(77)] = 611, - [SMALL_STATE(78)] = 726, - [SMALL_STATE(79)] = 843, - [SMALL_STATE(80)] = 972, + [SMALL_STATE(78)] = 728, + [SMALL_STATE(79)] = 845, + [SMALL_STATE(80)] = 974, [SMALL_STATE(81)] = 1089, [SMALL_STATE(82)] = 1206, [SMALL_STATE(83)] = 1320, @@ -56091,7 +56036,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(88)] = 1890, [SMALL_STATE(89)] = 2021, [SMALL_STATE(90)] = 2152, - [SMALL_STATE(91)] = 2272, + [SMALL_STATE(91)] = 2280, [SMALL_STATE(92)] = 2400, [SMALL_STATE(93)] = 2525, [SMALL_STATE(94)] = 2650, @@ -56108,1837 +56053,1836 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(105)] = 3865, [SMALL_STATE(106)] = 3966, [SMALL_STATE(107)] = 4067, - [SMALL_STATE(108)] = 4123, - [SMALL_STATE(109)] = 4179, - [SMALL_STATE(110)] = 4279, - [SMALL_STATE(111)] = 4335, - [SMALL_STATE(112)] = 4391, - [SMALL_STATE(113)] = 4447, - [SMALL_STATE(114)] = 4503, - [SMALL_STATE(115)] = 4601, - [SMALL_STATE(116)] = 4657, - [SMALL_STATE(117)] = 4713, - [SMALL_STATE(118)] = 4769, - [SMALL_STATE(119)] = 4825, - [SMALL_STATE(120)] = 4881, - [SMALL_STATE(121)] = 4937, - [SMALL_STATE(122)] = 4993, - [SMALL_STATE(123)] = 5049, - [SMALL_STATE(124)] = 5105, - [SMALL_STATE(125)] = 5161, - [SMALL_STATE(126)] = 5217, - [SMALL_STATE(127)] = 5273, - [SMALL_STATE(128)] = 5329, - [SMALL_STATE(129)] = 5385, - [SMALL_STATE(130)] = 5441, - [SMALL_STATE(131)] = 5497, - [SMALL_STATE(132)] = 5553, - [SMALL_STATE(133)] = 5609, - [SMALL_STATE(134)] = 5665, - [SMALL_STATE(135)] = 5721, - [SMALL_STATE(136)] = 5777, - [SMALL_STATE(137)] = 5833, - [SMALL_STATE(138)] = 5889, - [SMALL_STATE(139)] = 5945, - [SMALL_STATE(140)] = 6001, - [SMALL_STATE(141)] = 6057, - [SMALL_STATE(142)] = 6113, - [SMALL_STATE(143)] = 6169, - [SMALL_STATE(144)] = 6225, - [SMALL_STATE(145)] = 6323, - [SMALL_STATE(146)] = 6379, - [SMALL_STATE(147)] = 6435, - [SMALL_STATE(148)] = 6491, - [SMALL_STATE(149)] = 6547, - [SMALL_STATE(150)] = 6603, - [SMALL_STATE(151)] = 6701, - [SMALL_STATE(152)] = 6757, - [SMALL_STATE(153)] = 6813, - [SMALL_STATE(154)] = 6869, - [SMALL_STATE(155)] = 6965, - [SMALL_STATE(156)] = 7021, - [SMALL_STATE(157)] = 7121, - [SMALL_STATE(158)] = 7217, - [SMALL_STATE(159)] = 7273, - [SMALL_STATE(160)] = 7329, - [SMALL_STATE(161)] = 7385, - [SMALL_STATE(162)] = 7441, - [SMALL_STATE(163)] = 7497, - [SMALL_STATE(164)] = 7553, - [SMALL_STATE(165)] = 7609, - [SMALL_STATE(166)] = 7709, - [SMALL_STATE(167)] = 7765, - [SMALL_STATE(168)] = 7821, - [SMALL_STATE(169)] = 7877, - [SMALL_STATE(170)] = 7933, - [SMALL_STATE(171)] = 7989, - [SMALL_STATE(172)] = 8045, + [SMALL_STATE(108)] = 4163, + [SMALL_STATE(109)] = 4219, + [SMALL_STATE(110)] = 4275, + [SMALL_STATE(111)] = 4331, + [SMALL_STATE(112)] = 4387, + [SMALL_STATE(113)] = 4443, + [SMALL_STATE(114)] = 4499, + [SMALL_STATE(115)] = 4555, + [SMALL_STATE(116)] = 4611, + [SMALL_STATE(117)] = 4667, + [SMALL_STATE(118)] = 4723, + [SMALL_STATE(119)] = 4779, + [SMALL_STATE(120)] = 4835, + [SMALL_STATE(121)] = 4891, + [SMALL_STATE(122)] = 4947, + [SMALL_STATE(123)] = 5003, + [SMALL_STATE(124)] = 5059, + [SMALL_STATE(125)] = 5115, + [SMALL_STATE(126)] = 5171, + [SMALL_STATE(127)] = 5227, + [SMALL_STATE(128)] = 5283, + [SMALL_STATE(129)] = 5339, + [SMALL_STATE(130)] = 5395, + [SMALL_STATE(131)] = 5451, + [SMALL_STATE(132)] = 5507, + [SMALL_STATE(133)] = 5563, + [SMALL_STATE(134)] = 5619, + [SMALL_STATE(135)] = 5675, + [SMALL_STATE(136)] = 5731, + [SMALL_STATE(137)] = 5787, + [SMALL_STATE(138)] = 5843, + [SMALL_STATE(139)] = 5899, + [SMALL_STATE(140)] = 5955, + [SMALL_STATE(141)] = 6011, + [SMALL_STATE(142)] = 6067, + [SMALL_STATE(143)] = 6123, + [SMALL_STATE(144)] = 6179, + [SMALL_STATE(145)] = 6235, + [SMALL_STATE(146)] = 6291, + [SMALL_STATE(147)] = 6347, + [SMALL_STATE(148)] = 6403, + [SMALL_STATE(149)] = 6459, + [SMALL_STATE(150)] = 6515, + [SMALL_STATE(151)] = 6571, + [SMALL_STATE(152)] = 6627, + [SMALL_STATE(153)] = 6683, + [SMALL_STATE(154)] = 6739, + [SMALL_STATE(155)] = 6837, + [SMALL_STATE(156)] = 6893, + [SMALL_STATE(157)] = 6949, + [SMALL_STATE(158)] = 7049, + [SMALL_STATE(159)] = 7105, + [SMALL_STATE(160)] = 7161, + [SMALL_STATE(161)] = 7217, + [SMALL_STATE(162)] = 7273, + [SMALL_STATE(163)] = 7329, + [SMALL_STATE(164)] = 7385, + [SMALL_STATE(165)] = 7481, + [SMALL_STATE(166)] = 7581, + [SMALL_STATE(167)] = 7637, + [SMALL_STATE(168)] = 7735, + [SMALL_STATE(169)] = 7835, + [SMALL_STATE(170)] = 7891, + [SMALL_STATE(171)] = 7947, + [SMALL_STATE(172)] = 8003, [SMALL_STATE(173)] = 8101, [SMALL_STATE(174)] = 8157, [SMALL_STATE(175)] = 8213, [SMALL_STATE(176)] = 8269, [SMALL_STATE(177)] = 8325, - [SMALL_STATE(178)] = 8381, - [SMALL_STATE(179)] = 8476, - [SMALL_STATE(180)] = 8571, - [SMALL_STATE(181)] = 8666, - [SMALL_STATE(182)] = 8761, - [SMALL_STATE(183)] = 8856, - [SMALL_STATE(184)] = 8951, - [SMALL_STATE(185)] = 9046, - [SMALL_STATE(186)] = 9141, - [SMALL_STATE(187)] = 9236, - [SMALL_STATE(188)] = 9331, - [SMALL_STATE(189)] = 9426, - [SMALL_STATE(190)] = 9521, - [SMALL_STATE(191)] = 9613, - [SMALL_STATE(192)] = 9705, - [SMALL_STATE(193)] = 9759, - [SMALL_STATE(194)] = 9851, - [SMALL_STATE(195)] = 9943, - [SMALL_STATE(196)] = 10035, - [SMALL_STATE(197)] = 10127, - [SMALL_STATE(198)] = 10181, - [SMALL_STATE(199)] = 10235, - [SMALL_STATE(200)] = 10327, - [SMALL_STATE(201)] = 10381, - [SMALL_STATE(202)] = 10473, - [SMALL_STATE(203)] = 10527, - [SMALL_STATE(204)] = 10581, - [SMALL_STATE(205)] = 10673, - [SMALL_STATE(206)] = 10765, - [SMALL_STATE(207)] = 10819, - [SMALL_STATE(208)] = 10911, - [SMALL_STATE(209)] = 11003, - [SMALL_STATE(210)] = 11095, - [SMALL_STATE(211)] = 11187, - [SMALL_STATE(212)] = 11281, - [SMALL_STATE(213)] = 11373, - [SMALL_STATE(214)] = 11465, - [SMALL_STATE(215)] = 11519, - [SMALL_STATE(216)] = 11573, - [SMALL_STATE(217)] = 11665, - [SMALL_STATE(218)] = 11719, - [SMALL_STATE(219)] = 11811, - [SMALL_STATE(220)] = 11903, - [SMALL_STATE(221)] = 11995, - [SMALL_STATE(222)] = 12087, - [SMALL_STATE(223)] = 12179, - [SMALL_STATE(224)] = 12233, - [SMALL_STATE(225)] = 12325, - [SMALL_STATE(226)] = 12417, - [SMALL_STATE(227)] = 12471, - [SMALL_STATE(228)] = 12563, - [SMALL_STATE(229)] = 12617, - [SMALL_STATE(230)] = 12709, - [SMALL_STATE(231)] = 12763, - [SMALL_STATE(232)] = 12817, - [SMALL_STATE(233)] = 12871, - [SMALL_STATE(234)] = 12963, - [SMALL_STATE(235)] = 13055, - [SMALL_STATE(236)] = 13147, - [SMALL_STATE(237)] = 13239, - [SMALL_STATE(238)] = 13331, - [SMALL_STATE(239)] = 13423, - [SMALL_STATE(240)] = 13515, - [SMALL_STATE(241)] = 13569, - [SMALL_STATE(242)] = 13623, - [SMALL_STATE(243)] = 13677, - [SMALL_STATE(244)] = 13731, - [SMALL_STATE(245)] = 13823, - [SMALL_STATE(246)] = 13915, - [SMALL_STATE(247)] = 14007, - [SMALL_STATE(248)] = 14099, - [SMALL_STATE(249)] = 14191, - [SMALL_STATE(250)] = 14245, - [SMALL_STATE(251)] = 14299, - [SMALL_STATE(252)] = 14391, - [SMALL_STATE(253)] = 14483, - [SMALL_STATE(254)] = 14574, - [SMALL_STATE(255)] = 14665, - [SMALL_STATE(256)] = 14756, - [SMALL_STATE(257)] = 14845, - [SMALL_STATE(258)] = 14934, - [SMALL_STATE(259)] = 15023, - [SMALL_STATE(260)] = 15114, - [SMALL_STATE(261)] = 15205, - [SMALL_STATE(262)] = 15267, - [SMALL_STATE(263)] = 15329, - [SMALL_STATE(264)] = 15417, - [SMALL_STATE(265)] = 15505, - [SMALL_STATE(266)] = 15556, - [SMALL_STATE(267)] = 15607, - [SMALL_STATE(268)] = 15658, - [SMALL_STATE(269)] = 15709, - [SMALL_STATE(270)] = 15768, - [SMALL_STATE(271)] = 15819, - [SMALL_STATE(272)] = 15904, - [SMALL_STATE(273)] = 15955, - [SMALL_STATE(274)] = 16006, - [SMALL_STATE(275)] = 16057, - [SMALL_STATE(276)] = 16108, - [SMALL_STATE(277)] = 16195, - [SMALL_STATE(278)] = 16245, - [SMALL_STATE(279)] = 16295, - [SMALL_STATE(280)] = 16345, - [SMALL_STATE(281)] = 16395, - [SMALL_STATE(282)] = 16445, - [SMALL_STATE(283)] = 16495, - [SMALL_STATE(284)] = 16545, - [SMALL_STATE(285)] = 16595, - [SMALL_STATE(286)] = 16645, - [SMALL_STATE(287)] = 16695, - [SMALL_STATE(288)] = 16745, - [SMALL_STATE(289)] = 16795, - [SMALL_STATE(290)] = 16845, - [SMALL_STATE(291)] = 16895, - [SMALL_STATE(292)] = 16945, - [SMALL_STATE(293)] = 16995, - [SMALL_STATE(294)] = 17045, - [SMALL_STATE(295)] = 17095, - [SMALL_STATE(296)] = 17145, - [SMALL_STATE(297)] = 17195, - [SMALL_STATE(298)] = 17245, - [SMALL_STATE(299)] = 17295, - [SMALL_STATE(300)] = 17345, - [SMALL_STATE(301)] = 17395, - [SMALL_STATE(302)] = 17445, - [SMALL_STATE(303)] = 17495, - [SMALL_STATE(304)] = 17545, - [SMALL_STATE(305)] = 17595, - [SMALL_STATE(306)] = 17645, - [SMALL_STATE(307)] = 17695, - [SMALL_STATE(308)] = 17745, - [SMALL_STATE(309)] = 17795, - [SMALL_STATE(310)] = 17845, - [SMALL_STATE(311)] = 17895, - [SMALL_STATE(312)] = 17945, - [SMALL_STATE(313)] = 17995, - [SMALL_STATE(314)] = 18045, - [SMALL_STATE(315)] = 18095, - [SMALL_STATE(316)] = 18145, - [SMALL_STATE(317)] = 18195, - [SMALL_STATE(318)] = 18245, - [SMALL_STATE(319)] = 18295, - [SMALL_STATE(320)] = 18345, - [SMALL_STATE(321)] = 18395, - [SMALL_STATE(322)] = 18445, - [SMALL_STATE(323)] = 18495, - [SMALL_STATE(324)] = 18545, - [SMALL_STATE(325)] = 18595, - [SMALL_STATE(326)] = 18645, - [SMALL_STATE(327)] = 18695, - [SMALL_STATE(328)] = 18745, - [SMALL_STATE(329)] = 18795, - [SMALL_STATE(330)] = 18845, - [SMALL_STATE(331)] = 18895, - [SMALL_STATE(332)] = 18945, - [SMALL_STATE(333)] = 18995, - [SMALL_STATE(334)] = 19045, - [SMALL_STATE(335)] = 19095, - [SMALL_STATE(336)] = 19145, - [SMALL_STATE(337)] = 19229, - [SMALL_STATE(338)] = 19279, - [SMALL_STATE(339)] = 19329, - [SMALL_STATE(340)] = 19379, - [SMALL_STATE(341)] = 19429, - [SMALL_STATE(342)] = 19479, - [SMALL_STATE(343)] = 19529, - [SMALL_STATE(344)] = 19579, - [SMALL_STATE(345)] = 19629, - [SMALL_STATE(346)] = 19679, - [SMALL_STATE(347)] = 19729, - [SMALL_STATE(348)] = 19779, - [SMALL_STATE(349)] = 19829, - [SMALL_STATE(350)] = 19879, - [SMALL_STATE(351)] = 19929, - [SMALL_STATE(352)] = 19979, - [SMALL_STATE(353)] = 20029, - [SMALL_STATE(354)] = 20079, - [SMALL_STATE(355)] = 20129, - [SMALL_STATE(356)] = 20179, - [SMALL_STATE(357)] = 20229, - [SMALL_STATE(358)] = 20279, - [SMALL_STATE(359)] = 20329, - [SMALL_STATE(360)] = 20379, - [SMALL_STATE(361)] = 20429, - [SMALL_STATE(362)] = 20479, - [SMALL_STATE(363)] = 20529, - [SMALL_STATE(364)] = 20579, - [SMALL_STATE(365)] = 20629, - [SMALL_STATE(366)] = 20679, - [SMALL_STATE(367)] = 20729, - [SMALL_STATE(368)] = 20779, - [SMALL_STATE(369)] = 20829, - [SMALL_STATE(370)] = 20879, - [SMALL_STATE(371)] = 20929, - [SMALL_STATE(372)] = 20979, - [SMALL_STATE(373)] = 21029, - [SMALL_STATE(374)] = 21079, - [SMALL_STATE(375)] = 21129, - [SMALL_STATE(376)] = 21179, - [SMALL_STATE(377)] = 21229, - [SMALL_STATE(378)] = 21279, - [SMALL_STATE(379)] = 21329, - [SMALL_STATE(380)] = 21379, - [SMALL_STATE(381)] = 21429, - [SMALL_STATE(382)] = 21479, - [SMALL_STATE(383)] = 21529, - [SMALL_STATE(384)] = 21579, - [SMALL_STATE(385)] = 21629, - [SMALL_STATE(386)] = 21679, - [SMALL_STATE(387)] = 21729, - [SMALL_STATE(388)] = 21779, - [SMALL_STATE(389)] = 21829, - [SMALL_STATE(390)] = 21879, - [SMALL_STATE(391)] = 21929, - [SMALL_STATE(392)] = 21979, - [SMALL_STATE(393)] = 22029, - [SMALL_STATE(394)] = 22079, - [SMALL_STATE(395)] = 22129, - [SMALL_STATE(396)] = 22179, - [SMALL_STATE(397)] = 22229, - [SMALL_STATE(398)] = 22279, - [SMALL_STATE(399)] = 22329, - [SMALL_STATE(400)] = 22379, - [SMALL_STATE(401)] = 22429, - [SMALL_STATE(402)] = 22479, - [SMALL_STATE(403)] = 22529, - [SMALL_STATE(404)] = 22579, - [SMALL_STATE(405)] = 22629, - [SMALL_STATE(406)] = 22679, - [SMALL_STATE(407)] = 22729, - [SMALL_STATE(408)] = 22813, - [SMALL_STATE(409)] = 22863, - [SMALL_STATE(410)] = 22913, - [SMALL_STATE(411)] = 22963, - [SMALL_STATE(412)] = 23013, - [SMALL_STATE(413)] = 23063, - [SMALL_STATE(414)] = 23113, - [SMALL_STATE(415)] = 23163, - [SMALL_STATE(416)] = 23213, - [SMALL_STATE(417)] = 23263, - [SMALL_STATE(418)] = 23313, - [SMALL_STATE(419)] = 23363, - [SMALL_STATE(420)] = 23413, - [SMALL_STATE(421)] = 23463, - [SMALL_STATE(422)] = 23513, - [SMALL_STATE(423)] = 23563, - [SMALL_STATE(424)] = 23613, - [SMALL_STATE(425)] = 23663, - [SMALL_STATE(426)] = 23713, - [SMALL_STATE(427)] = 23763, - [SMALL_STATE(428)] = 23813, - [SMALL_STATE(429)] = 23863, - [SMALL_STATE(430)] = 23913, - [SMALL_STATE(431)] = 23963, - [SMALL_STATE(432)] = 24013, - [SMALL_STATE(433)] = 24063, - [SMALL_STATE(434)] = 24113, - [SMALL_STATE(435)] = 24163, - [SMALL_STATE(436)] = 24213, - [SMALL_STATE(437)] = 24263, - [SMALL_STATE(438)] = 24313, - [SMALL_STATE(439)] = 24363, - [SMALL_STATE(440)] = 24413, - [SMALL_STATE(441)] = 24463, - [SMALL_STATE(442)] = 24513, - [SMALL_STATE(443)] = 24563, - [SMALL_STATE(444)] = 24613, - [SMALL_STATE(445)] = 24663, - [SMALL_STATE(446)] = 24713, - [SMALL_STATE(447)] = 24763, - [SMALL_STATE(448)] = 24813, - [SMALL_STATE(449)] = 24863, - [SMALL_STATE(450)] = 24913, - [SMALL_STATE(451)] = 24963, - [SMALL_STATE(452)] = 25013, - [SMALL_STATE(453)] = 25063, - [SMALL_STATE(454)] = 25113, - [SMALL_STATE(455)] = 25163, - [SMALL_STATE(456)] = 25213, - [SMALL_STATE(457)] = 25263, - [SMALL_STATE(458)] = 25313, - [SMALL_STATE(459)] = 25363, - [SMALL_STATE(460)] = 25413, - [SMALL_STATE(461)] = 25463, - [SMALL_STATE(462)] = 25513, - [SMALL_STATE(463)] = 25563, - [SMALL_STATE(464)] = 25613, - [SMALL_STATE(465)] = 25663, - [SMALL_STATE(466)] = 25744, - [SMALL_STATE(467)] = 25793, - [SMALL_STATE(468)] = 25842, - [SMALL_STATE(469)] = 25923, - [SMALL_STATE(470)] = 26004, - [SMALL_STATE(471)] = 26053, - [SMALL_STATE(472)] = 26134, - [SMALL_STATE(473)] = 26183, - [SMALL_STATE(474)] = 26232, - [SMALL_STATE(475)] = 26313, - [SMALL_STATE(476)] = 26394, - [SMALL_STATE(477)] = 26475, - [SMALL_STATE(478)] = 26524, - [SMALL_STATE(479)] = 26573, - [SMALL_STATE(480)] = 26654, - [SMALL_STATE(481)] = 26735, - [SMALL_STATE(482)] = 26816, + [SMALL_STATE(178)] = 8420, + [SMALL_STATE(179)] = 8515, + [SMALL_STATE(180)] = 8610, + [SMALL_STATE(181)] = 8705, + [SMALL_STATE(182)] = 8800, + [SMALL_STATE(183)] = 8895, + [SMALL_STATE(184)] = 8990, + [SMALL_STATE(185)] = 9085, + [SMALL_STATE(186)] = 9180, + [SMALL_STATE(187)] = 9275, + [SMALL_STATE(188)] = 9370, + [SMALL_STATE(189)] = 9465, + [SMALL_STATE(190)] = 9557, + [SMALL_STATE(191)] = 9611, + [SMALL_STATE(192)] = 9703, + [SMALL_STATE(193)] = 9757, + [SMALL_STATE(194)] = 9849, + [SMALL_STATE(195)] = 9941, + [SMALL_STATE(196)] = 10033, + [SMALL_STATE(197)] = 10125, + [SMALL_STATE(198)] = 10217, + [SMALL_STATE(199)] = 10271, + [SMALL_STATE(200)] = 10325, + [SMALL_STATE(201)] = 10417, + [SMALL_STATE(202)] = 10471, + [SMALL_STATE(203)] = 10563, + [SMALL_STATE(204)] = 10655, + [SMALL_STATE(205)] = 10747, + [SMALL_STATE(206)] = 10839, + [SMALL_STATE(207)] = 10931, + [SMALL_STATE(208)] = 11023, + [SMALL_STATE(209)] = 11115, + [SMALL_STATE(210)] = 11207, + [SMALL_STATE(211)] = 11299, + [SMALL_STATE(212)] = 11391, + [SMALL_STATE(213)] = 11483, + [SMALL_STATE(214)] = 11575, + [SMALL_STATE(215)] = 11667, + [SMALL_STATE(216)] = 11759, + [SMALL_STATE(217)] = 11813, + [SMALL_STATE(218)] = 11867, + [SMALL_STATE(219)] = 11921, + [SMALL_STATE(220)] = 11975, + [SMALL_STATE(221)] = 12069, + [SMALL_STATE(222)] = 12123, + [SMALL_STATE(223)] = 12215, + [SMALL_STATE(224)] = 12269, + [SMALL_STATE(225)] = 12361, + [SMALL_STATE(226)] = 12453, + [SMALL_STATE(227)] = 12507, + [SMALL_STATE(228)] = 12599, + [SMALL_STATE(229)] = 12691, + [SMALL_STATE(230)] = 12745, + [SMALL_STATE(231)] = 12837, + [SMALL_STATE(232)] = 12891, + [SMALL_STATE(233)] = 12945, + [SMALL_STATE(234)] = 13037, + [SMALL_STATE(235)] = 13091, + [SMALL_STATE(236)] = 13145, + [SMALL_STATE(237)] = 13237, + [SMALL_STATE(238)] = 13329, + [SMALL_STATE(239)] = 13421, + [SMALL_STATE(240)] = 13513, + [SMALL_STATE(241)] = 13605, + [SMALL_STATE(242)] = 13659, + [SMALL_STATE(243)] = 13751, + [SMALL_STATE(244)] = 13805, + [SMALL_STATE(245)] = 13859, + [SMALL_STATE(246)] = 13951, + [SMALL_STATE(247)] = 14005, + [SMALL_STATE(248)] = 14097, + [SMALL_STATE(249)] = 14189, + [SMALL_STATE(250)] = 14281, + [SMALL_STATE(251)] = 14373, + [SMALL_STATE(252)] = 14427, + [SMALL_STATE(253)] = 14518, + [SMALL_STATE(254)] = 14607, + [SMALL_STATE(255)] = 14696, + [SMALL_STATE(256)] = 14787, + [SMALL_STATE(257)] = 14878, + [SMALL_STATE(258)] = 14969, + [SMALL_STATE(259)] = 15060, + [SMALL_STATE(260)] = 15149, + [SMALL_STATE(261)] = 15211, + [SMALL_STATE(262)] = 15299, + [SMALL_STATE(263)] = 15387, + [SMALL_STATE(264)] = 15449, + [SMALL_STATE(265)] = 15534, + [SMALL_STATE(266)] = 15585, + [SMALL_STATE(267)] = 15636, + [SMALL_STATE(268)] = 15687, + [SMALL_STATE(269)] = 15774, + [SMALL_STATE(270)] = 15825, + [SMALL_STATE(271)] = 15884, + [SMALL_STATE(272)] = 15935, + [SMALL_STATE(273)] = 15986, + [SMALL_STATE(274)] = 16037, + [SMALL_STATE(275)] = 16088, + [SMALL_STATE(276)] = 16139, + [SMALL_STATE(277)] = 16189, + [SMALL_STATE(278)] = 16239, + [SMALL_STATE(279)] = 16289, + [SMALL_STATE(280)] = 16339, + [SMALL_STATE(281)] = 16389, + [SMALL_STATE(282)] = 16439, + [SMALL_STATE(283)] = 16489, + [SMALL_STATE(284)] = 16539, + [SMALL_STATE(285)] = 16589, + [SMALL_STATE(286)] = 16639, + [SMALL_STATE(287)] = 16689, + [SMALL_STATE(288)] = 16739, + [SMALL_STATE(289)] = 16789, + [SMALL_STATE(290)] = 16839, + [SMALL_STATE(291)] = 16889, + [SMALL_STATE(292)] = 16973, + [SMALL_STATE(293)] = 17023, + [SMALL_STATE(294)] = 17073, + [SMALL_STATE(295)] = 17123, + [SMALL_STATE(296)] = 17173, + [SMALL_STATE(297)] = 17223, + [SMALL_STATE(298)] = 17273, + [SMALL_STATE(299)] = 17323, + [SMALL_STATE(300)] = 17373, + [SMALL_STATE(301)] = 17423, + [SMALL_STATE(302)] = 17473, + [SMALL_STATE(303)] = 17523, + [SMALL_STATE(304)] = 17573, + [SMALL_STATE(305)] = 17623, + [SMALL_STATE(306)] = 17673, + [SMALL_STATE(307)] = 17723, + [SMALL_STATE(308)] = 17773, + [SMALL_STATE(309)] = 17823, + [SMALL_STATE(310)] = 17873, + [SMALL_STATE(311)] = 17923, + [SMALL_STATE(312)] = 17973, + [SMALL_STATE(313)] = 18023, + [SMALL_STATE(314)] = 18073, + [SMALL_STATE(315)] = 18123, + [SMALL_STATE(316)] = 18173, + [SMALL_STATE(317)] = 18223, + [SMALL_STATE(318)] = 18273, + [SMALL_STATE(319)] = 18323, + [SMALL_STATE(320)] = 18373, + [SMALL_STATE(321)] = 18423, + [SMALL_STATE(322)] = 18473, + [SMALL_STATE(323)] = 18523, + [SMALL_STATE(324)] = 18573, + [SMALL_STATE(325)] = 18623, + [SMALL_STATE(326)] = 18673, + [SMALL_STATE(327)] = 18723, + [SMALL_STATE(328)] = 18773, + [SMALL_STATE(329)] = 18823, + [SMALL_STATE(330)] = 18873, + [SMALL_STATE(331)] = 18923, + [SMALL_STATE(332)] = 18973, + [SMALL_STATE(333)] = 19023, + [SMALL_STATE(334)] = 19073, + [SMALL_STATE(335)] = 19123, + [SMALL_STATE(336)] = 19173, + [SMALL_STATE(337)] = 19223, + [SMALL_STATE(338)] = 19273, + [SMALL_STATE(339)] = 19323, + [SMALL_STATE(340)] = 19373, + [SMALL_STATE(341)] = 19423, + [SMALL_STATE(342)] = 19473, + [SMALL_STATE(343)] = 19523, + [SMALL_STATE(344)] = 19573, + [SMALL_STATE(345)] = 19623, + [SMALL_STATE(346)] = 19673, + [SMALL_STATE(347)] = 19723, + [SMALL_STATE(348)] = 19773, + [SMALL_STATE(349)] = 19823, + [SMALL_STATE(350)] = 19873, + [SMALL_STATE(351)] = 19923, + [SMALL_STATE(352)] = 19973, + [SMALL_STATE(353)] = 20023, + [SMALL_STATE(354)] = 20073, + [SMALL_STATE(355)] = 20123, + [SMALL_STATE(356)] = 20173, + [SMALL_STATE(357)] = 20223, + [SMALL_STATE(358)] = 20273, + [SMALL_STATE(359)] = 20323, + [SMALL_STATE(360)] = 20373, + [SMALL_STATE(361)] = 20423, + [SMALL_STATE(362)] = 20473, + [SMALL_STATE(363)] = 20523, + [SMALL_STATE(364)] = 20573, + [SMALL_STATE(365)] = 20623, + [SMALL_STATE(366)] = 20673, + [SMALL_STATE(367)] = 20723, + [SMALL_STATE(368)] = 20773, + [SMALL_STATE(369)] = 20823, + [SMALL_STATE(370)] = 20873, + [SMALL_STATE(371)] = 20923, + [SMALL_STATE(372)] = 20973, + [SMALL_STATE(373)] = 21023, + [SMALL_STATE(374)] = 21073, + [SMALL_STATE(375)] = 21123, + [SMALL_STATE(376)] = 21173, + [SMALL_STATE(377)] = 21223, + [SMALL_STATE(378)] = 21273, + [SMALL_STATE(379)] = 21323, + [SMALL_STATE(380)] = 21373, + [SMALL_STATE(381)] = 21423, + [SMALL_STATE(382)] = 21473, + [SMALL_STATE(383)] = 21523, + [SMALL_STATE(384)] = 21573, + [SMALL_STATE(385)] = 21623, + [SMALL_STATE(386)] = 21673, + [SMALL_STATE(387)] = 21723, + [SMALL_STATE(388)] = 21773, + [SMALL_STATE(389)] = 21823, + [SMALL_STATE(390)] = 21873, + [SMALL_STATE(391)] = 21923, + [SMALL_STATE(392)] = 21973, + [SMALL_STATE(393)] = 22023, + [SMALL_STATE(394)] = 22073, + [SMALL_STATE(395)] = 22123, + [SMALL_STATE(396)] = 22173, + [SMALL_STATE(397)] = 22223, + [SMALL_STATE(398)] = 22273, + [SMALL_STATE(399)] = 22323, + [SMALL_STATE(400)] = 22373, + [SMALL_STATE(401)] = 22423, + [SMALL_STATE(402)] = 22473, + [SMALL_STATE(403)] = 22523, + [SMALL_STATE(404)] = 22573, + [SMALL_STATE(405)] = 22623, + [SMALL_STATE(406)] = 22673, + [SMALL_STATE(407)] = 22723, + [SMALL_STATE(408)] = 22773, + [SMALL_STATE(409)] = 22823, + [SMALL_STATE(410)] = 22873, + [SMALL_STATE(411)] = 22923, + [SMALL_STATE(412)] = 22973, + [SMALL_STATE(413)] = 23023, + [SMALL_STATE(414)] = 23073, + [SMALL_STATE(415)] = 23123, + [SMALL_STATE(416)] = 23173, + [SMALL_STATE(417)] = 23223, + [SMALL_STATE(418)] = 23273, + [SMALL_STATE(419)] = 23357, + [SMALL_STATE(420)] = 23407, + [SMALL_STATE(421)] = 23457, + [SMALL_STATE(422)] = 23507, + [SMALL_STATE(423)] = 23557, + [SMALL_STATE(424)] = 23607, + [SMALL_STATE(425)] = 23657, + [SMALL_STATE(426)] = 23707, + [SMALL_STATE(427)] = 23757, + [SMALL_STATE(428)] = 23807, + [SMALL_STATE(429)] = 23857, + [SMALL_STATE(430)] = 23907, + [SMALL_STATE(431)] = 23957, + [SMALL_STATE(432)] = 24007, + [SMALL_STATE(433)] = 24057, + [SMALL_STATE(434)] = 24107, + [SMALL_STATE(435)] = 24157, + [SMALL_STATE(436)] = 24207, + [SMALL_STATE(437)] = 24257, + [SMALL_STATE(438)] = 24307, + [SMALL_STATE(439)] = 24357, + [SMALL_STATE(440)] = 24407, + [SMALL_STATE(441)] = 24457, + [SMALL_STATE(442)] = 24507, + [SMALL_STATE(443)] = 24557, + [SMALL_STATE(444)] = 24607, + [SMALL_STATE(445)] = 24657, + [SMALL_STATE(446)] = 24707, + [SMALL_STATE(447)] = 24757, + [SMALL_STATE(448)] = 24807, + [SMALL_STATE(449)] = 24857, + [SMALL_STATE(450)] = 24907, + [SMALL_STATE(451)] = 24957, + [SMALL_STATE(452)] = 25007, + [SMALL_STATE(453)] = 25057, + [SMALL_STATE(454)] = 25107, + [SMALL_STATE(455)] = 25157, + [SMALL_STATE(456)] = 25207, + [SMALL_STATE(457)] = 25257, + [SMALL_STATE(458)] = 25307, + [SMALL_STATE(459)] = 25357, + [SMALL_STATE(460)] = 25407, + [SMALL_STATE(461)] = 25457, + [SMALL_STATE(462)] = 25507, + [SMALL_STATE(463)] = 25557, + [SMALL_STATE(464)] = 25607, + [SMALL_STATE(465)] = 25656, + [SMALL_STATE(466)] = 25737, + [SMALL_STATE(467)] = 25786, + [SMALL_STATE(468)] = 25867, + [SMALL_STATE(469)] = 25916, + [SMALL_STATE(470)] = 25997, + [SMALL_STATE(471)] = 26078, + [SMALL_STATE(472)] = 26159, + [SMALL_STATE(473)] = 26208, + [SMALL_STATE(474)] = 26289, + [SMALL_STATE(475)] = 26338, + [SMALL_STATE(476)] = 26419, + [SMALL_STATE(477)] = 26500, + [SMALL_STATE(478)] = 26581, + [SMALL_STATE(479)] = 26630, + [SMALL_STATE(480)] = 26679, + [SMALL_STATE(481)] = 26760, + [SMALL_STATE(482)] = 26841, [SMALL_STATE(483)] = 26897, [SMALL_STATE(484)] = 26953, [SMALL_STATE(485)] = 27009, - [SMALL_STATE(486)] = 27065, - [SMALL_STATE(487)] = 27112, - [SMALL_STATE(488)] = 27159, - [SMALL_STATE(489)] = 27206, - [SMALL_STATE(490)] = 27253, - [SMALL_STATE(491)] = 27300, - [SMALL_STATE(492)] = 27347, - [SMALL_STATE(493)] = 27396, - [SMALL_STATE(494)] = 27443, - [SMALL_STATE(495)] = 27490, - [SMALL_STATE(496)] = 27553, - [SMALL_STATE(497)] = 27599, - [SMALL_STATE(498)] = 27645, - [SMALL_STATE(499)] = 27691, - [SMALL_STATE(500)] = 27737, - [SMALL_STATE(501)] = 27821, - [SMALL_STATE(502)] = 27900, - [SMALL_STATE(503)] = 27969, - [SMALL_STATE(504)] = 28038, - [SMALL_STATE(505)] = 28090, - [SMALL_STATE(506)] = 28156, - [SMALL_STATE(507)] = 28208, - [SMALL_STATE(508)] = 28260, - [SMALL_STATE(509)] = 28312, - [SMALL_STATE(510)] = 28364, - [SMALL_STATE(511)] = 28445, - [SMALL_STATE(512)] = 28526, - [SMALL_STATE(513)] = 28568, - [SMALL_STATE(514)] = 28617, - [SMALL_STATE(515)] = 28662, - [SMALL_STATE(516)] = 28708, - [SMALL_STATE(517)] = 28753, - [SMALL_STATE(518)] = 28792, - [SMALL_STATE(519)] = 28834, + [SMALL_STATE(486)] = 27056, + [SMALL_STATE(487)] = 27103, + [SMALL_STATE(488)] = 27150, + [SMALL_STATE(489)] = 27197, + [SMALL_STATE(490)] = 27244, + [SMALL_STATE(491)] = 27291, + [SMALL_STATE(492)] = 27340, + [SMALL_STATE(493)] = 27387, + [SMALL_STATE(494)] = 27450, + [SMALL_STATE(495)] = 27497, + [SMALL_STATE(496)] = 27543, + [SMALL_STATE(497)] = 27589, + [SMALL_STATE(498)] = 27635, + [SMALL_STATE(499)] = 27681, + [SMALL_STATE(500)] = 27765, + [SMALL_STATE(501)] = 27834, + [SMALL_STATE(502)] = 27913, + [SMALL_STATE(503)] = 27982, + [SMALL_STATE(504)] = 28034, + [SMALL_STATE(505)] = 28086, + [SMALL_STATE(506)] = 28138, + [SMALL_STATE(507)] = 28190, + [SMALL_STATE(508)] = 28242, + [SMALL_STATE(509)] = 28308, + [SMALL_STATE(510)] = 28389, + [SMALL_STATE(511)] = 28470, + [SMALL_STATE(512)] = 28512, + [SMALL_STATE(513)] = 28557, + [SMALL_STATE(514)] = 28606, + [SMALL_STATE(515)] = 28652, + [SMALL_STATE(516)] = 28697, + [SMALL_STATE(517)] = 28736, + [SMALL_STATE(518)] = 28790, + [SMALL_STATE(519)] = 28844, [SMALL_STATE(520)] = 28888, - [SMALL_STATE(521)] = 28942, - [SMALL_STATE(522)] = 28996, - [SMALL_STATE(523)] = 29040, - [SMALL_STATE(524)] = 29094, - [SMALL_STATE(525)] = 29139, - [SMALL_STATE(526)] = 29188, - [SMALL_STATE(527)] = 29254, - [SMALL_STATE(528)] = 29304, - [SMALL_STATE(529)] = 29361, + [SMALL_STATE(521)] = 28930, + [SMALL_STATE(522)] = 28984, + [SMALL_STATE(523)] = 29038, + [SMALL_STATE(524)] = 29087, + [SMALL_STATE(525)] = 29132, + [SMALL_STATE(526)] = 29182, + [SMALL_STATE(527)] = 29248, + [SMALL_STATE(528)] = 29305, + [SMALL_STATE(529)] = 29362, [SMALL_STATE(530)] = 29418, - [SMALL_STATE(531)] = 29474, - [SMALL_STATE(532)] = 29530, - [SMALL_STATE(533)] = 29586, - [SMALL_STATE(534)] = 29642, - [SMALL_STATE(535)] = 29698, - [SMALL_STATE(536)] = 29734, - [SMALL_STATE(537)] = 29791, - [SMALL_STATE(538)] = 29848, - [SMALL_STATE(539)] = 29885, - [SMALL_STATE(540)] = 29942, - [SMALL_STATE(541)] = 29999, - [SMALL_STATE(542)] = 30056, - [SMALL_STATE(543)] = 30106, - [SMALL_STATE(544)] = 30160, - [SMALL_STATE(545)] = 30194, - [SMALL_STATE(546)] = 30248, - [SMALL_STATE(547)] = 30302, - [SMALL_STATE(548)] = 30356, - [SMALL_STATE(549)] = 30410, - [SMALL_STATE(550)] = 30442, - [SMALL_STATE(551)] = 30492, - [SMALL_STATE(552)] = 30546, - [SMALL_STATE(553)] = 30586, - [SMALL_STATE(554)] = 30615, - [SMALL_STATE(555)] = 30666, - [SMALL_STATE(556)] = 30717, - [SMALL_STATE(557)] = 30746, - [SMALL_STATE(558)] = 30775, - [SMALL_STATE(559)] = 30826, - [SMALL_STATE(560)] = 30867, - [SMALL_STATE(561)] = 30918, - [SMALL_STATE(562)] = 30967, - [SMALL_STATE(563)] = 31018, - [SMALL_STATE(564)] = 31069, - [SMALL_STATE(565)] = 31123, - [SMALL_STATE(566)] = 31171, - [SMALL_STATE(567)] = 31214, - [SMALL_STATE(568)] = 31245, - [SMALL_STATE(569)] = 31276, - [SMALL_STATE(570)] = 31327, - [SMALL_STATE(571)] = 31370, - [SMALL_STATE(572)] = 31413, - [SMALL_STATE(573)] = 31460, - [SMALL_STATE(574)] = 31491, - [SMALL_STATE(575)] = 31520, - [SMALL_STATE(576)] = 31571, - [SMALL_STATE(577)] = 31622, - [SMALL_STATE(578)] = 31672, - [SMALL_STATE(579)] = 31698, - [SMALL_STATE(580)] = 31724, - [SMALL_STATE(581)] = 31772, - [SMALL_STATE(582)] = 31798, - [SMALL_STATE(583)] = 31824, - [SMALL_STATE(584)] = 31872, - [SMALL_STATE(585)] = 31912, - [SMALL_STATE(586)] = 31938, - [SMALL_STATE(587)] = 31967, - [SMALL_STATE(588)] = 32014, - [SMALL_STATE(589)] = 32043, - [SMALL_STATE(590)] = 32072, - [SMALL_STATE(591)] = 32109, - [SMALL_STATE(592)] = 32138, - [SMALL_STATE(593)] = 32185, - [SMALL_STATE(594)] = 32232, - [SMALL_STATE(595)] = 32277, - [SMALL_STATE(596)] = 32306, - [SMALL_STATE(597)] = 32353, - [SMALL_STATE(598)] = 32382, - [SMALL_STATE(599)] = 32427, - [SMALL_STATE(600)] = 32472, - [SMALL_STATE(601)] = 32506, - [SMALL_STATE(602)] = 32548, - [SMALL_STATE(603)] = 32590, - [SMALL_STATE(604)] = 32614, - [SMALL_STATE(605)] = 32648, - [SMALL_STATE(606)] = 32672, - [SMALL_STATE(607)] = 32696, - [SMALL_STATE(608)] = 32720, - [SMALL_STATE(609)] = 32744, - [SMALL_STATE(610)] = 32786, - [SMALL_STATE(611)] = 32828, - [SMALL_STATE(612)] = 32869, - [SMALL_STATE(613)] = 32896, - [SMALL_STATE(614)] = 32937, - [SMALL_STATE(615)] = 32978, - [SMALL_STATE(616)] = 33017, - [SMALL_STATE(617)] = 33058, - [SMALL_STATE(618)] = 33085, - [SMALL_STATE(619)] = 33123, - [SMALL_STATE(620)] = 33163, - [SMALL_STATE(621)] = 33201, - [SMALL_STATE(622)] = 33237, - [SMALL_STATE(623)] = 33275, - [SMALL_STATE(624)] = 33313, - [SMALL_STATE(625)] = 33351, - [SMALL_STATE(626)] = 33389, - [SMALL_STATE(627)] = 33427, - [SMALL_STATE(628)] = 33462, - [SMALL_STATE(629)] = 33495, - [SMALL_STATE(630)] = 33530, - [SMALL_STATE(631)] = 33565, - [SMALL_STATE(632)] = 33600, - [SMALL_STATE(633)] = 33635, - [SMALL_STATE(634)] = 33670, - [SMALL_STATE(635)] = 33703, - [SMALL_STATE(636)] = 33736, - [SMALL_STATE(637)] = 33771, - [SMALL_STATE(638)] = 33806, - [SMALL_STATE(639)] = 33841, - [SMALL_STATE(640)] = 33874, - [SMALL_STATE(641)] = 33911, - [SMALL_STATE(642)] = 33946, - [SMALL_STATE(643)] = 33981, - [SMALL_STATE(644)] = 34016, - [SMALL_STATE(645)] = 34051, - [SMALL_STATE(646)] = 34086, - [SMALL_STATE(647)] = 34107, - [SMALL_STATE(648)] = 34142, - [SMALL_STATE(649)] = 34163, - [SMALL_STATE(650)] = 34198, - [SMALL_STATE(651)] = 34219, - [SMALL_STATE(652)] = 34252, - [SMALL_STATE(653)] = 34287, - [SMALL_STATE(654)] = 34308, - [SMALL_STATE(655)] = 34343, - [SMALL_STATE(656)] = 34364, - [SMALL_STATE(657)] = 34399, - [SMALL_STATE(658)] = 34436, - [SMALL_STATE(659)] = 34471, - [SMALL_STATE(660)] = 34499, - [SMALL_STATE(661)] = 34527, - [SMALL_STATE(662)] = 34559, - [SMALL_STATE(663)] = 34591, - [SMALL_STATE(664)] = 34623, - [SMALL_STATE(665)] = 34655, - [SMALL_STATE(666)] = 34687, - [SMALL_STATE(667)] = 34719, - [SMALL_STATE(668)] = 34751, - [SMALL_STATE(669)] = 34783, - [SMALL_STATE(670)] = 34815, - [SMALL_STATE(671)] = 34843, - [SMALL_STATE(672)] = 34871, - [SMALL_STATE(673)] = 34899, - [SMALL_STATE(674)] = 34931, - [SMALL_STATE(675)] = 34961, - [SMALL_STATE(676)] = 34990, - [SMALL_STATE(677)] = 35017, - [SMALL_STATE(678)] = 35044, - [SMALL_STATE(679)] = 35073, - [SMALL_STATE(680)] = 35100, - [SMALL_STATE(681)] = 35127, - [SMALL_STATE(682)] = 35154, - [SMALL_STATE(683)] = 35177, - [SMALL_STATE(684)] = 35204, - [SMALL_STATE(685)] = 35231, - [SMALL_STATE(686)] = 35258, - [SMALL_STATE(687)] = 35285, - [SMALL_STATE(688)] = 35312, - [SMALL_STATE(689)] = 35339, - [SMALL_STATE(690)] = 35366, - [SMALL_STATE(691)] = 35389, - [SMALL_STATE(692)] = 35416, - [SMALL_STATE(693)] = 35443, - [SMALL_STATE(694)] = 35470, - [SMALL_STATE(695)] = 35497, - [SMALL_STATE(696)] = 35524, - [SMALL_STATE(697)] = 35551, - [SMALL_STATE(698)] = 35578, - [SMALL_STATE(699)] = 35607, - [SMALL_STATE(700)] = 35634, - [SMALL_STATE(701)] = 35661, - [SMALL_STATE(702)] = 35688, - [SMALL_STATE(703)] = 35715, - [SMALL_STATE(704)] = 35744, - [SMALL_STATE(705)] = 35771, - [SMALL_STATE(706)] = 35798, - [SMALL_STATE(707)] = 35825, - [SMALL_STATE(708)] = 35852, - [SMALL_STATE(709)] = 35879, - [SMALL_STATE(710)] = 35906, - [SMALL_STATE(711)] = 35933, - [SMALL_STATE(712)] = 35960, - [SMALL_STATE(713)] = 35987, - [SMALL_STATE(714)] = 36016, - [SMALL_STATE(715)] = 36043, - [SMALL_STATE(716)] = 36070, - [SMALL_STATE(717)] = 36097, - [SMALL_STATE(718)] = 36124, - [SMALL_STATE(719)] = 36151, - [SMALL_STATE(720)] = 36180, - [SMALL_STATE(721)] = 36203, - [SMALL_STATE(722)] = 36230, - [SMALL_STATE(723)] = 36253, - [SMALL_STATE(724)] = 36280, - [SMALL_STATE(725)] = 36307, - [SMALL_STATE(726)] = 36334, - [SMALL_STATE(727)] = 36361, - [SMALL_STATE(728)] = 36396, - [SMALL_STATE(729)] = 36423, - [SMALL_STATE(730)] = 36450, - [SMALL_STATE(731)] = 36479, - [SMALL_STATE(732)] = 36506, - [SMALL_STATE(733)] = 36535, - [SMALL_STATE(734)] = 36556, - [SMALL_STATE(735)] = 36583, - [SMALL_STATE(736)] = 36610, - [SMALL_STATE(737)] = 36637, - [SMALL_STATE(738)] = 36664, - [SMALL_STATE(739)] = 36693, - [SMALL_STATE(740)] = 36720, - [SMALL_STATE(741)] = 36747, - [SMALL_STATE(742)] = 36774, - [SMALL_STATE(743)] = 36803, - [SMALL_STATE(744)] = 36832, - [SMALL_STATE(745)] = 36859, - [SMALL_STATE(746)] = 36888, - [SMALL_STATE(747)] = 36912, - [SMALL_STATE(748)] = 36936, - [SMALL_STATE(749)] = 36954, - [SMALL_STATE(750)] = 36978, - [SMALL_STATE(751)] = 37002, - [SMALL_STATE(752)] = 37026, - [SMALL_STATE(753)] = 37050, - [SMALL_STATE(754)] = 37074, - [SMALL_STATE(755)] = 37098, - [SMALL_STATE(756)] = 37122, - [SMALL_STATE(757)] = 37146, - [SMALL_STATE(758)] = 37170, - [SMALL_STATE(759)] = 37194, - [SMALL_STATE(760)] = 37218, - [SMALL_STATE(761)] = 37244, - [SMALL_STATE(762)] = 37268, - [SMALL_STATE(763)] = 37292, - [SMALL_STATE(764)] = 37316, - [SMALL_STATE(765)] = 37340, - [SMALL_STATE(766)] = 37364, - [SMALL_STATE(767)] = 37388, - [SMALL_STATE(768)] = 37414, - [SMALL_STATE(769)] = 37438, - [SMALL_STATE(770)] = 37462, - [SMALL_STATE(771)] = 37486, - [SMALL_STATE(772)] = 37510, - [SMALL_STATE(773)] = 37534, - [SMALL_STATE(774)] = 37558, - [SMALL_STATE(775)] = 37582, - [SMALL_STATE(776)] = 37606, - [SMALL_STATE(777)] = 37630, - [SMALL_STATE(778)] = 37650, - [SMALL_STATE(779)] = 37670, - [SMALL_STATE(780)] = 37694, - [SMALL_STATE(781)] = 37718, - [SMALL_STATE(782)] = 37742, - [SMALL_STATE(783)] = 37766, - [SMALL_STATE(784)] = 37790, - [SMALL_STATE(785)] = 37814, - [SMALL_STATE(786)] = 37836, - [SMALL_STATE(787)] = 37860, - [SMALL_STATE(788)] = 37884, - [SMALL_STATE(789)] = 37908, - [SMALL_STATE(790)] = 37932, - [SMALL_STATE(791)] = 37954, - [SMALL_STATE(792)] = 37978, - [SMALL_STATE(793)] = 38002, - [SMALL_STATE(794)] = 38026, - [SMALL_STATE(795)] = 38050, - [SMALL_STATE(796)] = 38074, - [SMALL_STATE(797)] = 38098, - [SMALL_STATE(798)] = 38122, - [SMALL_STATE(799)] = 38146, - [SMALL_STATE(800)] = 38170, - [SMALL_STATE(801)] = 38194, - [SMALL_STATE(802)] = 38218, - [SMALL_STATE(803)] = 38242, - [SMALL_STATE(804)] = 38266, - [SMALL_STATE(805)] = 38290, - [SMALL_STATE(806)] = 38312, - [SMALL_STATE(807)] = 38331, - [SMALL_STATE(808)] = 38360, - [SMALL_STATE(809)] = 38389, - [SMALL_STATE(810)] = 38408, - [SMALL_STATE(811)] = 38437, - [SMALL_STATE(812)] = 38456, - [SMALL_STATE(813)] = 38475, - [SMALL_STATE(814)] = 38504, - [SMALL_STATE(815)] = 38533, - [SMALL_STATE(816)] = 38552, - [SMALL_STATE(817)] = 38571, - [SMALL_STATE(818)] = 38589, - [SMALL_STATE(819)] = 38621, - [SMALL_STATE(820)] = 38653, - [SMALL_STATE(821)] = 38669, - [SMALL_STATE(822)] = 38701, - [SMALL_STATE(823)] = 38717, - [SMALL_STATE(824)] = 38749, - [SMALL_STATE(825)] = 38765, - [SMALL_STATE(826)] = 38781, - [SMALL_STATE(827)] = 38797, - [SMALL_STATE(828)] = 38824, - [SMALL_STATE(829)] = 38851, - [SMALL_STATE(830)] = 38878, - [SMALL_STATE(831)] = 38901, - [SMALL_STATE(832)] = 38928, - [SMALL_STATE(833)] = 38957, - [SMALL_STATE(834)] = 38984, - [SMALL_STATE(835)] = 39011, - [SMALL_STATE(836)] = 39038, - [SMALL_STATE(837)] = 39067, - [SMALL_STATE(838)] = 39098, - [SMALL_STATE(839)] = 39129, - [SMALL_STATE(840)] = 39156, - [SMALL_STATE(841)] = 39187, - [SMALL_STATE(842)] = 39214, - [SMALL_STATE(843)] = 39238, - [SMALL_STATE(844)] = 39264, - [SMALL_STATE(845)] = 39280, - [SMALL_STATE(846)] = 39306, - [SMALL_STATE(847)] = 39322, - [SMALL_STATE(848)] = 39338, - [SMALL_STATE(849)] = 39354, - [SMALL_STATE(850)] = 39370, - [SMALL_STATE(851)] = 39386, - [SMALL_STATE(852)] = 39402, - [SMALL_STATE(853)] = 39418, - [SMALL_STATE(854)] = 39434, - [SMALL_STATE(855)] = 39450, - [SMALL_STATE(856)] = 39466, - [SMALL_STATE(857)] = 39482, - [SMALL_STATE(858)] = 39498, - [SMALL_STATE(859)] = 39514, - [SMALL_STATE(860)] = 39530, - [SMALL_STATE(861)] = 39556, - [SMALL_STATE(862)] = 39572, - [SMALL_STATE(863)] = 39588, - [SMALL_STATE(864)] = 39604, - [SMALL_STATE(865)] = 39620, - [SMALL_STATE(866)] = 39642, - [SMALL_STATE(867)] = 39658, - [SMALL_STATE(868)] = 39674, - [SMALL_STATE(869)] = 39690, - [SMALL_STATE(870)] = 39706, - [SMALL_STATE(871)] = 39732, - [SMALL_STATE(872)] = 39758, - [SMALL_STATE(873)] = 39774, - [SMALL_STATE(874)] = 39790, - [SMALL_STATE(875)] = 39806, - [SMALL_STATE(876)] = 39822, - [SMALL_STATE(877)] = 39838, - [SMALL_STATE(878)] = 39866, - [SMALL_STATE(879)] = 39882, - [SMALL_STATE(880)] = 39908, - [SMALL_STATE(881)] = 39924, - [SMALL_STATE(882)] = 39940, - [SMALL_STATE(883)] = 39956, - [SMALL_STATE(884)] = 39978, - [SMALL_STATE(885)] = 39994, - [SMALL_STATE(886)] = 40010, - [SMALL_STATE(887)] = 40026, - [SMALL_STATE(888)] = 40042, - [SMALL_STATE(889)] = 40058, - [SMALL_STATE(890)] = 40074, - [SMALL_STATE(891)] = 40087, - [SMALL_STATE(892)] = 40108, - [SMALL_STATE(893)] = 40133, - [SMALL_STATE(894)] = 40158, - [SMALL_STATE(895)] = 40183, - [SMALL_STATE(896)] = 40208, - [SMALL_STATE(897)] = 40233, - [SMALL_STATE(898)] = 40258, - [SMALL_STATE(899)] = 40283, - [SMALL_STATE(900)] = 40308, - [SMALL_STATE(901)] = 40333, - [SMALL_STATE(902)] = 40346, - [SMALL_STATE(903)] = 40371, - [SMALL_STATE(904)] = 40396, - [SMALL_STATE(905)] = 40417, - [SMALL_STATE(906)] = 40442, - [SMALL_STATE(907)] = 40467, - [SMALL_STATE(908)] = 40492, - [SMALL_STATE(909)] = 40513, - [SMALL_STATE(910)] = 40526, - [SMALL_STATE(911)] = 40547, - [SMALL_STATE(912)] = 40572, - [SMALL_STATE(913)] = 40597, - [SMALL_STATE(914)] = 40622, - [SMALL_STATE(915)] = 40635, - [SMALL_STATE(916)] = 40648, - [SMALL_STATE(917)] = 40673, - [SMALL_STATE(918)] = 40698, - [SMALL_STATE(919)] = 40723, - [SMALL_STATE(920)] = 40748, - [SMALL_STATE(921)] = 40763, - [SMALL_STATE(922)] = 40786, - [SMALL_STATE(923)] = 40811, - [SMALL_STATE(924)] = 40833, - [SMALL_STATE(925)] = 40847, - [SMALL_STATE(926)] = 40869, - [SMALL_STATE(927)] = 40891, - [SMALL_STATE(928)] = 40905, - [SMALL_STATE(929)] = 40927, - [SMALL_STATE(930)] = 40945, - [SMALL_STATE(931)] = 40963, - [SMALL_STATE(932)] = 40983, - [SMALL_STATE(933)] = 40995, - [SMALL_STATE(934)] = 41011, - [SMALL_STATE(935)] = 41025, - [SMALL_STATE(936)] = 41047, - [SMALL_STATE(937)] = 41065, - [SMALL_STATE(938)] = 41079, - [SMALL_STATE(939)] = 41095, - [SMALL_STATE(940)] = 41115, - [SMALL_STATE(941)] = 41137, - [SMALL_STATE(942)] = 41159, - [SMALL_STATE(943)] = 41177, - [SMALL_STATE(944)] = 41191, - [SMALL_STATE(945)] = 41209, - [SMALL_STATE(946)] = 41229, - [SMALL_STATE(947)] = 41243, - [SMALL_STATE(948)] = 41265, - [SMALL_STATE(949)] = 41285, - [SMALL_STATE(950)] = 41301, - [SMALL_STATE(951)] = 41323, - [SMALL_STATE(952)] = 41337, - [SMALL_STATE(953)] = 41359, - [SMALL_STATE(954)] = 41373, - [SMALL_STATE(955)] = 41391, - [SMALL_STATE(956)] = 41411, - [SMALL_STATE(957)] = 41431, - [SMALL_STATE(958)] = 41451, - [SMALL_STATE(959)] = 41473, - [SMALL_STATE(960)] = 41485, - [SMALL_STATE(961)] = 41504, - [SMALL_STATE(962)] = 41523, - [SMALL_STATE(963)] = 41542, - [SMALL_STATE(964)] = 41561, - [SMALL_STATE(965)] = 41580, - [SMALL_STATE(966)] = 41599, - [SMALL_STATE(967)] = 41618, - [SMALL_STATE(968)] = 41629, - [SMALL_STATE(969)] = 41648, - [SMALL_STATE(970)] = 41667, - [SMALL_STATE(971)] = 41682, - [SMALL_STATE(972)] = 41701, - [SMALL_STATE(973)] = 41718, - [SMALL_STATE(974)] = 41737, - [SMALL_STATE(975)] = 41756, - [SMALL_STATE(976)] = 41775, - [SMALL_STATE(977)] = 41790, - [SMALL_STATE(978)] = 41809, - [SMALL_STATE(979)] = 41828, - [SMALL_STATE(980)] = 41847, - [SMALL_STATE(981)] = 41866, - [SMALL_STATE(982)] = 41885, - [SMALL_STATE(983)] = 41904, - [SMALL_STATE(984)] = 41919, - [SMALL_STATE(985)] = 41936, - [SMALL_STATE(986)] = 41955, - [SMALL_STATE(987)] = 41974, - [SMALL_STATE(988)] = 41993, - [SMALL_STATE(989)] = 42008, - [SMALL_STATE(990)] = 42027, - [SMALL_STATE(991)] = 42038, - [SMALL_STATE(992)] = 42057, - [SMALL_STATE(993)] = 42074, - [SMALL_STATE(994)] = 42093, - [SMALL_STATE(995)] = 42112, - [SMALL_STATE(996)] = 42131, - [SMALL_STATE(997)] = 42150, - [SMALL_STATE(998)] = 42169, - [SMALL_STATE(999)] = 42182, - [SMALL_STATE(1000)] = 42199, - [SMALL_STATE(1001)] = 42218, - [SMALL_STATE(1002)] = 42237, - [SMALL_STATE(1003)] = 42252, - [SMALL_STATE(1004)] = 42271, - [SMALL_STATE(1005)] = 42288, - [SMALL_STATE(1006)] = 42299, - [SMALL_STATE(1007)] = 42318, - [SMALL_STATE(1008)] = 42333, - [SMALL_STATE(1009)] = 42352, - [SMALL_STATE(1010)] = 42371, - [SMALL_STATE(1011)] = 42390, - [SMALL_STATE(1012)] = 42409, - [SMALL_STATE(1013)] = 42428, - [SMALL_STATE(1014)] = 42447, - [SMALL_STATE(1015)] = 42466, - [SMALL_STATE(1016)] = 42481, - [SMALL_STATE(1017)] = 42498, - [SMALL_STATE(1018)] = 42517, - [SMALL_STATE(1019)] = 42534, - [SMALL_STATE(1020)] = 42549, - [SMALL_STATE(1021)] = 42568, - [SMALL_STATE(1022)] = 42587, - [SMALL_STATE(1023)] = 42606, - [SMALL_STATE(1024)] = 42625, - [SMALL_STATE(1025)] = 42644, - [SMALL_STATE(1026)] = 42663, - [SMALL_STATE(1027)] = 42676, - [SMALL_STATE(1028)] = 42695, - [SMALL_STATE(1029)] = 42714, - [SMALL_STATE(1030)] = 42733, - [SMALL_STATE(1031)] = 42752, - [SMALL_STATE(1032)] = 42771, - [SMALL_STATE(1033)] = 42790, - [SMALL_STATE(1034)] = 42807, - [SMALL_STATE(1035)] = 42824, - [SMALL_STATE(1036)] = 42843, - [SMALL_STATE(1037)] = 42858, - [SMALL_STATE(1038)] = 42869, - [SMALL_STATE(1039)] = 42880, - [SMALL_STATE(1040)] = 42895, - [SMALL_STATE(1041)] = 42912, - [SMALL_STATE(1042)] = 42931, - [SMALL_STATE(1043)] = 42942, - [SMALL_STATE(1044)] = 42961, - [SMALL_STATE(1045)] = 42980, - [SMALL_STATE(1046)] = 42995, - [SMALL_STATE(1047)] = 43014, - [SMALL_STATE(1048)] = 43033, - [SMALL_STATE(1049)] = 43043, - [SMALL_STATE(1050)] = 43059, - [SMALL_STATE(1051)] = 43073, - [SMALL_STATE(1052)] = 43085, - [SMALL_STATE(1053)] = 43099, - [SMALL_STATE(1054)] = 43113, - [SMALL_STATE(1055)] = 43127, - [SMALL_STATE(1056)] = 43141, - [SMALL_STATE(1057)] = 43155, - [SMALL_STATE(1058)] = 43171, - [SMALL_STATE(1059)] = 43187, - [SMALL_STATE(1060)] = 43199, - [SMALL_STATE(1061)] = 43215, - [SMALL_STATE(1062)] = 43231, - [SMALL_STATE(1063)] = 43241, - [SMALL_STATE(1064)] = 43257, - [SMALL_STATE(1065)] = 43273, - [SMALL_STATE(1066)] = 43289, - [SMALL_STATE(1067)] = 43299, - [SMALL_STATE(1068)] = 43315, - [SMALL_STATE(1069)] = 43325, - [SMALL_STATE(1070)] = 43341, - [SMALL_STATE(1071)] = 43355, - [SMALL_STATE(1072)] = 43371, - [SMALL_STATE(1073)] = 43387, - [SMALL_STATE(1074)] = 43401, - [SMALL_STATE(1075)] = 43417, - [SMALL_STATE(1076)] = 43429, - [SMALL_STATE(1077)] = 43443, - [SMALL_STATE(1078)] = 43459, - [SMALL_STATE(1079)] = 43469, - [SMALL_STATE(1080)] = 43485, - [SMALL_STATE(1081)] = 43499, - [SMALL_STATE(1082)] = 43513, - [SMALL_STATE(1083)] = 43527, - [SMALL_STATE(1084)] = 43543, - [SMALL_STATE(1085)] = 43559, - [SMALL_STATE(1086)] = 43571, - [SMALL_STATE(1087)] = 43587, - [SMALL_STATE(1088)] = 43603, - [SMALL_STATE(1089)] = 43619, - [SMALL_STATE(1090)] = 43631, - [SMALL_STATE(1091)] = 43645, - [SMALL_STATE(1092)] = 43659, - [SMALL_STATE(1093)] = 43673, - [SMALL_STATE(1094)] = 43689, - [SMALL_STATE(1095)] = 43703, - [SMALL_STATE(1096)] = 43719, - [SMALL_STATE(1097)] = 43735, - [SMALL_STATE(1098)] = 43749, - [SMALL_STATE(1099)] = 43759, - [SMALL_STATE(1100)] = 43769, - [SMALL_STATE(1101)] = 43785, - [SMALL_STATE(1102)] = 43801, - [SMALL_STATE(1103)] = 43817, - [SMALL_STATE(1104)] = 43833, - [SMALL_STATE(1105)] = 43849, - [SMALL_STATE(1106)] = 43861, - [SMALL_STATE(1107)] = 43877, - [SMALL_STATE(1108)] = 43889, - [SMALL_STATE(1109)] = 43903, - [SMALL_STATE(1110)] = 43919, - [SMALL_STATE(1111)] = 43931, - [SMALL_STATE(1112)] = 43943, - [SMALL_STATE(1113)] = 43957, - [SMALL_STATE(1114)] = 43971, - [SMALL_STATE(1115)] = 43985, - [SMALL_STATE(1116)] = 43999, - [SMALL_STATE(1117)] = 44013, - [SMALL_STATE(1118)] = 44023, - [SMALL_STATE(1119)] = 44033, - [SMALL_STATE(1120)] = 44049, - [SMALL_STATE(1121)] = 44063, - [SMALL_STATE(1122)] = 44073, - [SMALL_STATE(1123)] = 44089, - [SMALL_STATE(1124)] = 44105, - [SMALL_STATE(1125)] = 44119, - [SMALL_STATE(1126)] = 44131, - [SMALL_STATE(1127)] = 44147, - [SMALL_STATE(1128)] = 44161, - [SMALL_STATE(1129)] = 44171, - [SMALL_STATE(1130)] = 44187, - [SMALL_STATE(1131)] = 44203, - [SMALL_STATE(1132)] = 44219, - [SMALL_STATE(1133)] = 44233, - [SMALL_STATE(1134)] = 44249, - [SMALL_STATE(1135)] = 44265, - [SMALL_STATE(1136)] = 44281, - [SMALL_STATE(1137)] = 44297, - [SMALL_STATE(1138)] = 44306, - [SMALL_STATE(1139)] = 44315, - [SMALL_STATE(1140)] = 44326, - [SMALL_STATE(1141)] = 44335, - [SMALL_STATE(1142)] = 44348, - [SMALL_STATE(1143)] = 44357, - [SMALL_STATE(1144)] = 44370, - [SMALL_STATE(1145)] = 44383, - [SMALL_STATE(1146)] = 44396, - [SMALL_STATE(1147)] = 44405, - [SMALL_STATE(1148)] = 44418, - [SMALL_STATE(1149)] = 44431, - [SMALL_STATE(1150)] = 44444, - [SMALL_STATE(1151)] = 44457, - [SMALL_STATE(1152)] = 44470, - [SMALL_STATE(1153)] = 44479, - [SMALL_STATE(1154)] = 44492, - [SMALL_STATE(1155)] = 44505, - [SMALL_STATE(1156)] = 44518, - [SMALL_STATE(1157)] = 44531, - [SMALL_STATE(1158)] = 44544, - [SMALL_STATE(1159)] = 44553, - [SMALL_STATE(1160)] = 44566, - [SMALL_STATE(1161)] = 44579, - [SMALL_STATE(1162)] = 44592, - [SMALL_STATE(1163)] = 44605, - [SMALL_STATE(1164)] = 44618, - [SMALL_STATE(1165)] = 44631, - [SMALL_STATE(1166)] = 44644, - [SMALL_STATE(1167)] = 44657, - [SMALL_STATE(1168)] = 44670, - [SMALL_STATE(1169)] = 44683, - [SMALL_STATE(1170)] = 44696, - [SMALL_STATE(1171)] = 44709, - [SMALL_STATE(1172)] = 44718, - [SMALL_STATE(1173)] = 44731, - [SMALL_STATE(1174)] = 44744, - [SMALL_STATE(1175)] = 44755, - [SMALL_STATE(1176)] = 44768, - [SMALL_STATE(1177)] = 44777, - [SMALL_STATE(1178)] = 44786, - [SMALL_STATE(1179)] = 44799, - [SMALL_STATE(1180)] = 44808, - [SMALL_STATE(1181)] = 44821, - [SMALL_STATE(1182)] = 44834, - [SMALL_STATE(1183)] = 44847, - [SMALL_STATE(1184)] = 44856, - [SMALL_STATE(1185)] = 44865, - [SMALL_STATE(1186)] = 44874, - [SMALL_STATE(1187)] = 44887, - [SMALL_STATE(1188)] = 44896, - [SMALL_STATE(1189)] = 44905, - [SMALL_STATE(1190)] = 44914, - [SMALL_STATE(1191)] = 44927, - [SMALL_STATE(1192)] = 44940, - [SMALL_STATE(1193)] = 44953, - [SMALL_STATE(1194)] = 44966, - [SMALL_STATE(1195)] = 44979, - [SMALL_STATE(1196)] = 44990, - [SMALL_STATE(1197)] = 45003, - [SMALL_STATE(1198)] = 45012, - [SMALL_STATE(1199)] = 45021, - [SMALL_STATE(1200)] = 45034, - [SMALL_STATE(1201)] = 45043, - [SMALL_STATE(1202)] = 45052, - [SMALL_STATE(1203)] = 45065, - [SMALL_STATE(1204)] = 45074, - [SMALL_STATE(1205)] = 45087, - [SMALL_STATE(1206)] = 45100, - [SMALL_STATE(1207)] = 45113, - [SMALL_STATE(1208)] = 45126, - [SMALL_STATE(1209)] = 45139, - [SMALL_STATE(1210)] = 45148, - [SMALL_STATE(1211)] = 45159, - [SMALL_STATE(1212)] = 45172, - [SMALL_STATE(1213)] = 45185, - [SMALL_STATE(1214)] = 45198, - [SMALL_STATE(1215)] = 45211, - [SMALL_STATE(1216)] = 45224, - [SMALL_STATE(1217)] = 45237, - [SMALL_STATE(1218)] = 45250, - [SMALL_STATE(1219)] = 45263, - [SMALL_STATE(1220)] = 45276, - [SMALL_STATE(1221)] = 45287, - [SMALL_STATE(1222)] = 45300, - [SMALL_STATE(1223)] = 45309, - [SMALL_STATE(1224)] = 45322, - [SMALL_STATE(1225)] = 45335, - [SMALL_STATE(1226)] = 45348, - [SMALL_STATE(1227)] = 45359, - [SMALL_STATE(1228)] = 45368, - [SMALL_STATE(1229)] = 45377, - [SMALL_STATE(1230)] = 45386, - [SMALL_STATE(1231)] = 45395, - [SMALL_STATE(1232)] = 45408, - [SMALL_STATE(1233)] = 45421, - [SMALL_STATE(1234)] = 45432, - [SMALL_STATE(1235)] = 45445, - [SMALL_STATE(1236)] = 45454, - [SMALL_STATE(1237)] = 45467, - [SMALL_STATE(1238)] = 45480, - [SMALL_STATE(1239)] = 45489, - [SMALL_STATE(1240)] = 45502, - [SMALL_STATE(1241)] = 45515, - [SMALL_STATE(1242)] = 45528, - [SMALL_STATE(1243)] = 45541, - [SMALL_STATE(1244)] = 45554, - [SMALL_STATE(1245)] = 45567, - [SMALL_STATE(1246)] = 45580, - [SMALL_STATE(1247)] = 45593, - [SMALL_STATE(1248)] = 45606, - [SMALL_STATE(1249)] = 45619, - [SMALL_STATE(1250)] = 45632, - [SMALL_STATE(1251)] = 45641, - [SMALL_STATE(1252)] = 45654, - [SMALL_STATE(1253)] = 45667, - [SMALL_STATE(1254)] = 45680, - [SMALL_STATE(1255)] = 45693, - [SMALL_STATE(1256)] = 45706, - [SMALL_STATE(1257)] = 45719, - [SMALL_STATE(1258)] = 45732, - [SMALL_STATE(1259)] = 45745, - [SMALL_STATE(1260)] = 45754, - [SMALL_STATE(1261)] = 45767, - [SMALL_STATE(1262)] = 45780, - [SMALL_STATE(1263)] = 45789, - [SMALL_STATE(1264)] = 45798, - [SMALL_STATE(1265)] = 45807, - [SMALL_STATE(1266)] = 45820, - [SMALL_STATE(1267)] = 45833, - [SMALL_STATE(1268)] = 45846, - [SMALL_STATE(1269)] = 45857, - [SMALL_STATE(1270)] = 45870, - [SMALL_STATE(1271)] = 45883, - [SMALL_STATE(1272)] = 45896, - [SMALL_STATE(1273)] = 45909, - [SMALL_STATE(1274)] = 45918, - [SMALL_STATE(1275)] = 45931, - [SMALL_STATE(1276)] = 45944, - [SMALL_STATE(1277)] = 45957, - [SMALL_STATE(1278)] = 45970, - [SMALL_STATE(1279)] = 45979, - [SMALL_STATE(1280)] = 45988, - [SMALL_STATE(1281)] = 46001, - [SMALL_STATE(1282)] = 46010, - [SMALL_STATE(1283)] = 46019, - [SMALL_STATE(1284)] = 46032, - [SMALL_STATE(1285)] = 46043, - [SMALL_STATE(1286)] = 46052, - [SMALL_STATE(1287)] = 46065, - [SMALL_STATE(1288)] = 46078, - [SMALL_STATE(1289)] = 46091, - [SMALL_STATE(1290)] = 46104, - [SMALL_STATE(1291)] = 46117, - [SMALL_STATE(1292)] = 46130, - [SMALL_STATE(1293)] = 46139, - [SMALL_STATE(1294)] = 46152, - [SMALL_STATE(1295)] = 46161, - [SMALL_STATE(1296)] = 46174, - [SMALL_STATE(1297)] = 46187, - [SMALL_STATE(1298)] = 46200, - [SMALL_STATE(1299)] = 46213, - [SMALL_STATE(1300)] = 46224, - [SMALL_STATE(1301)] = 46237, - [SMALL_STATE(1302)] = 46250, - [SMALL_STATE(1303)] = 46263, - [SMALL_STATE(1304)] = 46276, - [SMALL_STATE(1305)] = 46289, - [SMALL_STATE(1306)] = 46298, - [SMALL_STATE(1307)] = 46311, - [SMALL_STATE(1308)] = 46324, - [SMALL_STATE(1309)] = 46337, - [SMALL_STATE(1310)] = 46346, - [SMALL_STATE(1311)] = 46355, - [SMALL_STATE(1312)] = 46364, - [SMALL_STATE(1313)] = 46373, - [SMALL_STATE(1314)] = 46382, - [SMALL_STATE(1315)] = 46395, - [SMALL_STATE(1316)] = 46404, - [SMALL_STATE(1317)] = 46417, - [SMALL_STATE(1318)] = 46426, - [SMALL_STATE(1319)] = 46435, - [SMALL_STATE(1320)] = 46448, - [SMALL_STATE(1321)] = 46461, - [SMALL_STATE(1322)] = 46470, - [SMALL_STATE(1323)] = 46483, - [SMALL_STATE(1324)] = 46496, - [SMALL_STATE(1325)] = 46507, - [SMALL_STATE(1326)] = 46520, - [SMALL_STATE(1327)] = 46533, - [SMALL_STATE(1328)] = 46546, - [SMALL_STATE(1329)] = 46555, - [SMALL_STATE(1330)] = 46564, - [SMALL_STATE(1331)] = 46577, - [SMALL_STATE(1332)] = 46586, - [SMALL_STATE(1333)] = 46599, - [SMALL_STATE(1334)] = 46612, - [SMALL_STATE(1335)] = 46620, - [SMALL_STATE(1336)] = 46628, - [SMALL_STATE(1337)] = 46636, - [SMALL_STATE(1338)] = 46644, - [SMALL_STATE(1339)] = 46652, - [SMALL_STATE(1340)] = 46660, - [SMALL_STATE(1341)] = 46668, - [SMALL_STATE(1342)] = 46676, - [SMALL_STATE(1343)] = 46686, - [SMALL_STATE(1344)] = 46694, - [SMALL_STATE(1345)] = 46704, - [SMALL_STATE(1346)] = 46712, - [SMALL_STATE(1347)] = 46720, - [SMALL_STATE(1348)] = 46730, - [SMALL_STATE(1349)] = 46738, - [SMALL_STATE(1350)] = 46746, - [SMALL_STATE(1351)] = 46756, - [SMALL_STATE(1352)] = 46766, - [SMALL_STATE(1353)] = 46776, - [SMALL_STATE(1354)] = 46786, - [SMALL_STATE(1355)] = 46796, - [SMALL_STATE(1356)] = 46806, - [SMALL_STATE(1357)] = 46816, - [SMALL_STATE(1358)] = 46826, - [SMALL_STATE(1359)] = 46836, - [SMALL_STATE(1360)] = 46846, - [SMALL_STATE(1361)] = 46856, - [SMALL_STATE(1362)] = 46866, - [SMALL_STATE(1363)] = 46874, - [SMALL_STATE(1364)] = 46882, - [SMALL_STATE(1365)] = 46890, - [SMALL_STATE(1366)] = 46900, - [SMALL_STATE(1367)] = 46908, - [SMALL_STATE(1368)] = 46916, - [SMALL_STATE(1369)] = 46924, - [SMALL_STATE(1370)] = 46932, - [SMALL_STATE(1371)] = 46940, - [SMALL_STATE(1372)] = 46950, - [SMALL_STATE(1373)] = 46958, - [SMALL_STATE(1374)] = 46966, - [SMALL_STATE(1375)] = 46974, - [SMALL_STATE(1376)] = 46984, - [SMALL_STATE(1377)] = 46992, - [SMALL_STATE(1378)] = 47002, - [SMALL_STATE(1379)] = 47012, - [SMALL_STATE(1380)] = 47022, - [SMALL_STATE(1381)] = 47032, - [SMALL_STATE(1382)] = 47040, - [SMALL_STATE(1383)] = 47050, - [SMALL_STATE(1384)] = 47058, - [SMALL_STATE(1385)] = 47068, - [SMALL_STATE(1386)] = 47076, - [SMALL_STATE(1387)] = 47084, - [SMALL_STATE(1388)] = 47092, - [SMALL_STATE(1389)] = 47102, - [SMALL_STATE(1390)] = 47112, - [SMALL_STATE(1391)] = 47122, - [SMALL_STATE(1392)] = 47130, - [SMALL_STATE(1393)] = 47140, - [SMALL_STATE(1394)] = 47148, - [SMALL_STATE(1395)] = 47156, - [SMALL_STATE(1396)] = 47164, - [SMALL_STATE(1397)] = 47172, - [SMALL_STATE(1398)] = 47182, - [SMALL_STATE(1399)] = 47190, - [SMALL_STATE(1400)] = 47198, - [SMALL_STATE(1401)] = 47208, - [SMALL_STATE(1402)] = 47216, - [SMALL_STATE(1403)] = 47224, - [SMALL_STATE(1404)] = 47232, - [SMALL_STATE(1405)] = 47240, - [SMALL_STATE(1406)] = 47248, - [SMALL_STATE(1407)] = 47256, - [SMALL_STATE(1408)] = 47264, - [SMALL_STATE(1409)] = 47272, - [SMALL_STATE(1410)] = 47282, - [SMALL_STATE(1411)] = 47290, - [SMALL_STATE(1412)] = 47300, - [SMALL_STATE(1413)] = 47310, - [SMALL_STATE(1414)] = 47320, - [SMALL_STATE(1415)] = 47330, - [SMALL_STATE(1416)] = 47338, - [SMALL_STATE(1417)] = 47348, - [SMALL_STATE(1418)] = 47356, - [SMALL_STATE(1419)] = 47366, - [SMALL_STATE(1420)] = 47376, - [SMALL_STATE(1421)] = 47386, - [SMALL_STATE(1422)] = 47394, - [SMALL_STATE(1423)] = 47404, - [SMALL_STATE(1424)] = 47414, - [SMALL_STATE(1425)] = 47424, - [SMALL_STATE(1426)] = 47432, - [SMALL_STATE(1427)] = 47440, - [SMALL_STATE(1428)] = 47448, - [SMALL_STATE(1429)] = 47458, - [SMALL_STATE(1430)] = 47468, - [SMALL_STATE(1431)] = 47478, - [SMALL_STATE(1432)] = 47488, - [SMALL_STATE(1433)] = 47496, - [SMALL_STATE(1434)] = 47506, - [SMALL_STATE(1435)] = 47514, - [SMALL_STATE(1436)] = 47524, - [SMALL_STATE(1437)] = 47532, - [SMALL_STATE(1438)] = 47540, - [SMALL_STATE(1439)] = 47548, - [SMALL_STATE(1440)] = 47558, - [SMALL_STATE(1441)] = 47568, - [SMALL_STATE(1442)] = 47576, - [SMALL_STATE(1443)] = 47586, - [SMALL_STATE(1444)] = 47596, - [SMALL_STATE(1445)] = 47604, - [SMALL_STATE(1446)] = 47614, - [SMALL_STATE(1447)] = 47624, - [SMALL_STATE(1448)] = 47634, - [SMALL_STATE(1449)] = 47642, - [SMALL_STATE(1450)] = 47652, - [SMALL_STATE(1451)] = 47660, - [SMALL_STATE(1452)] = 47670, - [SMALL_STATE(1453)] = 47678, - [SMALL_STATE(1454)] = 47688, - [SMALL_STATE(1455)] = 47696, - [SMALL_STATE(1456)] = 47704, - [SMALL_STATE(1457)] = 47712, - [SMALL_STATE(1458)] = 47720, - [SMALL_STATE(1459)] = 47728, - [SMALL_STATE(1460)] = 47738, - [SMALL_STATE(1461)] = 47748, - [SMALL_STATE(1462)] = 47758, - [SMALL_STATE(1463)] = 47768, - [SMALL_STATE(1464)] = 47776, - [SMALL_STATE(1465)] = 47786, - [SMALL_STATE(1466)] = 47796, - [SMALL_STATE(1467)] = 47804, - [SMALL_STATE(1468)] = 47812, - [SMALL_STATE(1469)] = 47820, - [SMALL_STATE(1470)] = 47830, - [SMALL_STATE(1471)] = 47840, - [SMALL_STATE(1472)] = 47850, - [SMALL_STATE(1473)] = 47858, - [SMALL_STATE(1474)] = 47868, - [SMALL_STATE(1475)] = 47878, - [SMALL_STATE(1476)] = 47888, - [SMALL_STATE(1477)] = 47896, - [SMALL_STATE(1478)] = 47906, - [SMALL_STATE(1479)] = 47916, - [SMALL_STATE(1480)] = 47926, - [SMALL_STATE(1481)] = 47934, - [SMALL_STATE(1482)] = 47942, - [SMALL_STATE(1483)] = 47952, - [SMALL_STATE(1484)] = 47959, - [SMALL_STATE(1485)] = 47966, - [SMALL_STATE(1486)] = 47973, - [SMALL_STATE(1487)] = 47980, - [SMALL_STATE(1488)] = 47987, - [SMALL_STATE(1489)] = 47994, - [SMALL_STATE(1490)] = 48001, - [SMALL_STATE(1491)] = 48008, - [SMALL_STATE(1492)] = 48015, - [SMALL_STATE(1493)] = 48022, - [SMALL_STATE(1494)] = 48029, - [SMALL_STATE(1495)] = 48036, - [SMALL_STATE(1496)] = 48043, - [SMALL_STATE(1497)] = 48050, - [SMALL_STATE(1498)] = 48057, - [SMALL_STATE(1499)] = 48064, - [SMALL_STATE(1500)] = 48071, - [SMALL_STATE(1501)] = 48078, - [SMALL_STATE(1502)] = 48085, - [SMALL_STATE(1503)] = 48092, - [SMALL_STATE(1504)] = 48099, - [SMALL_STATE(1505)] = 48106, - [SMALL_STATE(1506)] = 48113, - [SMALL_STATE(1507)] = 48120, - [SMALL_STATE(1508)] = 48127, - [SMALL_STATE(1509)] = 48134, - [SMALL_STATE(1510)] = 48141, - [SMALL_STATE(1511)] = 48148, - [SMALL_STATE(1512)] = 48155, - [SMALL_STATE(1513)] = 48162, - [SMALL_STATE(1514)] = 48169, - [SMALL_STATE(1515)] = 48176, - [SMALL_STATE(1516)] = 48183, - [SMALL_STATE(1517)] = 48190, - [SMALL_STATE(1518)] = 48197, - [SMALL_STATE(1519)] = 48204, - [SMALL_STATE(1520)] = 48211, - [SMALL_STATE(1521)] = 48218, - [SMALL_STATE(1522)] = 48225, - [SMALL_STATE(1523)] = 48232, - [SMALL_STATE(1524)] = 48239, - [SMALL_STATE(1525)] = 48246, - [SMALL_STATE(1526)] = 48253, - [SMALL_STATE(1527)] = 48260, - [SMALL_STATE(1528)] = 48267, - [SMALL_STATE(1529)] = 48274, - [SMALL_STATE(1530)] = 48281, - [SMALL_STATE(1531)] = 48288, - [SMALL_STATE(1532)] = 48295, - [SMALL_STATE(1533)] = 48302, - [SMALL_STATE(1534)] = 48309, - [SMALL_STATE(1535)] = 48316, - [SMALL_STATE(1536)] = 48323, - [SMALL_STATE(1537)] = 48330, - [SMALL_STATE(1538)] = 48337, - [SMALL_STATE(1539)] = 48344, - [SMALL_STATE(1540)] = 48351, - [SMALL_STATE(1541)] = 48358, - [SMALL_STATE(1542)] = 48365, - [SMALL_STATE(1543)] = 48372, - [SMALL_STATE(1544)] = 48379, - [SMALL_STATE(1545)] = 48386, - [SMALL_STATE(1546)] = 48393, - [SMALL_STATE(1547)] = 48400, - [SMALL_STATE(1548)] = 48407, - [SMALL_STATE(1549)] = 48414, - [SMALL_STATE(1550)] = 48421, - [SMALL_STATE(1551)] = 48428, - [SMALL_STATE(1552)] = 48435, - [SMALL_STATE(1553)] = 48442, - [SMALL_STATE(1554)] = 48449, - [SMALL_STATE(1555)] = 48456, - [SMALL_STATE(1556)] = 48463, - [SMALL_STATE(1557)] = 48470, - [SMALL_STATE(1558)] = 48477, - [SMALL_STATE(1559)] = 48484, - [SMALL_STATE(1560)] = 48491, - [SMALL_STATE(1561)] = 48498, - [SMALL_STATE(1562)] = 48505, - [SMALL_STATE(1563)] = 48512, - [SMALL_STATE(1564)] = 48519, - [SMALL_STATE(1565)] = 48526, - [SMALL_STATE(1566)] = 48533, - [SMALL_STATE(1567)] = 48540, - [SMALL_STATE(1568)] = 48547, - [SMALL_STATE(1569)] = 48554, - [SMALL_STATE(1570)] = 48561, - [SMALL_STATE(1571)] = 48568, - [SMALL_STATE(1572)] = 48575, - [SMALL_STATE(1573)] = 48582, - [SMALL_STATE(1574)] = 48589, - [SMALL_STATE(1575)] = 48596, - [SMALL_STATE(1576)] = 48603, - [SMALL_STATE(1577)] = 48610, - [SMALL_STATE(1578)] = 48617, - [SMALL_STATE(1579)] = 48624, - [SMALL_STATE(1580)] = 48631, - [SMALL_STATE(1581)] = 48638, - [SMALL_STATE(1582)] = 48645, - [SMALL_STATE(1583)] = 48652, - [SMALL_STATE(1584)] = 48659, - [SMALL_STATE(1585)] = 48666, - [SMALL_STATE(1586)] = 48673, - [SMALL_STATE(1587)] = 48680, - [SMALL_STATE(1588)] = 48687, - [SMALL_STATE(1589)] = 48694, - [SMALL_STATE(1590)] = 48701, - [SMALL_STATE(1591)] = 48708, - [SMALL_STATE(1592)] = 48715, - [SMALL_STATE(1593)] = 48722, - [SMALL_STATE(1594)] = 48729, - [SMALL_STATE(1595)] = 48736, - [SMALL_STATE(1596)] = 48743, - [SMALL_STATE(1597)] = 48750, - [SMALL_STATE(1598)] = 48757, - [SMALL_STATE(1599)] = 48764, - [SMALL_STATE(1600)] = 48771, - [SMALL_STATE(1601)] = 48778, - [SMALL_STATE(1602)] = 48785, - [SMALL_STATE(1603)] = 48792, - [SMALL_STATE(1604)] = 48799, - [SMALL_STATE(1605)] = 48806, - [SMALL_STATE(1606)] = 48813, - [SMALL_STATE(1607)] = 48820, - [SMALL_STATE(1608)] = 48827, - [SMALL_STATE(1609)] = 48834, - [SMALL_STATE(1610)] = 48841, - [SMALL_STATE(1611)] = 48848, - [SMALL_STATE(1612)] = 48855, - [SMALL_STATE(1613)] = 48862, - [SMALL_STATE(1614)] = 48869, - [SMALL_STATE(1615)] = 48876, - [SMALL_STATE(1616)] = 48883, - [SMALL_STATE(1617)] = 48890, - [SMALL_STATE(1618)] = 48897, - [SMALL_STATE(1619)] = 48904, - [SMALL_STATE(1620)] = 48911, - [SMALL_STATE(1621)] = 48918, - [SMALL_STATE(1622)] = 48925, - [SMALL_STATE(1623)] = 48932, - [SMALL_STATE(1624)] = 48939, - [SMALL_STATE(1625)] = 48946, - [SMALL_STATE(1626)] = 48953, - [SMALL_STATE(1627)] = 48960, - [SMALL_STATE(1628)] = 48967, - [SMALL_STATE(1629)] = 48974, - [SMALL_STATE(1630)] = 48981, - [SMALL_STATE(1631)] = 48988, - [SMALL_STATE(1632)] = 48995, - [SMALL_STATE(1633)] = 49002, - [SMALL_STATE(1634)] = 49009, - [SMALL_STATE(1635)] = 49016, - [SMALL_STATE(1636)] = 49023, - [SMALL_STATE(1637)] = 49030, - [SMALL_STATE(1638)] = 49037, - [SMALL_STATE(1639)] = 49044, - [SMALL_STATE(1640)] = 49051, - [SMALL_STATE(1641)] = 49058, - [SMALL_STATE(1642)] = 49065, - [SMALL_STATE(1643)] = 49072, - [SMALL_STATE(1644)] = 49079, - [SMALL_STATE(1645)] = 49086, - [SMALL_STATE(1646)] = 49093, - [SMALL_STATE(1647)] = 49100, - [SMALL_STATE(1648)] = 49107, - [SMALL_STATE(1649)] = 49114, - [SMALL_STATE(1650)] = 49121, - [SMALL_STATE(1651)] = 49128, - [SMALL_STATE(1652)] = 49135, - [SMALL_STATE(1653)] = 49142, - [SMALL_STATE(1654)] = 49149, - [SMALL_STATE(1655)] = 49156, - [SMALL_STATE(1656)] = 49163, - [SMALL_STATE(1657)] = 49170, - [SMALL_STATE(1658)] = 49177, - [SMALL_STATE(1659)] = 49184, - [SMALL_STATE(1660)] = 49191, - [SMALL_STATE(1661)] = 49198, - [SMALL_STATE(1662)] = 49205, - [SMALL_STATE(1663)] = 49212, - [SMALL_STATE(1664)] = 49219, - [SMALL_STATE(1665)] = 49226, - [SMALL_STATE(1666)] = 49233, - [SMALL_STATE(1667)] = 49240, - [SMALL_STATE(1668)] = 49247, - [SMALL_STATE(1669)] = 49254, - [SMALL_STATE(1670)] = 49261, - [SMALL_STATE(1671)] = 49268, - [SMALL_STATE(1672)] = 49275, - [SMALL_STATE(1673)] = 49282, - [SMALL_STATE(1674)] = 49289, - [SMALL_STATE(1675)] = 49296, - [SMALL_STATE(1676)] = 49303, - [SMALL_STATE(1677)] = 49310, - [SMALL_STATE(1678)] = 49317, - [SMALL_STATE(1679)] = 49324, - [SMALL_STATE(1680)] = 49331, - [SMALL_STATE(1681)] = 49338, - [SMALL_STATE(1682)] = 49345, - [SMALL_STATE(1683)] = 49352, - [SMALL_STATE(1684)] = 49359, - [SMALL_STATE(1685)] = 49366, - [SMALL_STATE(1686)] = 49373, - [SMALL_STATE(1687)] = 49380, - [SMALL_STATE(1688)] = 49387, - [SMALL_STATE(1689)] = 49394, - [SMALL_STATE(1690)] = 49401, - [SMALL_STATE(1691)] = 49408, - [SMALL_STATE(1692)] = 49415, - [SMALL_STATE(1693)] = 49422, - [SMALL_STATE(1694)] = 49429, - [SMALL_STATE(1695)] = 49436, - [SMALL_STATE(1696)] = 49443, - [SMALL_STATE(1697)] = 49450, - [SMALL_STATE(1698)] = 49457, - [SMALL_STATE(1699)] = 49464, - [SMALL_STATE(1700)] = 49471, - [SMALL_STATE(1701)] = 49478, - [SMALL_STATE(1702)] = 49485, - [SMALL_STATE(1703)] = 49492, - [SMALL_STATE(1704)] = 49499, - [SMALL_STATE(1705)] = 49506, - [SMALL_STATE(1706)] = 49513, - [SMALL_STATE(1707)] = 49520, - [SMALL_STATE(1708)] = 49527, - [SMALL_STATE(1709)] = 49534, - [SMALL_STATE(1710)] = 49541, - [SMALL_STATE(1711)] = 49548, - [SMALL_STATE(1712)] = 49555, - [SMALL_STATE(1713)] = 49562, - [SMALL_STATE(1714)] = 49569, - [SMALL_STATE(1715)] = 49576, - [SMALL_STATE(1716)] = 49583, - [SMALL_STATE(1717)] = 49590, - [SMALL_STATE(1718)] = 49597, - [SMALL_STATE(1719)] = 49604, - [SMALL_STATE(1720)] = 49611, - [SMALL_STATE(1721)] = 49618, - [SMALL_STATE(1722)] = 49625, - [SMALL_STATE(1723)] = 49632, - [SMALL_STATE(1724)] = 49639, - [SMALL_STATE(1725)] = 49646, - [SMALL_STATE(1726)] = 49653, - [SMALL_STATE(1727)] = 49660, - [SMALL_STATE(1728)] = 49667, - [SMALL_STATE(1729)] = 49674, - [SMALL_STATE(1730)] = 49681, - [SMALL_STATE(1731)] = 49688, - [SMALL_STATE(1732)] = 49695, - [SMALL_STATE(1733)] = 49702, - [SMALL_STATE(1734)] = 49709, - [SMALL_STATE(1735)] = 49716, - [SMALL_STATE(1736)] = 49723, - [SMALL_STATE(1737)] = 49730, - [SMALL_STATE(1738)] = 49737, - [SMALL_STATE(1739)] = 49744, - [SMALL_STATE(1740)] = 49751, - [SMALL_STATE(1741)] = 49758, - [SMALL_STATE(1742)] = 49765, - [SMALL_STATE(1743)] = 49772, - [SMALL_STATE(1744)] = 49779, - [SMALL_STATE(1745)] = 49786, - [SMALL_STATE(1746)] = 49793, - [SMALL_STATE(1747)] = 49800, - [SMALL_STATE(1748)] = 49807, - [SMALL_STATE(1749)] = 49814, - [SMALL_STATE(1750)] = 49821, - [SMALL_STATE(1751)] = 49828, - [SMALL_STATE(1752)] = 49835, - [SMALL_STATE(1753)] = 49842, - [SMALL_STATE(1754)] = 49849, - [SMALL_STATE(1755)] = 49856, - [SMALL_STATE(1756)] = 49863, - [SMALL_STATE(1757)] = 49870, - [SMALL_STATE(1758)] = 49877, - [SMALL_STATE(1759)] = 49884, - [SMALL_STATE(1760)] = 49891, - [SMALL_STATE(1761)] = 49898, - [SMALL_STATE(1762)] = 49905, - [SMALL_STATE(1763)] = 49912, - [SMALL_STATE(1764)] = 49919, - [SMALL_STATE(1765)] = 49926, - [SMALL_STATE(1766)] = 49933, - [SMALL_STATE(1767)] = 49940, - [SMALL_STATE(1768)] = 49947, - [SMALL_STATE(1769)] = 49954, - [SMALL_STATE(1770)] = 49961, - [SMALL_STATE(1771)] = 49968, - [SMALL_STATE(1772)] = 49975, - [SMALL_STATE(1773)] = 49982, - [SMALL_STATE(1774)] = 49989, - [SMALL_STATE(1775)] = 49996, - [SMALL_STATE(1776)] = 50003, - [SMALL_STATE(1777)] = 50010, - [SMALL_STATE(1778)] = 50017, - [SMALL_STATE(1779)] = 50024, - [SMALL_STATE(1780)] = 50031, - [SMALL_STATE(1781)] = 50038, - [SMALL_STATE(1782)] = 50045, - [SMALL_STATE(1783)] = 50052, - [SMALL_STATE(1784)] = 50059, - [SMALL_STATE(1785)] = 50066, - [SMALL_STATE(1786)] = 50073, - [SMALL_STATE(1787)] = 50080, - [SMALL_STATE(1788)] = 50087, - [SMALL_STATE(1789)] = 50094, - [SMALL_STATE(1790)] = 50101, - [SMALL_STATE(1791)] = 50108, - [SMALL_STATE(1792)] = 50115, - [SMALL_STATE(1793)] = 50122, - [SMALL_STATE(1794)] = 50129, - [SMALL_STATE(1795)] = 50136, - [SMALL_STATE(1796)] = 50143, - [SMALL_STATE(1797)] = 50150, - [SMALL_STATE(1798)] = 50157, - [SMALL_STATE(1799)] = 50164, - [SMALL_STATE(1800)] = 50171, - [SMALL_STATE(1801)] = 50178, - [SMALL_STATE(1802)] = 50185, - [SMALL_STATE(1803)] = 50192, - [SMALL_STATE(1804)] = 50199, - [SMALL_STATE(1805)] = 50206, - [SMALL_STATE(1806)] = 50213, - [SMALL_STATE(1807)] = 50220, - [SMALL_STATE(1808)] = 50227, - [SMALL_STATE(1809)] = 50234, - [SMALL_STATE(1810)] = 50241, - [SMALL_STATE(1811)] = 50248, - [SMALL_STATE(1812)] = 50255, - [SMALL_STATE(1813)] = 50262, - [SMALL_STATE(1814)] = 50269, - [SMALL_STATE(1815)] = 50276, - [SMALL_STATE(1816)] = 50283, - [SMALL_STATE(1817)] = 50290, - [SMALL_STATE(1818)] = 50297, - [SMALL_STATE(1819)] = 50304, - [SMALL_STATE(1820)] = 50311, - [SMALL_STATE(1821)] = 50318, - [SMALL_STATE(1822)] = 50325, - [SMALL_STATE(1823)] = 50332, - [SMALL_STATE(1824)] = 50339, - [SMALL_STATE(1825)] = 50346, - [SMALL_STATE(1826)] = 50353, - [SMALL_STATE(1827)] = 50360, - [SMALL_STATE(1828)] = 50367, - [SMALL_STATE(1829)] = 50374, - [SMALL_STATE(1830)] = 50381, - [SMALL_STATE(1831)] = 50388, - [SMALL_STATE(1832)] = 50395, - [SMALL_STATE(1833)] = 50402, - [SMALL_STATE(1834)] = 50409, - [SMALL_STATE(1835)] = 50416, - [SMALL_STATE(1836)] = 50423, - [SMALL_STATE(1837)] = 50430, - [SMALL_STATE(1838)] = 50437, - [SMALL_STATE(1839)] = 50444, - [SMALL_STATE(1840)] = 50451, - [SMALL_STATE(1841)] = 50458, - [SMALL_STATE(1842)] = 50465, - [SMALL_STATE(1843)] = 50472, - [SMALL_STATE(1844)] = 50479, - [SMALL_STATE(1845)] = 50486, - [SMALL_STATE(1846)] = 50493, - [SMALL_STATE(1847)] = 50500, - [SMALL_STATE(1848)] = 50507, - [SMALL_STATE(1849)] = 50514, - [SMALL_STATE(1850)] = 50521, - [SMALL_STATE(1851)] = 50528, - [SMALL_STATE(1852)] = 50535, - [SMALL_STATE(1853)] = 50542, - [SMALL_STATE(1854)] = 50549, - [SMALL_STATE(1855)] = 50556, - [SMALL_STATE(1856)] = 50563, - [SMALL_STATE(1857)] = 50570, - [SMALL_STATE(1858)] = 50577, - [SMALL_STATE(1859)] = 50584, - [SMALL_STATE(1860)] = 50591, - [SMALL_STATE(1861)] = 50598, - [SMALL_STATE(1862)] = 50605, - [SMALL_STATE(1863)] = 50612, - [SMALL_STATE(1864)] = 50619, - [SMALL_STATE(1865)] = 50626, - [SMALL_STATE(1866)] = 50633, - [SMALL_STATE(1867)] = 50640, - [SMALL_STATE(1868)] = 50647, - [SMALL_STATE(1869)] = 50654, - [SMALL_STATE(1870)] = 50661, - [SMALL_STATE(1871)] = 50668, - [SMALL_STATE(1872)] = 50675, - [SMALL_STATE(1873)] = 50682, - [SMALL_STATE(1874)] = 50689, - [SMALL_STATE(1875)] = 50696, - [SMALL_STATE(1876)] = 50703, - [SMALL_STATE(1877)] = 50710, - [SMALL_STATE(1878)] = 50717, - [SMALL_STATE(1879)] = 50724, - [SMALL_STATE(1880)] = 50731, - [SMALL_STATE(1881)] = 50738, - [SMALL_STATE(1882)] = 50745, - [SMALL_STATE(1883)] = 50752, - [SMALL_STATE(1884)] = 50759, - [SMALL_STATE(1885)] = 50766, - [SMALL_STATE(1886)] = 50773, - [SMALL_STATE(1887)] = 50780, - [SMALL_STATE(1888)] = 50787, - [SMALL_STATE(1889)] = 50794, - [SMALL_STATE(1890)] = 50801, - [SMALL_STATE(1891)] = 50808, - [SMALL_STATE(1892)] = 50815, - [SMALL_STATE(1893)] = 50822, - [SMALL_STATE(1894)] = 50829, - [SMALL_STATE(1895)] = 50836, - [SMALL_STATE(1896)] = 50843, - [SMALL_STATE(1897)] = 50850, - [SMALL_STATE(1898)] = 50857, - [SMALL_STATE(1899)] = 50864, - [SMALL_STATE(1900)] = 50871, - [SMALL_STATE(1901)] = 50878, - [SMALL_STATE(1902)] = 50885, - [SMALL_STATE(1903)] = 50892, - [SMALL_STATE(1904)] = 50899, - [SMALL_STATE(1905)] = 50906, - [SMALL_STATE(1906)] = 50913, - [SMALL_STATE(1907)] = 50920, - [SMALL_STATE(1908)] = 50927, - [SMALL_STATE(1909)] = 50934, - [SMALL_STATE(1910)] = 50941, - [SMALL_STATE(1911)] = 50948, - [SMALL_STATE(1912)] = 50955, - [SMALL_STATE(1913)] = 50962, - [SMALL_STATE(1914)] = 50969, - [SMALL_STATE(1915)] = 50976, - [SMALL_STATE(1916)] = 50983, - [SMALL_STATE(1917)] = 50990, - [SMALL_STATE(1918)] = 50997, - [SMALL_STATE(1919)] = 51004, - [SMALL_STATE(1920)] = 51011, - [SMALL_STATE(1921)] = 51018, - [SMALL_STATE(1922)] = 51025, - [SMALL_STATE(1923)] = 51032, - [SMALL_STATE(1924)] = 51039, - [SMALL_STATE(1925)] = 51046, - [SMALL_STATE(1926)] = 51053, - [SMALL_STATE(1927)] = 51060, - [SMALL_STATE(1928)] = 51067, - [SMALL_STATE(1929)] = 51074, - [SMALL_STATE(1930)] = 51081, - [SMALL_STATE(1931)] = 51088, - [SMALL_STATE(1932)] = 51095, - [SMALL_STATE(1933)] = 51102, - [SMALL_STATE(1934)] = 51109, - [SMALL_STATE(1935)] = 51116, - [SMALL_STATE(1936)] = 51123, - [SMALL_STATE(1937)] = 51130, - [SMALL_STATE(1938)] = 51137, + [SMALL_STATE(531)] = 29454, + [SMALL_STATE(532)] = 29510, + [SMALL_STATE(533)] = 29566, + [SMALL_STATE(534)] = 29622, + [SMALL_STATE(535)] = 29678, + [SMALL_STATE(536)] = 29735, + [SMALL_STATE(537)] = 29792, + [SMALL_STATE(538)] = 29849, + [SMALL_STATE(539)] = 29886, + [SMALL_STATE(540)] = 29943, + [SMALL_STATE(541)] = 30000, + [SMALL_STATE(542)] = 30032, + [SMALL_STATE(543)] = 30082, + [SMALL_STATE(544)] = 30136, + [SMALL_STATE(545)] = 30190, + [SMALL_STATE(546)] = 30224, + [SMALL_STATE(547)] = 30278, + [SMALL_STATE(548)] = 30318, + [SMALL_STATE(549)] = 30372, + [SMALL_STATE(550)] = 30426, + [SMALL_STATE(551)] = 30476, + [SMALL_STATE(552)] = 30530, + [SMALL_STATE(553)] = 30581, + [SMALL_STATE(554)] = 30610, + [SMALL_STATE(555)] = 30661, + [SMALL_STATE(556)] = 30712, + [SMALL_STATE(557)] = 30763, + [SMALL_STATE(558)] = 30804, + [SMALL_STATE(559)] = 30853, + [SMALL_STATE(560)] = 30882, + [SMALL_STATE(561)] = 30933, + [SMALL_STATE(562)] = 30984, + [SMALL_STATE(563)] = 31013, + [SMALL_STATE(564)] = 31067, + [SMALL_STATE(565)] = 31115, + [SMALL_STATE(566)] = 31158, + [SMALL_STATE(567)] = 31201, + [SMALL_STATE(568)] = 31244, + [SMALL_STATE(569)] = 31275, + [SMALL_STATE(570)] = 31326, + [SMALL_STATE(571)] = 31373, + [SMALL_STATE(572)] = 31424, + [SMALL_STATE(573)] = 31475, + [SMALL_STATE(574)] = 31506, + [SMALL_STATE(575)] = 31537, + [SMALL_STATE(576)] = 31566, + [SMALL_STATE(577)] = 31592, + [SMALL_STATE(578)] = 31618, + [SMALL_STATE(579)] = 31644, + [SMALL_STATE(580)] = 31692, + [SMALL_STATE(581)] = 31742, + [SMALL_STATE(582)] = 31768, + [SMALL_STATE(583)] = 31794, + [SMALL_STATE(584)] = 31834, + [SMALL_STATE(585)] = 31882, + [SMALL_STATE(586)] = 31911, + [SMALL_STATE(587)] = 31958, + [SMALL_STATE(588)] = 32003, + [SMALL_STATE(589)] = 32032, + [SMALL_STATE(590)] = 32069, + [SMALL_STATE(591)] = 32098, + [SMALL_STATE(592)] = 32127, + [SMALL_STATE(593)] = 32172, + [SMALL_STATE(594)] = 32219, + [SMALL_STATE(595)] = 32266, + [SMALL_STATE(596)] = 32313, + [SMALL_STATE(597)] = 32342, + [SMALL_STATE(598)] = 32387, + [SMALL_STATE(599)] = 32416, + [SMALL_STATE(600)] = 32458, + [SMALL_STATE(601)] = 32482, + [SMALL_STATE(602)] = 32506, + [SMALL_STATE(603)] = 32530, + [SMALL_STATE(604)] = 32554, + [SMALL_STATE(605)] = 32588, + [SMALL_STATE(606)] = 32630, + [SMALL_STATE(607)] = 32664, + [SMALL_STATE(608)] = 32688, + [SMALL_STATE(609)] = 32730, + [SMALL_STATE(610)] = 32772, + [SMALL_STATE(611)] = 32811, + [SMALL_STATE(612)] = 32852, + [SMALL_STATE(613)] = 32893, + [SMALL_STATE(614)] = 32934, + [SMALL_STATE(615)] = 32961, + [SMALL_STATE(616)] = 33002, + [SMALL_STATE(617)] = 33029, + [SMALL_STATE(618)] = 33067, + [SMALL_STATE(619)] = 33105, + [SMALL_STATE(620)] = 33143, + [SMALL_STATE(621)] = 33179, + [SMALL_STATE(622)] = 33217, + [SMALL_STATE(623)] = 33257, + [SMALL_STATE(624)] = 33295, + [SMALL_STATE(625)] = 33333, + [SMALL_STATE(626)] = 33371, + [SMALL_STATE(627)] = 33406, + [SMALL_STATE(628)] = 33441, + [SMALL_STATE(629)] = 33474, + [SMALL_STATE(630)] = 33507, + [SMALL_STATE(631)] = 33528, + [SMALL_STATE(632)] = 33549, + [SMALL_STATE(633)] = 33584, + [SMALL_STATE(634)] = 33619, + [SMALL_STATE(635)] = 33654, + [SMALL_STATE(636)] = 33689, + [SMALL_STATE(637)] = 33724, + [SMALL_STATE(638)] = 33761, + [SMALL_STATE(639)] = 33796, + [SMALL_STATE(640)] = 33831, + [SMALL_STATE(641)] = 33866, + [SMALL_STATE(642)] = 33887, + [SMALL_STATE(643)] = 33922, + [SMALL_STATE(644)] = 33943, + [SMALL_STATE(645)] = 33978, + [SMALL_STATE(646)] = 34011, + [SMALL_STATE(647)] = 34046, + [SMALL_STATE(648)] = 34081, + [SMALL_STATE(649)] = 34116, + [SMALL_STATE(650)] = 34151, + [SMALL_STATE(651)] = 34184, + [SMALL_STATE(652)] = 34217, + [SMALL_STATE(653)] = 34252, + [SMALL_STATE(654)] = 34287, + [SMALL_STATE(655)] = 34322, + [SMALL_STATE(656)] = 34357, + [SMALL_STATE(657)] = 34394, + [SMALL_STATE(658)] = 34415, + [SMALL_STATE(659)] = 34447, + [SMALL_STATE(660)] = 34477, + [SMALL_STATE(661)] = 34505, + [SMALL_STATE(662)] = 34537, + [SMALL_STATE(663)] = 34565, + [SMALL_STATE(664)] = 34593, + [SMALL_STATE(665)] = 34625, + [SMALL_STATE(666)] = 34657, + [SMALL_STATE(667)] = 34689, + [SMALL_STATE(668)] = 34717, + [SMALL_STATE(669)] = 34749, + [SMALL_STATE(670)] = 34781, + [SMALL_STATE(671)] = 34813, + [SMALL_STATE(672)] = 34845, + [SMALL_STATE(673)] = 34877, + [SMALL_STATE(674)] = 34905, + [SMALL_STATE(675)] = 34932, + [SMALL_STATE(676)] = 34959, + [SMALL_STATE(677)] = 34986, + [SMALL_STATE(678)] = 35013, + [SMALL_STATE(679)] = 35042, + [SMALL_STATE(680)] = 35069, + [SMALL_STATE(681)] = 35096, + [SMALL_STATE(682)] = 35123, + [SMALL_STATE(683)] = 35150, + [SMALL_STATE(684)] = 35179, + [SMALL_STATE(685)] = 35208, + [SMALL_STATE(686)] = 35235, + [SMALL_STATE(687)] = 35262, + [SMALL_STATE(688)] = 35289, + [SMALL_STATE(689)] = 35316, + [SMALL_STATE(690)] = 35345, + [SMALL_STATE(691)] = 35372, + [SMALL_STATE(692)] = 35399, + [SMALL_STATE(693)] = 35428, + [SMALL_STATE(694)] = 35455, + [SMALL_STATE(695)] = 35478, + [SMALL_STATE(696)] = 35505, + [SMALL_STATE(697)] = 35532, + [SMALL_STATE(698)] = 35559, + [SMALL_STATE(699)] = 35586, + [SMALL_STATE(700)] = 35607, + [SMALL_STATE(701)] = 35634, + [SMALL_STATE(702)] = 35661, + [SMALL_STATE(703)] = 35688, + [SMALL_STATE(704)] = 35715, + [SMALL_STATE(705)] = 35742, + [SMALL_STATE(706)] = 35769, + [SMALL_STATE(707)] = 35796, + [SMALL_STATE(708)] = 35819, + [SMALL_STATE(709)] = 35846, + [SMALL_STATE(710)] = 35873, + [SMALL_STATE(711)] = 35900, + [SMALL_STATE(712)] = 35927, + [SMALL_STATE(713)] = 35954, + [SMALL_STATE(714)] = 35981, + [SMALL_STATE(715)] = 36008, + [SMALL_STATE(716)] = 36035, + [SMALL_STATE(717)] = 36062, + [SMALL_STATE(718)] = 36097, + [SMALL_STATE(719)] = 36126, + [SMALL_STATE(720)] = 36153, + [SMALL_STATE(721)] = 36180, + [SMALL_STATE(722)] = 36207, + [SMALL_STATE(723)] = 36234, + [SMALL_STATE(724)] = 36257, + [SMALL_STATE(725)] = 36284, + [SMALL_STATE(726)] = 36311, + [SMALL_STATE(727)] = 36340, + [SMALL_STATE(728)] = 36367, + [SMALL_STATE(729)] = 36394, + [SMALL_STATE(730)] = 36421, + [SMALL_STATE(731)] = 36448, + [SMALL_STATE(732)] = 36477, + [SMALL_STATE(733)] = 36504, + [SMALL_STATE(734)] = 36531, + [SMALL_STATE(735)] = 36560, + [SMALL_STATE(736)] = 36587, + [SMALL_STATE(737)] = 36614, + [SMALL_STATE(738)] = 36643, + [SMALL_STATE(739)] = 36670, + [SMALL_STATE(740)] = 36697, + [SMALL_STATE(741)] = 36724, + [SMALL_STATE(742)] = 36753, + [SMALL_STATE(743)] = 36782, + [SMALL_STATE(744)] = 36809, + [SMALL_STATE(745)] = 36832, + [SMALL_STATE(746)] = 36856, + [SMALL_STATE(747)] = 36880, + [SMALL_STATE(748)] = 36904, + [SMALL_STATE(749)] = 36928, + [SMALL_STATE(750)] = 36952, + [SMALL_STATE(751)] = 36976, + [SMALL_STATE(752)] = 37000, + [SMALL_STATE(753)] = 37024, + [SMALL_STATE(754)] = 37048, + [SMALL_STATE(755)] = 37072, + [SMALL_STATE(756)] = 37094, + [SMALL_STATE(757)] = 37118, + [SMALL_STATE(758)] = 37142, + [SMALL_STATE(759)] = 37166, + [SMALL_STATE(760)] = 37190, + [SMALL_STATE(761)] = 37214, + [SMALL_STATE(762)] = 37238, + [SMALL_STATE(763)] = 37262, + [SMALL_STATE(764)] = 37286, + [SMALL_STATE(765)] = 37310, + [SMALL_STATE(766)] = 37334, + [SMALL_STATE(767)] = 37356, + [SMALL_STATE(768)] = 37380, + [SMALL_STATE(769)] = 37404, + [SMALL_STATE(770)] = 37428, + [SMALL_STATE(771)] = 37452, + [SMALL_STATE(772)] = 37476, + [SMALL_STATE(773)] = 37500, + [SMALL_STATE(774)] = 37524, + [SMALL_STATE(775)] = 37548, + [SMALL_STATE(776)] = 37572, + [SMALL_STATE(777)] = 37598, + [SMALL_STATE(778)] = 37622, + [SMALL_STATE(779)] = 37646, + [SMALL_STATE(780)] = 37670, + [SMALL_STATE(781)] = 37694, + [SMALL_STATE(782)] = 37714, + [SMALL_STATE(783)] = 37736, + [SMALL_STATE(784)] = 37760, + [SMALL_STATE(785)] = 37786, + [SMALL_STATE(786)] = 37810, + [SMALL_STATE(787)] = 37834, + [SMALL_STATE(788)] = 37858, + [SMALL_STATE(789)] = 37882, + [SMALL_STATE(790)] = 37906, + [SMALL_STATE(791)] = 37930, + [SMALL_STATE(792)] = 37954, + [SMALL_STATE(793)] = 37978, + [SMALL_STATE(794)] = 38002, + [SMALL_STATE(795)] = 38026, + [SMALL_STATE(796)] = 38050, + [SMALL_STATE(797)] = 38074, + [SMALL_STATE(798)] = 38092, + [SMALL_STATE(799)] = 38116, + [SMALL_STATE(800)] = 38140, + [SMALL_STATE(801)] = 38160, + [SMALL_STATE(802)] = 38184, + [SMALL_STATE(803)] = 38208, + [SMALL_STATE(804)] = 38232, + [SMALL_STATE(805)] = 38256, + [SMALL_STATE(806)] = 38285, + [SMALL_STATE(807)] = 38304, + [SMALL_STATE(808)] = 38333, + [SMALL_STATE(809)] = 38362, + [SMALL_STATE(810)] = 38381, + [SMALL_STATE(811)] = 38400, + [SMALL_STATE(812)] = 38419, + [SMALL_STATE(813)] = 38438, + [SMALL_STATE(814)] = 38467, + [SMALL_STATE(815)] = 38486, + [SMALL_STATE(816)] = 38515, + [SMALL_STATE(817)] = 38533, + [SMALL_STATE(818)] = 38565, + [SMALL_STATE(819)] = 38581, + [SMALL_STATE(820)] = 38613, + [SMALL_STATE(821)] = 38629, + [SMALL_STATE(822)] = 38645, + [SMALL_STATE(823)] = 38661, + [SMALL_STATE(824)] = 38677, + [SMALL_STATE(825)] = 38709, + [SMALL_STATE(826)] = 38741, + [SMALL_STATE(827)] = 38768, + [SMALL_STATE(828)] = 38799, + [SMALL_STATE(829)] = 38826, + [SMALL_STATE(830)] = 38855, + [SMALL_STATE(831)] = 38882, + [SMALL_STATE(832)] = 38913, + [SMALL_STATE(833)] = 38944, + [SMALL_STATE(834)] = 38971, + [SMALL_STATE(835)] = 38998, + [SMALL_STATE(836)] = 39025, + [SMALL_STATE(837)] = 39048, + [SMALL_STATE(838)] = 39075, + [SMALL_STATE(839)] = 39102, + [SMALL_STATE(840)] = 39129, + [SMALL_STATE(841)] = 39158, + [SMALL_STATE(842)] = 39174, + [SMALL_STATE(843)] = 39190, + [SMALL_STATE(844)] = 39216, + [SMALL_STATE(845)] = 39232, + [SMALL_STATE(846)] = 39248, + [SMALL_STATE(847)] = 39264, + [SMALL_STATE(848)] = 39280, + [SMALL_STATE(849)] = 39296, + [SMALL_STATE(850)] = 39320, + [SMALL_STATE(851)] = 39336, + [SMALL_STATE(852)] = 39352, + [SMALL_STATE(853)] = 39368, + [SMALL_STATE(854)] = 39384, + [SMALL_STATE(855)] = 39400, + [SMALL_STATE(856)] = 39416, + [SMALL_STATE(857)] = 39432, + [SMALL_STATE(858)] = 39448, + [SMALL_STATE(859)] = 39464, + [SMALL_STATE(860)] = 39490, + [SMALL_STATE(861)] = 39506, + [SMALL_STATE(862)] = 39528, + [SMALL_STATE(863)] = 39544, + [SMALL_STATE(864)] = 39560, + [SMALL_STATE(865)] = 39576, + [SMALL_STATE(866)] = 39592, + [SMALL_STATE(867)] = 39608, + [SMALL_STATE(868)] = 39634, + [SMALL_STATE(869)] = 39650, + [SMALL_STATE(870)] = 39666, + [SMALL_STATE(871)] = 39682, + [SMALL_STATE(872)] = 39704, + [SMALL_STATE(873)] = 39720, + [SMALL_STATE(874)] = 39736, + [SMALL_STATE(875)] = 39762, + [SMALL_STATE(876)] = 39778, + [SMALL_STATE(877)] = 39794, + [SMALL_STATE(878)] = 39810, + [SMALL_STATE(879)] = 39826, + [SMALL_STATE(880)] = 39842, + [SMALL_STATE(881)] = 39858, + [SMALL_STATE(882)] = 39874, + [SMALL_STATE(883)] = 39890, + [SMALL_STATE(884)] = 39916, + [SMALL_STATE(885)] = 39944, + [SMALL_STATE(886)] = 39960, + [SMALL_STATE(887)] = 39976, + [SMALL_STATE(888)] = 40002, + [SMALL_STATE(889)] = 40018, + [SMALL_STATE(890)] = 40043, + [SMALL_STATE(891)] = 40068, + [SMALL_STATE(892)] = 40091, + [SMALL_STATE(893)] = 40112, + [SMALL_STATE(894)] = 40137, + [SMALL_STATE(895)] = 40162, + [SMALL_STATE(896)] = 40187, + [SMALL_STATE(897)] = 40202, + [SMALL_STATE(898)] = 40227, + [SMALL_STATE(899)] = 40252, + [SMALL_STATE(900)] = 40265, + [SMALL_STATE(901)] = 40278, + [SMALL_STATE(902)] = 40303, + [SMALL_STATE(903)] = 40328, + [SMALL_STATE(904)] = 40353, + [SMALL_STATE(905)] = 40374, + [SMALL_STATE(906)] = 40399, + [SMALL_STATE(907)] = 40424, + [SMALL_STATE(908)] = 40449, + [SMALL_STATE(909)] = 40462, + [SMALL_STATE(910)] = 40487, + [SMALL_STATE(911)] = 40512, + [SMALL_STATE(912)] = 40537, + [SMALL_STATE(913)] = 40558, + [SMALL_STATE(914)] = 40583, + [SMALL_STATE(915)] = 40596, + [SMALL_STATE(916)] = 40621, + [SMALL_STATE(917)] = 40646, + [SMALL_STATE(918)] = 40671, + [SMALL_STATE(919)] = 40684, + [SMALL_STATE(920)] = 40709, + [SMALL_STATE(921)] = 40734, + [SMALL_STATE(922)] = 40755, + [SMALL_STATE(923)] = 40777, + [SMALL_STATE(924)] = 40791, + [SMALL_STATE(925)] = 40805, + [SMALL_STATE(926)] = 40825, + [SMALL_STATE(927)] = 40837, + [SMALL_STATE(928)] = 40853, + [SMALL_STATE(929)] = 40871, + [SMALL_STATE(930)] = 40885, + [SMALL_STATE(931)] = 40907, + [SMALL_STATE(932)] = 40925, + [SMALL_STATE(933)] = 40947, + [SMALL_STATE(934)] = 40967, + [SMALL_STATE(935)] = 40981, + [SMALL_STATE(936)] = 40995, + [SMALL_STATE(937)] = 41011, + [SMALL_STATE(938)] = 41023, + [SMALL_STATE(939)] = 41043, + [SMALL_STATE(940)] = 41065, + [SMALL_STATE(941)] = 41085, + [SMALL_STATE(942)] = 41105, + [SMALL_STATE(943)] = 41127, + [SMALL_STATE(944)] = 41145, + [SMALL_STATE(945)] = 41163, + [SMALL_STATE(946)] = 41183, + [SMALL_STATE(947)] = 41205, + [SMALL_STATE(948)] = 41227, + [SMALL_STATE(949)] = 41249, + [SMALL_STATE(950)] = 41271, + [SMALL_STATE(951)] = 41293, + [SMALL_STATE(952)] = 41307, + [SMALL_STATE(953)] = 41321, + [SMALL_STATE(954)] = 41339, + [SMALL_STATE(955)] = 41359, + [SMALL_STATE(956)] = 41373, + [SMALL_STATE(957)] = 41389, + [SMALL_STATE(958)] = 41411, + [SMALL_STATE(959)] = 41429, + [SMALL_STATE(960)] = 41448, + [SMALL_STATE(961)] = 41467, + [SMALL_STATE(962)] = 41478, + [SMALL_STATE(963)] = 41493, + [SMALL_STATE(964)] = 41510, + [SMALL_STATE(965)] = 41529, + [SMALL_STATE(966)] = 41548, + [SMALL_STATE(967)] = 41567, + [SMALL_STATE(968)] = 41586, + [SMALL_STATE(969)] = 41605, + [SMALL_STATE(970)] = 41624, + [SMALL_STATE(971)] = 41643, + [SMALL_STATE(972)] = 41662, + [SMALL_STATE(973)] = 41679, + [SMALL_STATE(974)] = 41694, + [SMALL_STATE(975)] = 41709, + [SMALL_STATE(976)] = 41728, + [SMALL_STATE(977)] = 41747, + [SMALL_STATE(978)] = 41766, + [SMALL_STATE(979)] = 41785, + [SMALL_STATE(980)] = 41804, + [SMALL_STATE(981)] = 41819, + [SMALL_STATE(982)] = 41838, + [SMALL_STATE(983)] = 41857, + [SMALL_STATE(984)] = 41876, + [SMALL_STATE(985)] = 41895, + [SMALL_STATE(986)] = 41912, + [SMALL_STATE(987)] = 41931, + [SMALL_STATE(988)] = 41950, + [SMALL_STATE(989)] = 41965, + [SMALL_STATE(990)] = 41984, + [SMALL_STATE(991)] = 41997, + [SMALL_STATE(992)] = 42016, + [SMALL_STATE(993)] = 42035, + [SMALL_STATE(994)] = 42054, + [SMALL_STATE(995)] = 42073, + [SMALL_STATE(996)] = 42092, + [SMALL_STATE(997)] = 42109, + [SMALL_STATE(998)] = 42128, + [SMALL_STATE(999)] = 42147, + [SMALL_STATE(1000)] = 42160, + [SMALL_STATE(1001)] = 42179, + [SMALL_STATE(1002)] = 42198, + [SMALL_STATE(1003)] = 42217, + [SMALL_STATE(1004)] = 42236, + [SMALL_STATE(1005)] = 42247, + [SMALL_STATE(1006)] = 42264, + [SMALL_STATE(1007)] = 42281, + [SMALL_STATE(1008)] = 42300, + [SMALL_STATE(1009)] = 42319, + [SMALL_STATE(1010)] = 42334, + [SMALL_STATE(1011)] = 42353, + [SMALL_STATE(1012)] = 42370, + [SMALL_STATE(1013)] = 42389, + [SMALL_STATE(1014)] = 42408, + [SMALL_STATE(1015)] = 42427, + [SMALL_STATE(1016)] = 42446, + [SMALL_STATE(1017)] = 42465, + [SMALL_STATE(1018)] = 42476, + [SMALL_STATE(1019)] = 42491, + [SMALL_STATE(1020)] = 42510, + [SMALL_STATE(1021)] = 42529, + [SMALL_STATE(1022)] = 42544, + [SMALL_STATE(1023)] = 42563, + [SMALL_STATE(1024)] = 42582, + [SMALL_STATE(1025)] = 42601, + [SMALL_STATE(1026)] = 42620, + [SMALL_STATE(1027)] = 42639, + [SMALL_STATE(1028)] = 42656, + [SMALL_STATE(1029)] = 42675, + [SMALL_STATE(1030)] = 42692, + [SMALL_STATE(1031)] = 42711, + [SMALL_STATE(1032)] = 42730, + [SMALL_STATE(1033)] = 42749, + [SMALL_STATE(1034)] = 42768, + [SMALL_STATE(1035)] = 42783, + [SMALL_STATE(1036)] = 42794, + [SMALL_STATE(1037)] = 42805, + [SMALL_STATE(1038)] = 42824, + [SMALL_STATE(1039)] = 42843, + [SMALL_STATE(1040)] = 42854, + [SMALL_STATE(1041)] = 42873, + [SMALL_STATE(1042)] = 42888, + [SMALL_STATE(1043)] = 42907, + [SMALL_STATE(1044)] = 42924, + [SMALL_STATE(1045)] = 42943, + [SMALL_STATE(1046)] = 42958, + [SMALL_STATE(1047)] = 42977, + [SMALL_STATE(1048)] = 42989, + [SMALL_STATE(1049)] = 43003, + [SMALL_STATE(1050)] = 43019, + [SMALL_STATE(1051)] = 43033, + [SMALL_STATE(1052)] = 43045, + [SMALL_STATE(1053)] = 43059, + [SMALL_STATE(1054)] = 43071, + [SMALL_STATE(1055)] = 43087, + [SMALL_STATE(1056)] = 43103, + [SMALL_STATE(1057)] = 43119, + [SMALL_STATE(1058)] = 43133, + [SMALL_STATE(1059)] = 43147, + [SMALL_STATE(1060)] = 43161, + [SMALL_STATE(1061)] = 43177, + [SMALL_STATE(1062)] = 43193, + [SMALL_STATE(1063)] = 43209, + [SMALL_STATE(1064)] = 43225, + [SMALL_STATE(1065)] = 43241, + [SMALL_STATE(1066)] = 43257, + [SMALL_STATE(1067)] = 43273, + [SMALL_STATE(1068)] = 43287, + [SMALL_STATE(1069)] = 43303, + [SMALL_STATE(1070)] = 43319, + [SMALL_STATE(1071)] = 43335, + [SMALL_STATE(1072)] = 43351, + [SMALL_STATE(1073)] = 43361, + [SMALL_STATE(1074)] = 43371, + [SMALL_STATE(1075)] = 43381, + [SMALL_STATE(1076)] = 43395, + [SMALL_STATE(1077)] = 43405, + [SMALL_STATE(1078)] = 43421, + [SMALL_STATE(1079)] = 43435, + [SMALL_STATE(1080)] = 43449, + [SMALL_STATE(1081)] = 43465, + [SMALL_STATE(1082)] = 43479, + [SMALL_STATE(1083)] = 43493, + [SMALL_STATE(1084)] = 43509, + [SMALL_STATE(1085)] = 43525, + [SMALL_STATE(1086)] = 43541, + [SMALL_STATE(1087)] = 43557, + [SMALL_STATE(1088)] = 43569, + [SMALL_STATE(1089)] = 43585, + [SMALL_STATE(1090)] = 43601, + [SMALL_STATE(1091)] = 43611, + [SMALL_STATE(1092)] = 43625, + [SMALL_STATE(1093)] = 43639, + [SMALL_STATE(1094)] = 43653, + [SMALL_STATE(1095)] = 43663, + [SMALL_STATE(1096)] = 43677, + [SMALL_STATE(1097)] = 43689, + [SMALL_STATE(1098)] = 43705, + [SMALL_STATE(1099)] = 43721, + [SMALL_STATE(1100)] = 43735, + [SMALL_STATE(1101)] = 43751, + [SMALL_STATE(1102)] = 43767, + [SMALL_STATE(1103)] = 43783, + [SMALL_STATE(1104)] = 43793, + [SMALL_STATE(1105)] = 43805, + [SMALL_STATE(1106)] = 43817, + [SMALL_STATE(1107)] = 43829, + [SMALL_STATE(1108)] = 43843, + [SMALL_STATE(1109)] = 43857, + [SMALL_STATE(1110)] = 43869, + [SMALL_STATE(1111)] = 43885, + [SMALL_STATE(1112)] = 43901, + [SMALL_STATE(1113)] = 43915, + [SMALL_STATE(1114)] = 43929, + [SMALL_STATE(1115)] = 43943, + [SMALL_STATE(1116)] = 43959, + [SMALL_STATE(1117)] = 43975, + [SMALL_STATE(1118)] = 43991, + [SMALL_STATE(1119)] = 44007, + [SMALL_STATE(1120)] = 44021, + [SMALL_STATE(1121)] = 44035, + [SMALL_STATE(1122)] = 44051, + [SMALL_STATE(1123)] = 44063, + [SMALL_STATE(1124)] = 44077, + [SMALL_STATE(1125)] = 44091, + [SMALL_STATE(1126)] = 44101, + [SMALL_STATE(1127)] = 44111, + [SMALL_STATE(1128)] = 44121, + [SMALL_STATE(1129)] = 44135, + [SMALL_STATE(1130)] = 44151, + [SMALL_STATE(1131)] = 44167, + [SMALL_STATE(1132)] = 44183, + [SMALL_STATE(1133)] = 44199, + [SMALL_STATE(1134)] = 44215, + [SMALL_STATE(1135)] = 44225, + [SMALL_STATE(1136)] = 44241, + [SMALL_STATE(1137)] = 44254, + [SMALL_STATE(1138)] = 44263, + [SMALL_STATE(1139)] = 44276, + [SMALL_STATE(1140)] = 44289, + [SMALL_STATE(1141)] = 44300, + [SMALL_STATE(1142)] = 44309, + [SMALL_STATE(1143)] = 44322, + [SMALL_STATE(1144)] = 44335, + [SMALL_STATE(1145)] = 44346, + [SMALL_STATE(1146)] = 44359, + [SMALL_STATE(1147)] = 44368, + [SMALL_STATE(1148)] = 44377, + [SMALL_STATE(1149)] = 44390, + [SMALL_STATE(1150)] = 44399, + [SMALL_STATE(1151)] = 44412, + [SMALL_STATE(1152)] = 44421, + [SMALL_STATE(1153)] = 44434, + [SMALL_STATE(1154)] = 44447, + [SMALL_STATE(1155)] = 44460, + [SMALL_STATE(1156)] = 44469, + [SMALL_STATE(1157)] = 44482, + [SMALL_STATE(1158)] = 44495, + [SMALL_STATE(1159)] = 44508, + [SMALL_STATE(1160)] = 44521, + [SMALL_STATE(1161)] = 44534, + [SMALL_STATE(1162)] = 44543, + [SMALL_STATE(1163)] = 44552, + [SMALL_STATE(1164)] = 44565, + [SMALL_STATE(1165)] = 44578, + [SMALL_STATE(1166)] = 44591, + [SMALL_STATE(1167)] = 44604, + [SMALL_STATE(1168)] = 44613, + [SMALL_STATE(1169)] = 44626, + [SMALL_STATE(1170)] = 44639, + [SMALL_STATE(1171)] = 44652, + [SMALL_STATE(1172)] = 44665, + [SMALL_STATE(1173)] = 44678, + [SMALL_STATE(1174)] = 44691, + [SMALL_STATE(1175)] = 44704, + [SMALL_STATE(1176)] = 44715, + [SMALL_STATE(1177)] = 44728, + [SMALL_STATE(1178)] = 44741, + [SMALL_STATE(1179)] = 44750, + [SMALL_STATE(1180)] = 44763, + [SMALL_STATE(1181)] = 44776, + [SMALL_STATE(1182)] = 44789, + [SMALL_STATE(1183)] = 44802, + [SMALL_STATE(1184)] = 44811, + [SMALL_STATE(1185)] = 44820, + [SMALL_STATE(1186)] = 44833, + [SMALL_STATE(1187)] = 44842, + [SMALL_STATE(1188)] = 44851, + [SMALL_STATE(1189)] = 44860, + [SMALL_STATE(1190)] = 44873, + [SMALL_STATE(1191)] = 44886, + [SMALL_STATE(1192)] = 44899, + [SMALL_STATE(1193)] = 44912, + [SMALL_STATE(1194)] = 44921, + [SMALL_STATE(1195)] = 44934, + [SMALL_STATE(1196)] = 44947, + [SMALL_STATE(1197)] = 44960, + [SMALL_STATE(1198)] = 44969, + [SMALL_STATE(1199)] = 44982, + [SMALL_STATE(1200)] = 44991, + [SMALL_STATE(1201)] = 45000, + [SMALL_STATE(1202)] = 45013, + [SMALL_STATE(1203)] = 45022, + [SMALL_STATE(1204)] = 45033, + [SMALL_STATE(1205)] = 45046, + [SMALL_STATE(1206)] = 45059, + [SMALL_STATE(1207)] = 45068, + [SMALL_STATE(1208)] = 45077, + [SMALL_STATE(1209)] = 45090, + [SMALL_STATE(1210)] = 45099, + [SMALL_STATE(1211)] = 45112, + [SMALL_STATE(1212)] = 45125, + [SMALL_STATE(1213)] = 45138, + [SMALL_STATE(1214)] = 45151, + [SMALL_STATE(1215)] = 45164, + [SMALL_STATE(1216)] = 45177, + [SMALL_STATE(1217)] = 45190, + [SMALL_STATE(1218)] = 45203, + [SMALL_STATE(1219)] = 45216, + [SMALL_STATE(1220)] = 45227, + [SMALL_STATE(1221)] = 45236, + [SMALL_STATE(1222)] = 45245, + [SMALL_STATE(1223)] = 45254, + [SMALL_STATE(1224)] = 45267, + [SMALL_STATE(1225)] = 45276, + [SMALL_STATE(1226)] = 45285, + [SMALL_STATE(1227)] = 45294, + [SMALL_STATE(1228)] = 45307, + [SMALL_STATE(1229)] = 45316, + [SMALL_STATE(1230)] = 45325, + [SMALL_STATE(1231)] = 45338, + [SMALL_STATE(1232)] = 45351, + [SMALL_STATE(1233)] = 45364, + [SMALL_STATE(1234)] = 45377, + [SMALL_STATE(1235)] = 45390, + [SMALL_STATE(1236)] = 45403, + [SMALL_STATE(1237)] = 45412, + [SMALL_STATE(1238)] = 45421, + [SMALL_STATE(1239)] = 45434, + [SMALL_STATE(1240)] = 45443, + [SMALL_STATE(1241)] = 45456, + [SMALL_STATE(1242)] = 45469, + [SMALL_STATE(1243)] = 45482, + [SMALL_STATE(1244)] = 45495, + [SMALL_STATE(1245)] = 45508, + [SMALL_STATE(1246)] = 45521, + [SMALL_STATE(1247)] = 45534, + [SMALL_STATE(1248)] = 45547, + [SMALL_STATE(1249)] = 45560, + [SMALL_STATE(1250)] = 45573, + [SMALL_STATE(1251)] = 45586, + [SMALL_STATE(1252)] = 45599, + [SMALL_STATE(1253)] = 45612, + [SMALL_STATE(1254)] = 45625, + [SMALL_STATE(1255)] = 45638, + [SMALL_STATE(1256)] = 45651, + [SMALL_STATE(1257)] = 45664, + [SMALL_STATE(1258)] = 45677, + [SMALL_STATE(1259)] = 45690, + [SMALL_STATE(1260)] = 45703, + [SMALL_STATE(1261)] = 45716, + [SMALL_STATE(1262)] = 45725, + [SMALL_STATE(1263)] = 45734, + [SMALL_STATE(1264)] = 45743, + [SMALL_STATE(1265)] = 45754, + [SMALL_STATE(1266)] = 45763, + [SMALL_STATE(1267)] = 45774, + [SMALL_STATE(1268)] = 45783, + [SMALL_STATE(1269)] = 45796, + [SMALL_STATE(1270)] = 45809, + [SMALL_STATE(1271)] = 45822, + [SMALL_STATE(1272)] = 45831, + [SMALL_STATE(1273)] = 45844, + [SMALL_STATE(1274)] = 45853, + [SMALL_STATE(1275)] = 45866, + [SMALL_STATE(1276)] = 45879, + [SMALL_STATE(1277)] = 45890, + [SMALL_STATE(1278)] = 45899, + [SMALL_STATE(1279)] = 45908, + [SMALL_STATE(1280)] = 45921, + [SMALL_STATE(1281)] = 45934, + [SMALL_STATE(1282)] = 45943, + [SMALL_STATE(1283)] = 45956, + [SMALL_STATE(1284)] = 45969, + [SMALL_STATE(1285)] = 45982, + [SMALL_STATE(1286)] = 45995, + [SMALL_STATE(1287)] = 46008, + [SMALL_STATE(1288)] = 46021, + [SMALL_STATE(1289)] = 46034, + [SMALL_STATE(1290)] = 46047, + [SMALL_STATE(1291)] = 46060, + [SMALL_STATE(1292)] = 46073, + [SMALL_STATE(1293)] = 46082, + [SMALL_STATE(1294)] = 46095, + [SMALL_STATE(1295)] = 46108, + [SMALL_STATE(1296)] = 46119, + [SMALL_STATE(1297)] = 46132, + [SMALL_STATE(1298)] = 46145, + [SMALL_STATE(1299)] = 46158, + [SMALL_STATE(1300)] = 46171, + [SMALL_STATE(1301)] = 46184, + [SMALL_STATE(1302)] = 46197, + [SMALL_STATE(1303)] = 46210, + [SMALL_STATE(1304)] = 46219, + [SMALL_STATE(1305)] = 46232, + [SMALL_STATE(1306)] = 46245, + [SMALL_STATE(1307)] = 46258, + [SMALL_STATE(1308)] = 46271, + [SMALL_STATE(1309)] = 46284, + [SMALL_STATE(1310)] = 46293, + [SMALL_STATE(1311)] = 46306, + [SMALL_STATE(1312)] = 46315, + [SMALL_STATE(1313)] = 46328, + [SMALL_STATE(1314)] = 46337, + [SMALL_STATE(1315)] = 46346, + [SMALL_STATE(1316)] = 46359, + [SMALL_STATE(1317)] = 46372, + [SMALL_STATE(1318)] = 46381, + [SMALL_STATE(1319)] = 46394, + [SMALL_STATE(1320)] = 46405, + [SMALL_STATE(1321)] = 46414, + [SMALL_STATE(1322)] = 46427, + [SMALL_STATE(1323)] = 46440, + [SMALL_STATE(1324)] = 46453, + [SMALL_STATE(1325)] = 46466, + [SMALL_STATE(1326)] = 46479, + [SMALL_STATE(1327)] = 46492, + [SMALL_STATE(1328)] = 46503, + [SMALL_STATE(1329)] = 46512, + [SMALL_STATE(1330)] = 46525, + [SMALL_STATE(1331)] = 46534, + [SMALL_STATE(1332)] = 46543, + [SMALL_STATE(1333)] = 46556, + [SMALL_STATE(1334)] = 46564, + [SMALL_STATE(1335)] = 46574, + [SMALL_STATE(1336)] = 46582, + [SMALL_STATE(1337)] = 46590, + [SMALL_STATE(1338)] = 46598, + [SMALL_STATE(1339)] = 46606, + [SMALL_STATE(1340)] = 46614, + [SMALL_STATE(1341)] = 46624, + [SMALL_STATE(1342)] = 46634, + [SMALL_STATE(1343)] = 46644, + [SMALL_STATE(1344)] = 46652, + [SMALL_STATE(1345)] = 46660, + [SMALL_STATE(1346)] = 46668, + [SMALL_STATE(1347)] = 46676, + [SMALL_STATE(1348)] = 46686, + [SMALL_STATE(1349)] = 46694, + [SMALL_STATE(1350)] = 46704, + [SMALL_STATE(1351)] = 46714, + [SMALL_STATE(1352)] = 46724, + [SMALL_STATE(1353)] = 46734, + [SMALL_STATE(1354)] = 46744, + [SMALL_STATE(1355)] = 46754, + [SMALL_STATE(1356)] = 46764, + [SMALL_STATE(1357)] = 46774, + [SMALL_STATE(1358)] = 46782, + [SMALL_STATE(1359)] = 46792, + [SMALL_STATE(1360)] = 46800, + [SMALL_STATE(1361)] = 46808, + [SMALL_STATE(1362)] = 46818, + [SMALL_STATE(1363)] = 46826, + [SMALL_STATE(1364)] = 46834, + [SMALL_STATE(1365)] = 46842, + [SMALL_STATE(1366)] = 46850, + [SMALL_STATE(1367)] = 46858, + [SMALL_STATE(1368)] = 46866, + [SMALL_STATE(1369)] = 46876, + [SMALL_STATE(1370)] = 46884, + [SMALL_STATE(1371)] = 46892, + [SMALL_STATE(1372)] = 46902, + [SMALL_STATE(1373)] = 46910, + [SMALL_STATE(1374)] = 46918, + [SMALL_STATE(1375)] = 46928, + [SMALL_STATE(1376)] = 46938, + [SMALL_STATE(1377)] = 46948, + [SMALL_STATE(1378)] = 46956, + [SMALL_STATE(1379)] = 46964, + [SMALL_STATE(1380)] = 46974, + [SMALL_STATE(1381)] = 46982, + [SMALL_STATE(1382)] = 46990, + [SMALL_STATE(1383)] = 47000, + [SMALL_STATE(1384)] = 47010, + [SMALL_STATE(1385)] = 47018, + [SMALL_STATE(1386)] = 47028, + [SMALL_STATE(1387)] = 47036, + [SMALL_STATE(1388)] = 47046, + [SMALL_STATE(1389)] = 47056, + [SMALL_STATE(1390)] = 47066, + [SMALL_STATE(1391)] = 47074, + [SMALL_STATE(1392)] = 47082, + [SMALL_STATE(1393)] = 47090, + [SMALL_STATE(1394)] = 47098, + [SMALL_STATE(1395)] = 47106, + [SMALL_STATE(1396)] = 47114, + [SMALL_STATE(1397)] = 47124, + [SMALL_STATE(1398)] = 47132, + [SMALL_STATE(1399)] = 47142, + [SMALL_STATE(1400)] = 47150, + [SMALL_STATE(1401)] = 47158, + [SMALL_STATE(1402)] = 47166, + [SMALL_STATE(1403)] = 47176, + [SMALL_STATE(1404)] = 47186, + [SMALL_STATE(1405)] = 47196, + [SMALL_STATE(1406)] = 47204, + [SMALL_STATE(1407)] = 47214, + [SMALL_STATE(1408)] = 47222, + [SMALL_STATE(1409)] = 47232, + [SMALL_STATE(1410)] = 47240, + [SMALL_STATE(1411)] = 47250, + [SMALL_STATE(1412)] = 47258, + [SMALL_STATE(1413)] = 47268, + [SMALL_STATE(1414)] = 47278, + [SMALL_STATE(1415)] = 47286, + [SMALL_STATE(1416)] = 47296, + [SMALL_STATE(1417)] = 47306, + [SMALL_STATE(1418)] = 47314, + [SMALL_STATE(1419)] = 47324, + [SMALL_STATE(1420)] = 47334, + [SMALL_STATE(1421)] = 47342, + [SMALL_STATE(1422)] = 47352, + [SMALL_STATE(1423)] = 47360, + [SMALL_STATE(1424)] = 47368, + [SMALL_STATE(1425)] = 47376, + [SMALL_STATE(1426)] = 47386, + [SMALL_STATE(1427)] = 47396, + [SMALL_STATE(1428)] = 47404, + [SMALL_STATE(1429)] = 47414, + [SMALL_STATE(1430)] = 47422, + [SMALL_STATE(1431)] = 47432, + [SMALL_STATE(1432)] = 47440, + [SMALL_STATE(1433)] = 47450, + [SMALL_STATE(1434)] = 47460, + [SMALL_STATE(1435)] = 47470, + [SMALL_STATE(1436)] = 47480, + [SMALL_STATE(1437)] = 47488, + [SMALL_STATE(1438)] = 47496, + [SMALL_STATE(1439)] = 47506, + [SMALL_STATE(1440)] = 47516, + [SMALL_STATE(1441)] = 47526, + [SMALL_STATE(1442)] = 47536, + [SMALL_STATE(1443)] = 47544, + [SMALL_STATE(1444)] = 47554, + [SMALL_STATE(1445)] = 47564, + [SMALL_STATE(1446)] = 47574, + [SMALL_STATE(1447)] = 47582, + [SMALL_STATE(1448)] = 47590, + [SMALL_STATE(1449)] = 47600, + [SMALL_STATE(1450)] = 47608, + [SMALL_STATE(1451)] = 47616, + [SMALL_STATE(1452)] = 47626, + [SMALL_STATE(1453)] = 47636, + [SMALL_STATE(1454)] = 47644, + [SMALL_STATE(1455)] = 47654, + [SMALL_STATE(1456)] = 47662, + [SMALL_STATE(1457)] = 47672, + [SMALL_STATE(1458)] = 47680, + [SMALL_STATE(1459)] = 47690, + [SMALL_STATE(1460)] = 47700, + [SMALL_STATE(1461)] = 47710, + [SMALL_STATE(1462)] = 47718, + [SMALL_STATE(1463)] = 47726, + [SMALL_STATE(1464)] = 47736, + [SMALL_STATE(1465)] = 47744, + [SMALL_STATE(1466)] = 47752, + [SMALL_STATE(1467)] = 47760, + [SMALL_STATE(1468)] = 47768, + [SMALL_STATE(1469)] = 47778, + [SMALL_STATE(1470)] = 47788, + [SMALL_STATE(1471)] = 47798, + [SMALL_STATE(1472)] = 47806, + [SMALL_STATE(1473)] = 47816, + [SMALL_STATE(1474)] = 47826, + [SMALL_STATE(1475)] = 47836, + [SMALL_STATE(1476)] = 47844, + [SMALL_STATE(1477)] = 47854, + [SMALL_STATE(1478)] = 47864, + [SMALL_STATE(1479)] = 47872, + [SMALL_STATE(1480)] = 47880, + [SMALL_STATE(1481)] = 47888, + [SMALL_STATE(1482)] = 47896, + [SMALL_STATE(1483)] = 47903, + [SMALL_STATE(1484)] = 47910, + [SMALL_STATE(1485)] = 47917, + [SMALL_STATE(1486)] = 47924, + [SMALL_STATE(1487)] = 47931, + [SMALL_STATE(1488)] = 47938, + [SMALL_STATE(1489)] = 47945, + [SMALL_STATE(1490)] = 47952, + [SMALL_STATE(1491)] = 47959, + [SMALL_STATE(1492)] = 47966, + [SMALL_STATE(1493)] = 47973, + [SMALL_STATE(1494)] = 47980, + [SMALL_STATE(1495)] = 47987, + [SMALL_STATE(1496)] = 47994, + [SMALL_STATE(1497)] = 48001, + [SMALL_STATE(1498)] = 48008, + [SMALL_STATE(1499)] = 48015, + [SMALL_STATE(1500)] = 48022, + [SMALL_STATE(1501)] = 48029, + [SMALL_STATE(1502)] = 48036, + [SMALL_STATE(1503)] = 48043, + [SMALL_STATE(1504)] = 48050, + [SMALL_STATE(1505)] = 48057, + [SMALL_STATE(1506)] = 48064, + [SMALL_STATE(1507)] = 48071, + [SMALL_STATE(1508)] = 48078, + [SMALL_STATE(1509)] = 48085, + [SMALL_STATE(1510)] = 48092, + [SMALL_STATE(1511)] = 48099, + [SMALL_STATE(1512)] = 48106, + [SMALL_STATE(1513)] = 48113, + [SMALL_STATE(1514)] = 48120, + [SMALL_STATE(1515)] = 48127, + [SMALL_STATE(1516)] = 48134, + [SMALL_STATE(1517)] = 48141, + [SMALL_STATE(1518)] = 48148, + [SMALL_STATE(1519)] = 48155, + [SMALL_STATE(1520)] = 48162, + [SMALL_STATE(1521)] = 48169, + [SMALL_STATE(1522)] = 48176, + [SMALL_STATE(1523)] = 48183, + [SMALL_STATE(1524)] = 48190, + [SMALL_STATE(1525)] = 48197, + [SMALL_STATE(1526)] = 48204, + [SMALL_STATE(1527)] = 48211, + [SMALL_STATE(1528)] = 48218, + [SMALL_STATE(1529)] = 48225, + [SMALL_STATE(1530)] = 48232, + [SMALL_STATE(1531)] = 48239, + [SMALL_STATE(1532)] = 48246, + [SMALL_STATE(1533)] = 48253, + [SMALL_STATE(1534)] = 48260, + [SMALL_STATE(1535)] = 48267, + [SMALL_STATE(1536)] = 48274, + [SMALL_STATE(1537)] = 48281, + [SMALL_STATE(1538)] = 48288, + [SMALL_STATE(1539)] = 48295, + [SMALL_STATE(1540)] = 48302, + [SMALL_STATE(1541)] = 48309, + [SMALL_STATE(1542)] = 48316, + [SMALL_STATE(1543)] = 48323, + [SMALL_STATE(1544)] = 48330, + [SMALL_STATE(1545)] = 48337, + [SMALL_STATE(1546)] = 48344, + [SMALL_STATE(1547)] = 48351, + [SMALL_STATE(1548)] = 48358, + [SMALL_STATE(1549)] = 48365, + [SMALL_STATE(1550)] = 48372, + [SMALL_STATE(1551)] = 48379, + [SMALL_STATE(1552)] = 48386, + [SMALL_STATE(1553)] = 48393, + [SMALL_STATE(1554)] = 48400, + [SMALL_STATE(1555)] = 48407, + [SMALL_STATE(1556)] = 48414, + [SMALL_STATE(1557)] = 48421, + [SMALL_STATE(1558)] = 48428, + [SMALL_STATE(1559)] = 48435, + [SMALL_STATE(1560)] = 48442, + [SMALL_STATE(1561)] = 48449, + [SMALL_STATE(1562)] = 48456, + [SMALL_STATE(1563)] = 48463, + [SMALL_STATE(1564)] = 48470, + [SMALL_STATE(1565)] = 48477, + [SMALL_STATE(1566)] = 48484, + [SMALL_STATE(1567)] = 48491, + [SMALL_STATE(1568)] = 48498, + [SMALL_STATE(1569)] = 48505, + [SMALL_STATE(1570)] = 48512, + [SMALL_STATE(1571)] = 48519, + [SMALL_STATE(1572)] = 48526, + [SMALL_STATE(1573)] = 48533, + [SMALL_STATE(1574)] = 48540, + [SMALL_STATE(1575)] = 48547, + [SMALL_STATE(1576)] = 48554, + [SMALL_STATE(1577)] = 48561, + [SMALL_STATE(1578)] = 48568, + [SMALL_STATE(1579)] = 48575, + [SMALL_STATE(1580)] = 48582, + [SMALL_STATE(1581)] = 48589, + [SMALL_STATE(1582)] = 48596, + [SMALL_STATE(1583)] = 48603, + [SMALL_STATE(1584)] = 48610, + [SMALL_STATE(1585)] = 48617, + [SMALL_STATE(1586)] = 48624, + [SMALL_STATE(1587)] = 48631, + [SMALL_STATE(1588)] = 48638, + [SMALL_STATE(1589)] = 48645, + [SMALL_STATE(1590)] = 48652, + [SMALL_STATE(1591)] = 48659, + [SMALL_STATE(1592)] = 48666, + [SMALL_STATE(1593)] = 48673, + [SMALL_STATE(1594)] = 48680, + [SMALL_STATE(1595)] = 48687, + [SMALL_STATE(1596)] = 48694, + [SMALL_STATE(1597)] = 48701, + [SMALL_STATE(1598)] = 48708, + [SMALL_STATE(1599)] = 48715, + [SMALL_STATE(1600)] = 48722, + [SMALL_STATE(1601)] = 48729, + [SMALL_STATE(1602)] = 48736, + [SMALL_STATE(1603)] = 48743, + [SMALL_STATE(1604)] = 48750, + [SMALL_STATE(1605)] = 48757, + [SMALL_STATE(1606)] = 48764, + [SMALL_STATE(1607)] = 48771, + [SMALL_STATE(1608)] = 48778, + [SMALL_STATE(1609)] = 48785, + [SMALL_STATE(1610)] = 48792, + [SMALL_STATE(1611)] = 48799, + [SMALL_STATE(1612)] = 48806, + [SMALL_STATE(1613)] = 48813, + [SMALL_STATE(1614)] = 48820, + [SMALL_STATE(1615)] = 48827, + [SMALL_STATE(1616)] = 48834, + [SMALL_STATE(1617)] = 48841, + [SMALL_STATE(1618)] = 48848, + [SMALL_STATE(1619)] = 48855, + [SMALL_STATE(1620)] = 48862, + [SMALL_STATE(1621)] = 48869, + [SMALL_STATE(1622)] = 48876, + [SMALL_STATE(1623)] = 48883, + [SMALL_STATE(1624)] = 48890, + [SMALL_STATE(1625)] = 48897, + [SMALL_STATE(1626)] = 48904, + [SMALL_STATE(1627)] = 48911, + [SMALL_STATE(1628)] = 48918, + [SMALL_STATE(1629)] = 48925, + [SMALL_STATE(1630)] = 48932, + [SMALL_STATE(1631)] = 48939, + [SMALL_STATE(1632)] = 48946, + [SMALL_STATE(1633)] = 48953, + [SMALL_STATE(1634)] = 48960, + [SMALL_STATE(1635)] = 48967, + [SMALL_STATE(1636)] = 48974, + [SMALL_STATE(1637)] = 48981, + [SMALL_STATE(1638)] = 48988, + [SMALL_STATE(1639)] = 48995, + [SMALL_STATE(1640)] = 49002, + [SMALL_STATE(1641)] = 49009, + [SMALL_STATE(1642)] = 49016, + [SMALL_STATE(1643)] = 49023, + [SMALL_STATE(1644)] = 49030, + [SMALL_STATE(1645)] = 49037, + [SMALL_STATE(1646)] = 49044, + [SMALL_STATE(1647)] = 49051, + [SMALL_STATE(1648)] = 49058, + [SMALL_STATE(1649)] = 49065, + [SMALL_STATE(1650)] = 49072, + [SMALL_STATE(1651)] = 49079, + [SMALL_STATE(1652)] = 49086, + [SMALL_STATE(1653)] = 49093, + [SMALL_STATE(1654)] = 49100, + [SMALL_STATE(1655)] = 49107, + [SMALL_STATE(1656)] = 49114, + [SMALL_STATE(1657)] = 49121, + [SMALL_STATE(1658)] = 49128, + [SMALL_STATE(1659)] = 49135, + [SMALL_STATE(1660)] = 49142, + [SMALL_STATE(1661)] = 49149, + [SMALL_STATE(1662)] = 49156, + [SMALL_STATE(1663)] = 49163, + [SMALL_STATE(1664)] = 49170, + [SMALL_STATE(1665)] = 49177, + [SMALL_STATE(1666)] = 49184, + [SMALL_STATE(1667)] = 49191, + [SMALL_STATE(1668)] = 49198, + [SMALL_STATE(1669)] = 49205, + [SMALL_STATE(1670)] = 49212, + [SMALL_STATE(1671)] = 49219, + [SMALL_STATE(1672)] = 49226, + [SMALL_STATE(1673)] = 49233, + [SMALL_STATE(1674)] = 49240, + [SMALL_STATE(1675)] = 49247, + [SMALL_STATE(1676)] = 49254, + [SMALL_STATE(1677)] = 49261, + [SMALL_STATE(1678)] = 49268, + [SMALL_STATE(1679)] = 49275, + [SMALL_STATE(1680)] = 49282, + [SMALL_STATE(1681)] = 49289, + [SMALL_STATE(1682)] = 49296, + [SMALL_STATE(1683)] = 49303, + [SMALL_STATE(1684)] = 49310, + [SMALL_STATE(1685)] = 49317, + [SMALL_STATE(1686)] = 49324, + [SMALL_STATE(1687)] = 49331, + [SMALL_STATE(1688)] = 49338, + [SMALL_STATE(1689)] = 49345, + [SMALL_STATE(1690)] = 49352, + [SMALL_STATE(1691)] = 49359, + [SMALL_STATE(1692)] = 49366, + [SMALL_STATE(1693)] = 49373, + [SMALL_STATE(1694)] = 49380, + [SMALL_STATE(1695)] = 49387, + [SMALL_STATE(1696)] = 49394, + [SMALL_STATE(1697)] = 49401, + [SMALL_STATE(1698)] = 49408, + [SMALL_STATE(1699)] = 49415, + [SMALL_STATE(1700)] = 49422, + [SMALL_STATE(1701)] = 49429, + [SMALL_STATE(1702)] = 49436, + [SMALL_STATE(1703)] = 49443, + [SMALL_STATE(1704)] = 49450, + [SMALL_STATE(1705)] = 49457, + [SMALL_STATE(1706)] = 49464, + [SMALL_STATE(1707)] = 49471, + [SMALL_STATE(1708)] = 49478, + [SMALL_STATE(1709)] = 49485, + [SMALL_STATE(1710)] = 49492, + [SMALL_STATE(1711)] = 49499, + [SMALL_STATE(1712)] = 49506, + [SMALL_STATE(1713)] = 49513, + [SMALL_STATE(1714)] = 49520, + [SMALL_STATE(1715)] = 49527, + [SMALL_STATE(1716)] = 49534, + [SMALL_STATE(1717)] = 49541, + [SMALL_STATE(1718)] = 49548, + [SMALL_STATE(1719)] = 49555, + [SMALL_STATE(1720)] = 49562, + [SMALL_STATE(1721)] = 49569, + [SMALL_STATE(1722)] = 49576, + [SMALL_STATE(1723)] = 49583, + [SMALL_STATE(1724)] = 49590, + [SMALL_STATE(1725)] = 49597, + [SMALL_STATE(1726)] = 49604, + [SMALL_STATE(1727)] = 49611, + [SMALL_STATE(1728)] = 49618, + [SMALL_STATE(1729)] = 49625, + [SMALL_STATE(1730)] = 49632, + [SMALL_STATE(1731)] = 49639, + [SMALL_STATE(1732)] = 49646, + [SMALL_STATE(1733)] = 49653, + [SMALL_STATE(1734)] = 49660, + [SMALL_STATE(1735)] = 49667, + [SMALL_STATE(1736)] = 49674, + [SMALL_STATE(1737)] = 49681, + [SMALL_STATE(1738)] = 49688, + [SMALL_STATE(1739)] = 49695, + [SMALL_STATE(1740)] = 49702, + [SMALL_STATE(1741)] = 49709, + [SMALL_STATE(1742)] = 49716, + [SMALL_STATE(1743)] = 49723, + [SMALL_STATE(1744)] = 49730, + [SMALL_STATE(1745)] = 49737, + [SMALL_STATE(1746)] = 49744, + [SMALL_STATE(1747)] = 49751, + [SMALL_STATE(1748)] = 49758, + [SMALL_STATE(1749)] = 49765, + [SMALL_STATE(1750)] = 49772, + [SMALL_STATE(1751)] = 49779, + [SMALL_STATE(1752)] = 49786, + [SMALL_STATE(1753)] = 49793, + [SMALL_STATE(1754)] = 49800, + [SMALL_STATE(1755)] = 49807, + [SMALL_STATE(1756)] = 49814, + [SMALL_STATE(1757)] = 49821, + [SMALL_STATE(1758)] = 49828, + [SMALL_STATE(1759)] = 49835, + [SMALL_STATE(1760)] = 49842, + [SMALL_STATE(1761)] = 49849, + [SMALL_STATE(1762)] = 49856, + [SMALL_STATE(1763)] = 49863, + [SMALL_STATE(1764)] = 49870, + [SMALL_STATE(1765)] = 49877, + [SMALL_STATE(1766)] = 49884, + [SMALL_STATE(1767)] = 49891, + [SMALL_STATE(1768)] = 49898, + [SMALL_STATE(1769)] = 49905, + [SMALL_STATE(1770)] = 49912, + [SMALL_STATE(1771)] = 49919, + [SMALL_STATE(1772)] = 49926, + [SMALL_STATE(1773)] = 49933, + [SMALL_STATE(1774)] = 49940, + [SMALL_STATE(1775)] = 49947, + [SMALL_STATE(1776)] = 49954, + [SMALL_STATE(1777)] = 49961, + [SMALL_STATE(1778)] = 49968, + [SMALL_STATE(1779)] = 49975, + [SMALL_STATE(1780)] = 49982, + [SMALL_STATE(1781)] = 49989, + [SMALL_STATE(1782)] = 49996, + [SMALL_STATE(1783)] = 50003, + [SMALL_STATE(1784)] = 50010, + [SMALL_STATE(1785)] = 50017, + [SMALL_STATE(1786)] = 50024, + [SMALL_STATE(1787)] = 50031, + [SMALL_STATE(1788)] = 50038, + [SMALL_STATE(1789)] = 50045, + [SMALL_STATE(1790)] = 50052, + [SMALL_STATE(1791)] = 50059, + [SMALL_STATE(1792)] = 50066, + [SMALL_STATE(1793)] = 50073, + [SMALL_STATE(1794)] = 50080, + [SMALL_STATE(1795)] = 50087, + [SMALL_STATE(1796)] = 50094, + [SMALL_STATE(1797)] = 50101, + [SMALL_STATE(1798)] = 50108, + [SMALL_STATE(1799)] = 50115, + [SMALL_STATE(1800)] = 50122, + [SMALL_STATE(1801)] = 50129, + [SMALL_STATE(1802)] = 50136, + [SMALL_STATE(1803)] = 50143, + [SMALL_STATE(1804)] = 50150, + [SMALL_STATE(1805)] = 50157, + [SMALL_STATE(1806)] = 50164, + [SMALL_STATE(1807)] = 50171, + [SMALL_STATE(1808)] = 50178, + [SMALL_STATE(1809)] = 50185, + [SMALL_STATE(1810)] = 50192, + [SMALL_STATE(1811)] = 50199, + [SMALL_STATE(1812)] = 50206, + [SMALL_STATE(1813)] = 50213, + [SMALL_STATE(1814)] = 50220, + [SMALL_STATE(1815)] = 50227, + [SMALL_STATE(1816)] = 50234, + [SMALL_STATE(1817)] = 50241, + [SMALL_STATE(1818)] = 50248, + [SMALL_STATE(1819)] = 50255, + [SMALL_STATE(1820)] = 50262, + [SMALL_STATE(1821)] = 50269, + [SMALL_STATE(1822)] = 50276, + [SMALL_STATE(1823)] = 50283, + [SMALL_STATE(1824)] = 50290, + [SMALL_STATE(1825)] = 50297, + [SMALL_STATE(1826)] = 50304, + [SMALL_STATE(1827)] = 50311, + [SMALL_STATE(1828)] = 50318, + [SMALL_STATE(1829)] = 50325, + [SMALL_STATE(1830)] = 50332, + [SMALL_STATE(1831)] = 50339, + [SMALL_STATE(1832)] = 50346, + [SMALL_STATE(1833)] = 50353, + [SMALL_STATE(1834)] = 50360, + [SMALL_STATE(1835)] = 50367, + [SMALL_STATE(1836)] = 50374, + [SMALL_STATE(1837)] = 50381, + [SMALL_STATE(1838)] = 50388, + [SMALL_STATE(1839)] = 50395, + [SMALL_STATE(1840)] = 50402, + [SMALL_STATE(1841)] = 50409, + [SMALL_STATE(1842)] = 50416, + [SMALL_STATE(1843)] = 50423, + [SMALL_STATE(1844)] = 50430, + [SMALL_STATE(1845)] = 50437, + [SMALL_STATE(1846)] = 50444, + [SMALL_STATE(1847)] = 50451, + [SMALL_STATE(1848)] = 50458, + [SMALL_STATE(1849)] = 50465, + [SMALL_STATE(1850)] = 50472, + [SMALL_STATE(1851)] = 50479, + [SMALL_STATE(1852)] = 50486, + [SMALL_STATE(1853)] = 50493, + [SMALL_STATE(1854)] = 50500, + [SMALL_STATE(1855)] = 50507, + [SMALL_STATE(1856)] = 50514, + [SMALL_STATE(1857)] = 50521, + [SMALL_STATE(1858)] = 50528, + [SMALL_STATE(1859)] = 50535, + [SMALL_STATE(1860)] = 50542, + [SMALL_STATE(1861)] = 50549, + [SMALL_STATE(1862)] = 50556, + [SMALL_STATE(1863)] = 50563, + [SMALL_STATE(1864)] = 50570, + [SMALL_STATE(1865)] = 50577, + [SMALL_STATE(1866)] = 50584, + [SMALL_STATE(1867)] = 50591, + [SMALL_STATE(1868)] = 50598, + [SMALL_STATE(1869)] = 50605, + [SMALL_STATE(1870)] = 50612, + [SMALL_STATE(1871)] = 50619, + [SMALL_STATE(1872)] = 50626, + [SMALL_STATE(1873)] = 50633, + [SMALL_STATE(1874)] = 50640, + [SMALL_STATE(1875)] = 50647, + [SMALL_STATE(1876)] = 50654, + [SMALL_STATE(1877)] = 50661, + [SMALL_STATE(1878)] = 50668, + [SMALL_STATE(1879)] = 50675, + [SMALL_STATE(1880)] = 50682, + [SMALL_STATE(1881)] = 50689, + [SMALL_STATE(1882)] = 50696, + [SMALL_STATE(1883)] = 50703, + [SMALL_STATE(1884)] = 50710, + [SMALL_STATE(1885)] = 50717, + [SMALL_STATE(1886)] = 50724, + [SMALL_STATE(1887)] = 50731, + [SMALL_STATE(1888)] = 50738, + [SMALL_STATE(1889)] = 50745, + [SMALL_STATE(1890)] = 50752, + [SMALL_STATE(1891)] = 50759, + [SMALL_STATE(1892)] = 50766, + [SMALL_STATE(1893)] = 50773, + [SMALL_STATE(1894)] = 50780, + [SMALL_STATE(1895)] = 50787, + [SMALL_STATE(1896)] = 50794, + [SMALL_STATE(1897)] = 50801, + [SMALL_STATE(1898)] = 50808, + [SMALL_STATE(1899)] = 50815, + [SMALL_STATE(1900)] = 50822, + [SMALL_STATE(1901)] = 50829, + [SMALL_STATE(1902)] = 50836, + [SMALL_STATE(1903)] = 50843, + [SMALL_STATE(1904)] = 50850, + [SMALL_STATE(1905)] = 50857, + [SMALL_STATE(1906)] = 50864, + [SMALL_STATE(1907)] = 50871, + [SMALL_STATE(1908)] = 50878, + [SMALL_STATE(1909)] = 50885, + [SMALL_STATE(1910)] = 50892, + [SMALL_STATE(1911)] = 50899, + [SMALL_STATE(1912)] = 50906, + [SMALL_STATE(1913)] = 50913, + [SMALL_STATE(1914)] = 50920, + [SMALL_STATE(1915)] = 50927, + [SMALL_STATE(1916)] = 50934, + [SMALL_STATE(1917)] = 50941, + [SMALL_STATE(1918)] = 50948, + [SMALL_STATE(1919)] = 50955, + [SMALL_STATE(1920)] = 50962, + [SMALL_STATE(1921)] = 50969, + [SMALL_STATE(1922)] = 50976, + [SMALL_STATE(1923)] = 50983, + [SMALL_STATE(1924)] = 50990, + [SMALL_STATE(1925)] = 50997, + [SMALL_STATE(1926)] = 51004, + [SMALL_STATE(1927)] = 51011, + [SMALL_STATE(1928)] = 51018, + [SMALL_STATE(1929)] = 51025, + [SMALL_STATE(1930)] = 51032, + [SMALL_STATE(1931)] = 51039, + [SMALL_STATE(1932)] = 51046, + [SMALL_STATE(1933)] = 51053, + [SMALL_STATE(1934)] = 51060, + [SMALL_STATE(1935)] = 51067, + [SMALL_STATE(1936)] = 51074, + [SMALL_STATE(1937)] = 51081, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -57946,2477 +57890,2475 @@ 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(830), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(830), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(918), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1266), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(674), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(636), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(836), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(919), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1255), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(659), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(652), [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(30), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(675), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1361), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(721), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1937), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1936), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(55), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1934), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(684), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1354), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(690), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1936), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1935), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(34), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1933), [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(693), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1933), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1932), [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1143), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(756), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(771), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(798), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(801), [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(16), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(238), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1164), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1927), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(572), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1177), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1923), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1920), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(234), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(144), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(197), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1152), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1926), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(570), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1155), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1922), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1919), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(204), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(172), [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(526), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(795), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(796), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1919), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(662), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(792), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(186), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(69), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(227), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1918), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(770), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(767), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1918), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(664), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(761), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(178), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(70), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(206), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1917), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1119), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(760), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(636), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(675), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1937), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1934), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1143), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(756), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(771), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1164), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(572), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1177), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1920), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1918), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1097), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(776), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(652), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(684), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1936), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1933), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1143), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(798), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(801), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1152), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(570), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1155), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1919), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1917), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(946), - [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(1266), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1195), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(951), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(919), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1255), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1319), [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(55), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(34), [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(693), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1933), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1932), [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(16), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(238), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1923), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1920), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(234), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(144), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(197), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1922), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1919), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(204), + [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(526), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(795), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(796), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1919), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(662), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(792), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(186), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(69), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(227), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(770), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(767), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1918), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(664), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(761), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(178), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(70), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(206), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), [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}}, REDUCE(sym_delay_alternative, 1), [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1119), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(760), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(636), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(755), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1937), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1934), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1471), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(756), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(771), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1470), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(572), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1177), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1920), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1918), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1097), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(776), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(652), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(780), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1936), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1933), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1470), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(798), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(801), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1469), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(570), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1155), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1919), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1917), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 83), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 83), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 50), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 50), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 113), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 113), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 114), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 114), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 84), - [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 84), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 49), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 49), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 50), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 50), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 86), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 86), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 2), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 2), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 13), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 13), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 72), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 72), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 14), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 14), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 15), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 15), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 2), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 2), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 29), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 29), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 69), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 69), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 85), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 85), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 107), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 107), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), - [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 18), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 18), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 84), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 84), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 83), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 83), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 118), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 118), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 98), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 98), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 86), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 86), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), - [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 = false}}, SHIFT(550), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 72), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 72), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 30), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 30), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 29), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 29), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 69), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 69), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 13), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 13), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [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_named_array_aggregate, 3), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [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_positional_array_aggregate, 7), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 86), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 86), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 72), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 72), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 113), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 113), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 86), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 86), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 2), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 2), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 83), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 83), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 114), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 114), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 84), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 84), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 50), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 50), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 18), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 18), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 85), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 85), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 29), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 29), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 69), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 69), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 13), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 13), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 107), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 107), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 84), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 84), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 15), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 15), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 14), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 14), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 72), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 72), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 69), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 69), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 13), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 13), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 29), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 29), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 30), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 30), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 98), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 98), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 118), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 118), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 49), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 49), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 50), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 50), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 83), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 83), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 2), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 2), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 17), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 17), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 16), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 16), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 17), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 17), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 16), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 16), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 3), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 3), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 3), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 3), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 3), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 3), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [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_entry_declaration, 5, .production_id = 28), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 28), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 3), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 3), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 28), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 28), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 3), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 3), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), [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_entry_declaration, 6, .production_id = 52), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 91), [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 91), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 3), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 3), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 51), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 110), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 110), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 3), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 3), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 3), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 3), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 60), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 60), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 60), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 20), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 20), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 51), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 60), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 60), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 3), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 3), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 60), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 110), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 110), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 3), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 3), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 20), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 20), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 20), [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 20), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 3), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 3), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 24), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 24), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [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_use_clause, 5, .production_id = 38), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 26), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 26), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(812), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(812), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 79), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 79), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 3), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 3), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 24), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 24), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 26), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 26), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(811), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(811), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 79), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 79), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [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__factor, 1, .production_id = 4), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 27), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 27), [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 27), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 27), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(816), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(816), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1923), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_component_choice_list, 1), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1562), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 12), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 12), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1897), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 19), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 4, .production_id = 35), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(235), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 3, .production_id = 22), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1166), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(760), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1934), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(775), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(799), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1927), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1177), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1920), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1720), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(806), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(806), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1922), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_component_choice_list, 1), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1561), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 12), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 12), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1896), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 19), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 4, .production_id = 35), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(209), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 3, .production_id = 22), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1275), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(776), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1933), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(760), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(750), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1926), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1155), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1919), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1718), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(760), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1934), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(775), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(799), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1857), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1177), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(760), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1934), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(775), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(799), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1927), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1177), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1920), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(271), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1166), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(636), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(930), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1823), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1920), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(791), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(781), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(784), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(776), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1933), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(760), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(750), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1926), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1155), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1919), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(776), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1933), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(760), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(750), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1856), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1155), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1275), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(652), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(944), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1822), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1919), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(264), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(752), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(753), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(771), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(194), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(193), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(258), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1006), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1006), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1266), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(760), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1934), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1927), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1177), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 19), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 19), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 19), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(191), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(207), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(254), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(964), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(964), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1255), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 19), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(776), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1933), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1926), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1155), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 19), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 19), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 2), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 2), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 2), [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1166), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(760), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 2), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 2), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 2), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 2), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1275), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(776), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 2), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1079), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1567), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1568), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1703), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(565), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1697), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 22), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), SHIFT(1516), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1802), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1693), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1727), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(618), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1920), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1202), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(191), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(213), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1490), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), SHIFT(140), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(750), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 23), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 23), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(96), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(236), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(759), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), - [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1193), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), - [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1100), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(682), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(623), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1760), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(219), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 23), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1133), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(690), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1193), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1537), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(727), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(228), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 2), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 2), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(616), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1071), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(101), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1193), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(154), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(253), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(105), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1897), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(958), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 19), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(663), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 23), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 22), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1562), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1165), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 23), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(102), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 19), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1153), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1460), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1233), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(254), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(700), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(114), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1300), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1102), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1566), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1567), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1696), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 22), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(564), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1700), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1801), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1692), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), SHIFT(1515), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1726), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1136), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(617), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1919), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 23), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1489), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), SHIFT(129), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(194), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(242), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(749), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(795), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(707), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1196), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(717), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1196), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 2), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 2), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 23), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 23), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(208), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(613), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1132), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(621), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(744), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1536), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(101), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(216), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(189), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1759), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(96), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1121), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1070), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1196), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1163), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 23), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(107), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(256), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(102), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1896), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(957), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(658), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 23), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 22), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1321), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1298), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 19), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1459), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1144), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(252), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(716), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(154), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1561), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(105), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 19), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 23), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1728), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 23), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(501), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 23), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1727), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 23), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(501), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 23), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 78), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 21), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 21), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 23), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 23), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 78), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 21), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 21), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 23), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5110] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5106] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), }; #ifdef __cplusplus diff --git a/test/corpus/access.txt b/test/corpus/access.txt index 9e5f7f4..dd296bb 100644 --- a/test/corpus/access.txt +++ b/test/corpus/access.txt @@ -65,21 +65,19 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement + (assignment_statement + (identifier) + (expression + (term + (selected_component + (identifier) + (identifier))))) + (procedure_call_statement + (selected_component (identifier) - (expression - (term - (selected_component - (identifier) - (identifier)))))) - (statement - (procedure_call_statement - (selected_component - (identifier) - (identifier)) - (actual_parameter_part - (parameter_association - (expression - (term - (numeric_literal))))))))))) + (identifier)) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal)))))))))) diff --git a/test/corpus/arrays.txt b/test/corpus/arrays.txt index 13137b9..e282357 100644 --- a/test/corpus/arrays.txt +++ b/test/corpus/arrays.txt @@ -224,27 +224,26 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement - (identifier) - (expression - (term - (named_array_aggregate - (array_component_association - (iterated_element_association - (loop_parameter_specification - (identifier) - (range_g - (term - (numeric_literal)) - (term - (identifier)))) - (expression + (assignment_statement + (identifier) + (expression + (term + (named_array_aggregate + (array_component_association + (iterated_element_association + (loop_parameter_specification + (identifier) + (range_g (term - (function_call - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (identifier))))))))))))))))))) + (numeric_literal)) + (term + (identifier)))) + (expression + (term + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (identifier)))))))))))))))))) diff --git a/test/corpus/attributes.txt b/test/corpus/attributes.txt index 6ec4746..fac0c05 100644 --- a/test/corpus/attributes.txt +++ b/test/corpus/attributes.txt @@ -33,31 +33,27 @@ end; (term (numeric_literal)))))))) (handled_sequence_of_statements - (statement - (loop_statement - (iteration_scheme - (loop_parameter_specification + (loop_statement + (iteration_scheme + (loop_parameter_specification + (identifier) + (range_g (identifier) - (range_g - (identifier) - (tick) - (range_attribute_designator)))) - (statement - (null_statement)))) - (statement - (loop_statement - (iteration_scheme - (loop_parameter_specification + (tick) + (range_attribute_designator)))) + (null_statement)) + (loop_statement + (iteration_scheme + (loop_parameter_specification + (identifier) + (range_g (identifier) - (range_g - (identifier) - (tick) - (range_attribute_designator - (expression - (term - (numeric_literal))))))) - (statement - (null_statement)))))))) + (tick) + (range_attribute_designator + (expression + (term + (numeric_literal))))))) + (null_statement)))))) ================================================================================ Reduction @@ -114,5 +110,4 @@ end; (term (numeric_literal))))))))) (handled_sequence_of_statements - (statement - (null_statement)))))) + (null_statement))))) diff --git a/test/corpus/packages.txt b/test/corpus/packages.txt index decfff3..4dcc65c 100644 --- a/test/corpus/packages.txt +++ b/test/corpus/packages.txt @@ -104,12 +104,10 @@ end Child.P2; (package_body (identifier) (handled_sequence_of_statements - (statement - (null_statement))) + (null_statement)) (identifier))) (handled_sequence_of_statements - (statement - (null_statement))) + (null_statement)) (selected_component (identifier) (identifier))))) diff --git a/test/corpus/protected.txt b/test/corpus/protected.txt index 2e6fa48..1ae988c 100644 --- a/test/corpus/protected.txt +++ b/test/corpus/protected.txt @@ -65,20 +65,18 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (abort_statement - (identifier))))) + (abort_statement + (identifier)))) (subprogram_body (function_specification (identifier) (result_profile (identifier))) (handled_sequence_of_statements - (statement - (simple_return_statement - (expression - (term - (identifier))))))) + (simple_return_statement + (expression + (term + (identifier)))))) (entry_body (identifier) (entry_barrier @@ -89,9 +87,8 @@ end; (term (numeric_literal)))) (handled_sequence_of_statements - (statement - (requeue_statement - (identifier)))) + (requeue_statement + (identifier))) (identifier)) (entry_body (identifier) @@ -108,7 +105,6 @@ end; (term (identifier)))) (handled_sequence_of_statements - (statement - (null_statement))) + (null_statement)) (identifier)) (identifier)))))) diff --git a/test/corpus/records.txt b/test/corpus/records.txt index 63230f8..bff91f8 100644 --- a/test/corpus/records.txt +++ b/test/corpus/records.txt @@ -275,23 +275,22 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement - (identifier) - (expression - (term - (record_aggregate - (record_component_association_list - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal))) - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal))))))))))))) + (assignment_statement + (identifier) + (expression + (term + (record_aggregate + (record_component_association_list + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal))) + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal)))))))))))) ================================================================================ record aggregate extension @@ -310,21 +309,20 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement - (identifier) - (expression - (term - (extension_aggregate + (assignment_statement + (identifier) + (expression + (term + (extension_aggregate + (expression + (term + (identifier))) + (record_component_association_list + (component_choice_list + (identifier)) (expression (term - (identifier))) - (record_component_association_list - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal))))))))))))) + (numeric_literal)))))))))))) ================================================================================ record delta aggregate @@ -343,18 +341,17 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement - (identifier) - (expression - (term - (record_delta_aggregate + (assignment_statement + (identifier) + (expression + (term + (record_delta_aggregate + (expression + (term + (identifier))) + (record_component_association_list + (component_choice_list + (identifier)) (expression (term - (identifier))) - (record_component_association_list - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal))))))))))))) + (numeric_literal)))))))))))) diff --git a/test/corpus/renames.txt b/test/corpus/renames.txt index eec1a9e..495923f 100644 --- a/test/corpus/renames.txt +++ b/test/corpus/renames.txt @@ -48,6 +48,5 @@ end P; (identifier) (identifier))) (handled_sequence_of_statements - (statement - (null_statement))) + (null_statement)) (identifier)))) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index f78b812..0b8b28d 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -56,22 +56,19 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (loop_statement - (iteration_scheme - (expression - (term - (identifier)))) - (statement - (exit_statement)) - (statement - (exit_statement - (expression - (term - (identifier)) - (relational_operator) - (term - (numeric_literal))))))))))) + (loop_statement + (iteration_scheme + (expression + (term + (identifier)))) + (exit_statement) + (exit_statement + (expression + (term + (identifier)) + (relational_operator) + (term + (numeric_literal))))))))) ================================================================================ For loops @@ -98,33 +95,29 @@ end P; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (loop_statement - (iteration_scheme - (loop_parameter_specification - (identifier) - (range_g - (selected_component - (identifier) - (identifier)) - (tick) - (range_attribute_designator)))) - (statement - (goto_statement - (identifier))) - (label - (identifier)))) - (statement - (loop_statement - (iteration_scheme - (iterator_specification - (identifier) - (identifier))) - (statement - (delay_relative_statement - (expression - (term - (numeric_literal)))))))) + (loop_statement + (iteration_scheme + (loop_parameter_specification + (identifier) + (range_g + (selected_component + (identifier) + (identifier)) + (tick) + (range_attribute_designator)))) + (goto_statement + (identifier)) + (label + (identifier))) + (loop_statement + (iteration_scheme + (iterator_specification + (identifier) + (identifier))) + (delay_relative_statement + (expression + (term + (numeric_literal)))))) (identifier)))) ================================================================================ @@ -147,14 +140,12 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (loop_statement - (loop_label - (identifier)) - (statement - (exit_statement - (identifier))) - (identifier))))))) + (loop_statement + (loop_label + (identifier)) + (exit_statement + (identifier)) + (identifier)))))) ================================================================================ Return @@ -178,28 +169,25 @@ end F; (result_profile (identifier))) (handled_sequence_of_statements - (statement - (simple_return_statement + (simple_return_statement + (expression + (term + (identifier)))) + (extended_return_statement + (extended_return_object_declaration + (identifier) + (identifier) (expression (term - (identifier))))) - (statement - (extended_return_statement - (extended_return_object_declaration - (identifier) - (identifier) - (expression - (term - (record_aggregate - (record_component_association_list - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal)))))))) - (handled_sequence_of_statements - (statement - (null_statement)))))) + (record_aggregate + (record_component_association_list + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal)))))))) + (handled_sequence_of_statements + (null_statement)))) (identifier)))) ================================================================================ @@ -223,18 +211,17 @@ end P; (identifier) (identifier)))) (handled_sequence_of_statements - (statement - (procedure_call_statement - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (numeric_literal)))) - (parameter_association - (expression - (term - (identifier)))))))) + (procedure_call_statement + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal)))) + (parameter_association + (expression + (term + (identifier))))))) (identifier)))) ================================================================================ @@ -255,15 +242,13 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (raise_statement - (identifier))) - (statement - (raise_statement - (identifier) - (expression - (term - (string_literal))))))))) + (raise_statement + (identifier)) + (raise_statement + (identifier) + (expression + (term + (string_literal)))))))) ================================================================================ Function calls @@ -287,20 +272,19 @@ end; (identifier) (identifier))) (handled_sequence_of_statements - (statement - (assignment_statement - (identifier) - (expression - (term - (function_call - (identifier) - (actual_parameter_part - (parameter_association - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal)))))))))))))) + (assignment_statement + (identifier) + (expression + (term + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal))))))))))))) ================================================================================ if statement @@ -336,51 +320,43 @@ end P; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (if_statement + (if_statement + (expression + (term + (identifier)) + (relational_operator) + (term + (numeric_literal)) + (term + (identifier)) + (relational_operator) + (term + (numeric_literal))) + (block_statement + (handled_sequence_of_statements + (null_statement))) + (elsif_statement_item (expression (term (identifier)) (relational_operator) - (term - (numeric_literal)) - (term - (identifier)) - (relational_operator) (term (numeric_literal))) - (statement - (block_statement - (handled_sequence_of_statements - (statement - (null_statement))))) - (elsif_statement_item - (expression - (term - (identifier)) - (relational_operator) - (term - (numeric_literal))) - (statement - (block_statement - (non_empty_declarative_part - (object_declaration - (identifier) + (block_statement + (non_empty_declarative_part + (object_declaration + (identifier) + (identifier))) + (handled_sequence_of_statements + (null_statement) + (exception_handler + (exception_choice_list + (exception_choice (identifier))) - (handled_sequence_of_statements - (statement - (null_statement)) - (exception_handler - (exception_choice_list - (exception_choice - (identifier))) - (statement - (null_statement))))))) - (statement - (block_statement - (handled_sequence_of_statements - (statement - (null_statement)))))))) + (null_statement))))) + (block_statement + (handled_sequence_of_statements + (null_statement))))) (identifier)))) ================================================================================ @@ -405,41 +381,38 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (case_statement - (expression - (term - (function_call - (identifier) - (actual_parameter_part - (parameter_association - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal)))))))) - (case_statement_alternative - (discrete_choice_list - (discrete_choice - (range_g - (term - (character_literal)) - (term - (character_literal))))) - (statement - (null_statement))) - (case_statement_alternative - (discrete_choice_list - (discrete_choice - (expression - (term - (character_literal)))) - (discrete_choice - (expression - (term - (character_literal))))) - (statement - (null_statement))))))))) + (case_statement + (expression + (term + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal)))))))) + (case_statement_alternative + (discrete_choice_list + (discrete_choice + (range_g + (term + (character_literal)) + (term + (character_literal))))) + (null_statement)) + (case_statement_alternative + (discrete_choice_list + (discrete_choice + (expression + (term + (character_literal)))) + (discrete_choice + (expression + (term + (character_literal))))) + (null_statement))))))) ================================================================================ Allocators @@ -459,35 +432,33 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement - (identifier) - (expression - (term - (allocator - (identifier)))))) - (statement - (assignment_statement - (identifier) - (expression - (term - (allocator - (subpool_specification - (selected_component - (identifier) - (identifier))) - (qualified_expression + (assignment_statement + (identifier) + (expression + (term + (allocator + (identifier))))) + (assignment_statement + (identifier) + (expression + (term + (allocator + (subpool_specification + (selected_component (identifier) - (tick) - (expression - (term - (record_aggregate - (record_component_association_list - (component_choice_list - (identifier)) - (expression - (term - (numeric_literal))))))))))))))))) + (identifier))) + (qualified_expression + (identifier) + (tick) + (expression + (term + (record_aggregate + (record_component_association_list + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal)))))))))))))))) ================================================================================ Filtered for loops @@ -508,21 +479,19 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (loop_statement - (iteration_scheme - (iterator_specification - (identifier) - (identifier) - (iterator_filter - (expression - (term - (identifier)) - (relational_operator) - (term - (numeric_literal)))))) - (statement - (null_statement)))))))) + (loop_statement + (iteration_scheme + (iterator_specification + (identifier) + (identifier) + (iterator_filter + (expression + (term + (identifier)) + (relational_operator) + (term + (numeric_literal)))))) + (null_statement)))))) ================================================================================ Assignment target name @@ -542,40 +511,38 @@ end; (procedure_specification (identifier)) (handled_sequence_of_statements - (statement - (assignment_statement - (function_call - (selected_component + (assignment_statement + (function_call + (selected_component + (identifier) + (identifier)) + (actual_parameter_part + (parameter_association + (expression + (term + (identifier)))))) + (expression + (term + (target_name)) + (binary_adding_operator) + (term + (numeric_literal)))) + (assignment_statement + (function_call + (selected_component + (identifier) + (identifier)) + (actual_parameter_part + (parameter_association + (expression + (term + (identifier)))))) + (expression + (term + (function_call (identifier) - (identifier)) - (actual_parameter_part - (parameter_association - (expression - (term - (identifier)))))) - (expression - (term - (target_name)) - (binary_adding_operator) - (term - (numeric_literal))))) - (statement - (assignment_statement - (function_call - (selected_component - (identifier) - (identifier)) - (actual_parameter_part - (parameter_association - (expression - (term - (identifier)))))) - (expression - (term - (function_call - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (target_name)))))))))))))) + (actual_parameter_part + (parameter_association + (expression + (term + (target_name))))))))))))) diff --git a/test/corpus/subprograms.txt b/test/corpus/subprograms.txt index c542edf..5bcf88c 100644 --- a/test/corpus/subprograms.txt +++ b/test/corpus/subprograms.txt @@ -155,8 +155,7 @@ end; (identifier) (identifier))) (handled_sequence_of_statements - (statement - (null_statement))) + (null_statement)) (identifier)))))) ================================================================================ @@ -474,11 +473,10 @@ end "<"; (result_profile (identifier))) (handled_sequence_of_statements - (statement - (simple_return_statement - (expression - (term - (identifier)))))) + (simple_return_statement + (expression + (term + (identifier))))) (string_literal)))) ================================================================================ @@ -510,17 +508,16 @@ Subprogram and field access (compilation (compilation_unit - (statement - (assignment_statement - (identifier) - (expression - (term - (selected_component - (function_call - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (numeric_literal)))))) - (identifier)))))))) + (assignment_statement + (identifier) + (expression + (term + (selected_component + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal)))))) + (identifier))))))) diff --git a/test/corpus/tasking.txt b/test/corpus/tasking.txt index 433cc4c..658ef35 100644 --- a/test/corpus/tasking.txt +++ b/test/corpus/tasking.txt @@ -57,44 +57,39 @@ end P; (identifier) (identifier))) (handled_sequence_of_statements - (statement - (accept_statement - (identifier) - (formal_part - (parameter_specification - (identifier) - (identifier))) - (handled_sequence_of_statements - (statement - (null_statement))) - (identifier))) - (statement - (timed_entry_call - (entry_call_alternative - (procedure_call_statement - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (numeric_literal))))))) - (delay_alternative - (delay_relative_statement - (expression - (term - (numeric_literal))))))) - (statement - (conditional_entry_call - (entry_call_alternative - (procedure_call_statement - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (numeric_literal))))))) - (statement - (null_statement))))) + (accept_statement + (identifier) + (formal_part + (parameter_specification + (identifier) + (identifier))) + (handled_sequence_of_statements + (null_statement)) + (identifier)) + (timed_entry_call + (entry_call_alternative + (procedure_call_statement + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal))))))) + (delay_alternative + (delay_relative_statement + (expression + (term + (numeric_literal)))))) + (conditional_entry_call + (entry_call_alternative + (procedure_call_statement + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal))))))) + (null_statement))) (identifier))) (identifier)))) @@ -171,33 +166,27 @@ end; (task_body (identifier) (handled_sequence_of_statements - (statement - (asynchronous_select - (triggering_alternative - (procedure_call_statement - (function_call - (identifier) - (actual_parameter_part - (parameter_association - (expression - (term - (numeric_literal))))))) - (statement - (null_statement))) - (statement - (procedure_call_statement - (identifier)))))))))) + (asynchronous_select + (triggering_alternative + (procedure_call_statement + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal))))))) + (null_statement)) + (procedure_call_statement + (identifier)))))))) (compilation_unit - (statement - (null_statement))) + (null_statement)) (compilation_unit - (statement - (procedure_call_statement - (identifier)))) + (procedure_call_statement + (identifier))) (compilation_unit - (statement - (procedure_call_statement - (identifier))))) + (procedure_call_statement + (identifier)))) ================================================================================ Accept @@ -211,20 +200,18 @@ end Start; (compilation (compilation_unit - (statement - (accept_statement - (identifier) - (formal_part - (parameter_specification - (identifier) - (identifier)) - (parameter_specification - (identifier) - (identifier))) - (handled_sequence_of_statements - (statement - (null_statement))) - (identifier))))) + (accept_statement + (identifier) + (formal_part + (parameter_specification + (identifier) + (identifier)) + (parameter_specification + (identifier) + (identifier))) + (handled_sequence_of_statements + (null_statement)) + (identifier)))) ================================================================================ Select terminate @@ -240,11 +227,10 @@ end select; (compilation (compilation_unit - (statement - (selective_accept - (select_alternative - (accept_alternative - (accept_statement - (identifier)))) - (select_alternative - (terminate_alternative)))))) + (selective_accept + (select_alternative + (accept_alternative + (accept_statement + (identifier)))) + (select_alternative + (terminate_alternative)))))