diff --git a/grammar.js b/grammar.js index 00a7dce..31c3458 100644 --- a/grammar.js +++ b/grammar.js @@ -106,10 +106,6 @@ module.exports = grammar({ [$._name, $.package_body_stub], ], - inline: $ => [ - // To avoid conflicts - $.selected_component, - ], rules: { compilation: $ => repeat( @@ -145,13 +141,17 @@ module.exports = grammar({ $.string_literal, // name of an operator. However, in a number of // places using a string doesn't make sense. ), - selected_component: $ => seq( // RM 4.1.3 - $.identifier, + selected_component: $ => prec.left(seq( // RM 4.1.3 + field('prefix', $._name), seq( '.', - $._name, + field('selector_name', choice( + $.identifier, + $.character_literal, + $.string_literal, + )), ), - ), + )), target_name: $ => '@', // RM 5.2.1 _name_list: $ => prec.left(comma_separated_list_of($._name)), _defining_identifier_list: $ => comma_separated_list_of($.identifier), diff --git a/queries/highlights.scm b/queries/highlights.scm index 10479dd..1a4003f 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -98,6 +98,7 @@ (comment) @spell ;; spell-check comments (string_literal) @string (string_literal) @spell ;; spell-check strings +(character_literal) @string (identifier) @variable (numeric_literal) @number @@ -141,6 +142,7 @@ (range_constraint "range" @type.definition) (signed_integer_type_definition "range" @type.definition) (index_subtype_definition "range" @type.definition) +(private_type_declaration "is" @type.definition "private" @type.definition) ;; Gray the body of expression functions (expression_function_declaration diff --git a/queries/locals.scm b/queries/locals.scm index 5779d4a..a146015 100644 --- a/queries/locals.scm +++ b/queries/locals.scm @@ -2,9 +2,11 @@ ;; references. However, this is not yet supported by neovim ;; See https://tree-sitter.github.io/tree-sitter/syntax-highlighting#local-variables +(compilation) @scope (package_specification) @scope -(procedure_specification) @scope -(function_specification) @scope +(package_body) @scope +(subprogram_declaration) @scope +(subprogram_body) @scope (block_statement) @scope (with_clause (identifier) @definition.import) diff --git a/src/grammar.json b/src/grammar.json index ad6e021..333c9e1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -181,26 +181,51 @@ ] }, "selected_component": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "prefix", + "content": { "type": "SYMBOL", "name": "_name" } - ] - } - ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "selector_name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "character_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + } + } + ] + } + ] + } }, "target_name": { "type": "STRING", @@ -14609,9 +14634,7 @@ ], "precedences": [], "externals": [], - "inline": [ - "selected_component" - ], + "inline": [], "supertypes": [] } diff --git a/src/node-types.json b/src/node-types.json index 25db3c7..03e8210 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -31,6 +31,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -98,10 +102,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -126,6 +126,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -172,10 +176,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -200,6 +200,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -340,6 +344,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -413,10 +421,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -441,6 +445,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -564,10 +572,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -592,6 +596,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -679,10 +687,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -707,6 +711,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -922,10 +930,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -950,6 +954,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -1237,10 +1245,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -1265,6 +1269,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -1330,10 +1338,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -1358,6 +1362,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -1600,10 +1608,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -1628,6 +1632,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -1699,6 +1707,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -1753,10 +1765,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -1781,6 +1789,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -1858,10 +1870,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -1886,6 +1894,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2091,10 +2103,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2119,6 +2127,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2189,10 +2201,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2217,6 +2225,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2302,10 +2314,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2330,6 +2338,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2387,10 +2399,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2415,6 +2423,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2504,10 +2516,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2532,6 +2540,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2584,10 +2596,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2612,6 +2620,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2746,10 +2758,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2774,6 +2782,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -2878,10 +2890,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -2906,6 +2914,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3000,10 +3012,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3028,6 +3036,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3130,10 +3142,6 @@ "type": ")", "named": false }, - { - "type": ".", - "named": false - }, { "type": "allocator", "named": true @@ -3218,6 +3226,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3240,10 +3252,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3268,6 +3276,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3298,10 +3310,6 @@ "type": ")", "named": false }, - { - "type": ".", - "named": false - }, { "type": "allocator", "named": true @@ -3386,6 +3394,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3498,10 +3510,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3526,6 +3534,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3652,10 +3664,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3680,6 +3688,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3727,6 +3739,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3769,10 +3785,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3797,6 +3809,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3877,10 +3893,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3905,6 +3917,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -3968,10 +3984,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -3996,6 +4008,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4165,10 +4181,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4193,6 +4205,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4231,10 +4247,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4259,6 +4271,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4345,10 +4361,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4373,6 +4385,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4395,10 +4411,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4423,6 +4435,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4484,10 +4500,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4512,6 +4524,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4534,10 +4550,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4562,6 +4574,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4584,10 +4600,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4612,6 +4624,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4634,10 +4650,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4662,6 +4674,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4750,10 +4766,6 @@ "type": ",", "named": false }, - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4778,6 +4790,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -4831,10 +4847,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -4859,6 +4871,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5037,10 +5053,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -5065,6 +5077,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5123,10 +5139,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -5151,6 +5163,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5203,6 +5219,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5299,10 +5319,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -5327,6 +5343,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5349,10 +5369,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -5377,6 +5393,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5490,10 +5510,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -5518,6 +5534,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -5936,10 +5956,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -5964,6 +5980,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6042,10 +6062,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6070,6 +6086,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6092,10 +6112,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6120,6 +6136,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6194,10 +6214,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6222,6 +6238,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6244,10 +6264,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6272,6 +6288,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6337,10 +6357,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6365,6 +6381,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6387,10 +6407,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6415,6 +6431,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6453,10 +6473,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6481,6 +6497,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6503,10 +6523,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6531,6 +6547,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6692,10 +6712,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6720,6 +6736,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6852,10 +6872,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -6880,6 +6896,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -6955,6 +6975,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7013,10 +7037,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7041,6 +7061,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7079,10 +7103,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7107,6 +7127,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7302,6 +7326,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7329,10 +7357,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7357,6 +7381,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7466,10 +7494,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7494,6 +7518,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7540,10 +7568,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7568,6 +7592,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7636,10 +7664,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7664,6 +7688,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7834,10 +7862,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7862,6 +7886,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -7884,10 +7912,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -7912,6 +7936,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8016,6 +8044,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8075,10 +8107,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8103,6 +8131,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8131,10 +8163,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8159,6 +8187,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8193,6 +8225,80 @@ ] } }, + { + "type": "selected_component", + "named": true, + "fields": { + "prefix": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_designator", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "qualified_expression", + "named": true + }, + { + "type": "reduction_attribute_designator", + "named": true + }, + { + "type": "selected_component", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "target_name", + "named": true + }, + { + "type": "tick", + "named": true + }, + { + "type": "value_sequence", + "named": true + } + ] + }, + "selector_name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "character_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + } + }, { "type": "selective_accept", "named": true, @@ -8298,6 +8404,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8353,6 +8463,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8487,10 +8601,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8515,6 +8625,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8543,10 +8657,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8571,6 +8681,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8698,10 +8812,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8726,6 +8836,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8754,10 +8868,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8782,6 +8892,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8832,10 +8946,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8860,6 +8970,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -8922,10 +9036,6 @@ "multiple": true, "required": true, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -8950,6 +9060,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -9120,6 +9234,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -9151,10 +9269,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ".", - "named": false - }, { "type": "attribute_designator", "named": true @@ -9179,6 +9293,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -9394,6 +9512,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true @@ -9549,6 +9671,10 @@ "type": "reduction_attribute_designator", "named": true }, + { + "type": "selected_component", + "named": true + }, { "type": "string_literal", "named": true diff --git a/src/parser.c b/src/parser.c index 536ebcf..f26962c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1929 -#define LARGE_STATE_COUNT 57 -#define SYMBOL_COUNT 435 +#define STATE_COUNT 1928 +#define LARGE_STATE_COUNT 71 +#define SYMBOL_COUNT 436 #define ALIAS_COUNT 0 #define TOKEN_COUNT 112 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 46 +#define FIELD_COUNT 47 #define MAX_ALIAS_SEQUENCE_LENGTH 14 -#define PRODUCTION_ID_COUNT 113 +#define PRODUCTION_ID_COUNT 114 enum { sym_identifier = 1, @@ -134,323 +134,324 @@ enum { sym_unary_adding_operator = 115, sym_multiplying_operator = 116, sym__name = 117, - sym__name_list = 118, - sym__defining_identifier_list = 119, - sym__attribute_reference = 120, - sym__reduction_attribute_reference = 121, - sym_reduction_attribute_designator = 122, - sym_reduction_specification = 123, - sym_value_sequence = 124, - sym_chunk_specification = 125, - sym_iterated_element_association = 126, - sym__discrete_subtype_definition = 127, - sym_loop_parameter_specification = 128, - sym__loop_parameter_subtype_indication = 129, - sym_iterator_filter = 130, - sym_iterator_specification = 131, - sym_attribute_designator = 132, - sym_function_call = 133, - sym_qualified_expression = 134, - sym_compilation_unit = 135, - sym__declarative_item = 136, - sym__basic_declarative_item = 137, - sym__basic_declaration = 138, - sym__package_declaration = 139, - sym_package_specification = 140, - sym_with_clause = 141, - sym_use_clause = 142, - sym_subunit = 143, - sym__proper_body = 144, - sym_subprogram_body = 145, - sym_package_body = 146, - sym__subtype_indication = 147, - sym__constraint = 148, - sym__scalar_constraint = 149, - sym_range_g = 150, - sym_range_attribute_designator = 151, - sym_range_constraint = 152, - sym_expression = 153, - sym__relation = 154, - sym_relation_membership = 155, - sym_raise_expression = 156, - sym_membership_choice_list = 157, - sym__membership_choice = 158, - sym__simple_expression = 159, - sym_term = 160, - sym__factor = 161, - sym_factor_power = 162, - sym_factor_abs = 163, - sym_factor_not = 164, - sym__parenthesized_expression = 165, - sym__primary = 166, - sym_primary_null = 167, - sym_allocator = 168, - sym__subtype_indication_paren_constraint = 169, - sym_subpool_specification = 170, - sym__access_type_definition = 171, - sym_access_to_subprogram_definition = 172, - sym_access_to_object_definition = 173, - sym_general_access_modifier = 174, - sym_access_definition = 175, - sym_actual_parameter_part = 176, - sym_parameter_association = 177, - sym__conditional_expression = 178, - sym__conditional_quantified_expression = 179, - sym_quantified_expression = 180, - sym_declare_expression = 181, - sym__declare_item = 182, - sym_quantifier = 183, - sym_case_expression = 184, - sym_case_expression_alternative = 185, - sym_component_choice_list = 186, - sym__aggregate = 187, - sym__delta_aggregate = 188, - sym_extension_aggregate = 189, - sym_record_delta_aggregate = 190, - sym_array_delta_aggregate = 191, - sym_record_aggregate = 192, - sym_record_component_association_list = 193, - sym__named_record_component_association = 194, - sym_null_exclusion = 195, - sym_index_constraint = 196, - sym_digits_constraint = 197, - sym_delta_constraint = 198, - sym__basic_declarative_item_pragma = 199, - sym__type_declaration = 200, - sym_full_type_declaration = 201, - sym_private_type_declaration = 202, - sym_private_extension_declaration = 203, - sym__discriminant_part = 204, - sym_unknown_discriminant_part = 205, - sym_known_discriminant_part = 206, - sym_incomplete_type_declaration = 207, - sym_discriminant_specification_list = 208, - sym_discriminant_specification = 209, - sym__type_definition = 210, - sym_array_type_definition = 211, - sym__discrete_subtype_definition_list = 212, - sym__discrete_range = 213, - sym__index_subtype_definition_list = 214, - sym_index_subtype_definition = 215, - sym_enumeration_type_definition = 216, - sym__enumeration_literal_list = 217, - sym__enumeration_literal_specification = 218, - sym__integer_type_definition = 219, - sym_modular_type_definition = 220, - sym__real_type_definition = 221, - sym_floating_point_definition = 222, - sym_real_range_specification = 223, - sym__fixed_point_definition = 224, - sym_decimal_fixed_point_definition = 225, - sym_ordinary_fixed_point_definition = 226, - sym_signed_integer_type_definition = 227, - sym_derived_type_definition = 228, - sym_interface_type_definition = 229, - sym__interface_list = 230, - sym_record_extension_part = 231, - sym_record_type_definition = 232, - sym_record_definition = 233, - sym_component_list = 234, - sym__component_item = 235, - sym_component_declaration = 236, - sym_component_definition = 237, - sym__array_aggregate = 238, - sym_positional_array_aggregate = 239, - sym_null_array_aggregate = 240, - sym_named_array_aggregate = 241, - sym__array_component_association_list = 242, - sym_array_component_association = 243, - sym_discrete_choice_list = 244, - sym_discrete_choice = 245, - sym_aspect_association = 246, - sym__aspect_clause = 247, - sym__aspect_definition = 248, - sym__aspect_mark = 249, - sym_aspect_mark_list = 250, - sym_aspect_specification = 251, - sym__assign_value = 252, - sym_at_clause = 253, - sym_attribute_definition_clause = 254, - sym_body_stub = 255, - sym_subprogram_body_stub = 256, - sym_package_body_stub = 257, - sym_task_body = 258, - sym_task_body_stub = 259, - sym__protected_operation_declaration = 260, - sym__protected_element_declaration = 261, - sym__protected_operation_item = 262, - sym_protected_definition = 263, - sym_protected_type_declaration = 264, - sym_single_protected_declaration = 265, - sym_protected_body = 266, - sym_protected_body_stub = 267, - sym_choice_parameter_specification = 268, - sym_component_clause = 269, - sym__declarative_item_pragma = 270, - sym_non_empty_declarative_part = 271, - sym_entry_declaration = 272, - sym_entry_body = 273, - sym_entry_barrier = 274, - sym_entry_index_specification = 275, - sym_enumeration_aggregate = 276, - sym_enumeration_representation_clause = 277, - sym_exception_choice_list = 278, - sym_exception_choice = 279, - sym_exception_declaration = 280, - sym_exception_handler = 281, - aux_sym__exception_handler_list = 282, - sym_formal_part = 283, - sym_function_specification = 284, - sym__generic_declaration = 285, - sym_generic_formal_part = 286, - sym__generic_formal_parameter_declaration = 287, - sym_generic_subprogram_declaration = 288, - sym_generic_package_declaration = 289, - sym_generic_instantiation = 290, - sym_formal_object_declaration = 291, - sym__formal_type_declaration = 292, - sym_formal_complete_type_declaration = 293, - sym_formal_incomplete_type_declaration = 294, - sym__formal_type_definition = 295, - sym_formal_private_type_definition = 296, - sym_formal_derived_type_definition = 297, - sym_formal_discrete_type_definition = 298, - sym_formal_signed_integer_type_definition = 299, - sym_formal_modular_type_definition = 300, - sym_formal_floating_point_definition = 301, - sym_formal_ordinary_fixed_point_definition = 302, - sym_formal_decimal_fixed_point_definition = 303, - sym_formal_array_type_definition = 304, - sym_formal_access_type_definition = 305, - sym_formal_interface_type_definition = 306, - sym_formal_subprogram_declaration = 307, - sym_formal_concrete_subprogram_declaration = 308, - sym_formal_abstract_subprogram_declaration = 309, - sym_subprogram_default = 310, - sym_formal_package_declaration = 311, - sym_global_aspect_definition = 312, - sym_global_aspect_element = 313, - sym_global_mode = 314, - sym_handled_sequence_of_statements = 315, - sym_loop_label = 316, - sym_label = 317, - sym_mod_clause = 318, - sym_non_empty_mode = 319, - sym_null_procedure_declaration = 320, - sym_null_statement = 321, - sym_number_declaration = 322, - sym_object_declaration = 323, - sym_single_task_declaration = 324, - sym_task_type_declaration = 325, - sym_non_empty_entry_body_formal_part = 326, - sym__task_item = 327, - sym_task_definition = 328, - sym_overriding_indicator = 329, - sym__parameter_and_result_profile = 330, - sym_parameter_specification = 331, - sym__parameter_specification_list = 332, - sym_pragma_g = 333, - sym_pragma_argument_association = 334, - sym_if_expression = 335, - sym_elsif_expression_item = 336, - sym_procedure_specification = 337, - sym_record_representation_clause = 338, - sym__renaming_declaration = 339, - sym_object_renaming_declaration = 340, - sym_exception_renaming_declaration = 341, - sym_package_renaming_declaration = 342, - sym_subprogram_renaming_declaration = 343, - sym_generic_renaming_declaration = 344, - sym_result_profile = 345, - sym__sequence_of_statements = 346, - sym__simple_statement = 347, - sym_statement = 348, - sym__compound_statement = 349, - sym__select_statement = 350, - sym_entry_call_alternative = 351, - sym_asynchronous_select = 352, - sym_triggering_alternative = 353, - sym_conditional_entry_call = 354, - sym_delay_alternative = 355, - sym_timed_entry_call = 356, - sym_guard = 357, - sym__guard_select = 358, - sym__select_alternative = 359, - sym_selective_accept = 360, - sym_abort_statement = 361, - sym_requeue_statement = 362, - sym_accept_statement = 363, - sym_case_statement_alternative = 364, - sym_case_statement = 365, - sym_block_statement = 366, - sym_if_statement = 367, - sym_elsif_statement_item = 368, - sym_exit_statement = 369, - sym_goto_statement = 370, - sym__delay_statement = 371, - sym_delay_until_statement = 372, - sym_delay_relative_statement = 373, - sym_simple_return_statement = 374, - sym_extended_return_statement = 375, - sym_extended_return_object_declaration = 376, - sym__return_subtype_indication = 377, - sym_procedure_call_statement = 378, - sym_raise_statement = 379, - sym_loop_statement = 380, - sym_iteration_scheme = 381, - sym_assignment_statement = 382, - sym_subprogram_declaration = 383, - sym_expression_function_declaration = 384, - sym__subprogram_specification = 385, - sym_subtype_declaration = 386, - sym_variant_part = 387, - sym_variant_list = 388, - sym_variant = 389, - aux_sym_compilation_repeat1 = 390, - aux_sym__name_list_repeat1 = 391, - aux_sym__defining_identifier_list_repeat1 = 392, - aux_sym_package_specification_repeat1 = 393, - aux_sym_expression_repeat1 = 394, - aux_sym_expression_repeat2 = 395, - aux_sym_expression_repeat3 = 396, - aux_sym_membership_choice_list_repeat1 = 397, - aux_sym__simple_expression_repeat1 = 398, - aux_sym_term_repeat1 = 399, - aux_sym_actual_parameter_part_repeat1 = 400, - aux_sym_declare_expression_repeat1 = 401, - aux_sym_case_expression_repeat1 = 402, - aux_sym_component_choice_list_repeat1 = 403, - aux_sym_record_component_association_list_repeat1 = 404, - aux_sym_record_component_association_list_repeat2 = 405, - aux_sym_index_constraint_repeat1 = 406, - aux_sym_discriminant_specification_list_repeat1 = 407, - aux_sym__discrete_subtype_definition_list_repeat1 = 408, - aux_sym__index_subtype_definition_list_repeat1 = 409, - aux_sym__enumeration_literal_list_repeat1 = 410, - aux_sym__interface_list_repeat1 = 411, - aux_sym_component_list_repeat1 = 412, - aux_sym_positional_array_aggregate_repeat1 = 413, - aux_sym__array_component_association_list_repeat1 = 414, - aux_sym_discrete_choice_list_repeat1 = 415, - aux_sym_aspect_mark_list_repeat1 = 416, - aux_sym_protected_definition_repeat1 = 417, - aux_sym_protected_definition_repeat2 = 418, - aux_sym_protected_body_repeat1 = 419, - aux_sym_non_empty_declarative_part_repeat1 = 420, - aux_sym_exception_choice_list_repeat1 = 421, - aux_sym_generic_formal_part_repeat1 = 422, - aux_sym_global_aspect_definition_repeat1 = 423, - aux_sym_task_definition_repeat1 = 424, - aux_sym__parameter_specification_list_repeat1 = 425, - aux_sym_pragma_g_repeat1 = 426, - aux_sym_if_expression_repeat1 = 427, - aux_sym_record_representation_clause_repeat1 = 428, - aux_sym__sequence_of_statements_repeat1 = 429, - aux_sym__sequence_of_statements_repeat2 = 430, - aux_sym_selective_accept_repeat1 = 431, - aux_sym_case_statement_repeat1 = 432, - aux_sym_if_statement_repeat1 = 433, - aux_sym_variant_list_repeat1 = 434, + sym_selected_component = 118, + sym__name_list = 119, + sym__defining_identifier_list = 120, + sym__attribute_reference = 121, + sym__reduction_attribute_reference = 122, + sym_reduction_attribute_designator = 123, + sym_reduction_specification = 124, + sym_value_sequence = 125, + sym_chunk_specification = 126, + sym_iterated_element_association = 127, + sym__discrete_subtype_definition = 128, + sym_loop_parameter_specification = 129, + sym__loop_parameter_subtype_indication = 130, + sym_iterator_filter = 131, + sym_iterator_specification = 132, + sym_attribute_designator = 133, + sym_function_call = 134, + sym_qualified_expression = 135, + sym_compilation_unit = 136, + sym__declarative_item = 137, + sym__basic_declarative_item = 138, + sym__basic_declaration = 139, + sym__package_declaration = 140, + sym_package_specification = 141, + sym_with_clause = 142, + sym_use_clause = 143, + sym_subunit = 144, + sym__proper_body = 145, + sym_subprogram_body = 146, + sym_package_body = 147, + sym__subtype_indication = 148, + sym__constraint = 149, + sym__scalar_constraint = 150, + sym_range_g = 151, + sym_range_attribute_designator = 152, + sym_range_constraint = 153, + sym_expression = 154, + sym__relation = 155, + sym_relation_membership = 156, + sym_raise_expression = 157, + sym_membership_choice_list = 158, + sym__membership_choice = 159, + sym__simple_expression = 160, + sym_term = 161, + sym__factor = 162, + sym_factor_power = 163, + sym_factor_abs = 164, + sym_factor_not = 165, + sym__parenthesized_expression = 166, + sym__primary = 167, + sym_primary_null = 168, + sym_allocator = 169, + sym__subtype_indication_paren_constraint = 170, + sym_subpool_specification = 171, + sym__access_type_definition = 172, + sym_access_to_subprogram_definition = 173, + sym_access_to_object_definition = 174, + sym_general_access_modifier = 175, + sym_access_definition = 176, + sym_actual_parameter_part = 177, + sym_parameter_association = 178, + sym__conditional_expression = 179, + sym__conditional_quantified_expression = 180, + sym_quantified_expression = 181, + sym_declare_expression = 182, + sym__declare_item = 183, + sym_quantifier = 184, + sym_case_expression = 185, + sym_case_expression_alternative = 186, + sym_component_choice_list = 187, + sym__aggregate = 188, + sym__delta_aggregate = 189, + sym_extension_aggregate = 190, + sym_record_delta_aggregate = 191, + sym_array_delta_aggregate = 192, + sym_record_aggregate = 193, + sym_record_component_association_list = 194, + sym__named_record_component_association = 195, + sym_null_exclusion = 196, + sym_index_constraint = 197, + sym_digits_constraint = 198, + sym_delta_constraint = 199, + sym__basic_declarative_item_pragma = 200, + sym__type_declaration = 201, + sym_full_type_declaration = 202, + sym_private_type_declaration = 203, + sym_private_extension_declaration = 204, + sym__discriminant_part = 205, + sym_unknown_discriminant_part = 206, + sym_known_discriminant_part = 207, + sym_incomplete_type_declaration = 208, + sym_discriminant_specification_list = 209, + sym_discriminant_specification = 210, + sym__type_definition = 211, + sym_array_type_definition = 212, + sym__discrete_subtype_definition_list = 213, + sym__discrete_range = 214, + sym__index_subtype_definition_list = 215, + sym_index_subtype_definition = 216, + sym_enumeration_type_definition = 217, + sym__enumeration_literal_list = 218, + sym__enumeration_literal_specification = 219, + sym__integer_type_definition = 220, + sym_modular_type_definition = 221, + sym__real_type_definition = 222, + sym_floating_point_definition = 223, + sym_real_range_specification = 224, + sym__fixed_point_definition = 225, + sym_decimal_fixed_point_definition = 226, + sym_ordinary_fixed_point_definition = 227, + sym_signed_integer_type_definition = 228, + sym_derived_type_definition = 229, + sym_interface_type_definition = 230, + sym__interface_list = 231, + sym_record_extension_part = 232, + sym_record_type_definition = 233, + sym_record_definition = 234, + sym_component_list = 235, + sym__component_item = 236, + sym_component_declaration = 237, + sym_component_definition = 238, + sym__array_aggregate = 239, + sym_positional_array_aggregate = 240, + sym_null_array_aggregate = 241, + sym_named_array_aggregate = 242, + sym__array_component_association_list = 243, + sym_array_component_association = 244, + sym_discrete_choice_list = 245, + sym_discrete_choice = 246, + sym_aspect_association = 247, + sym__aspect_clause = 248, + sym__aspect_definition = 249, + sym__aspect_mark = 250, + sym_aspect_mark_list = 251, + sym_aspect_specification = 252, + sym__assign_value = 253, + sym_at_clause = 254, + sym_attribute_definition_clause = 255, + sym_body_stub = 256, + sym_subprogram_body_stub = 257, + sym_package_body_stub = 258, + sym_task_body = 259, + sym_task_body_stub = 260, + sym__protected_operation_declaration = 261, + sym__protected_element_declaration = 262, + sym__protected_operation_item = 263, + sym_protected_definition = 264, + sym_protected_type_declaration = 265, + sym_single_protected_declaration = 266, + sym_protected_body = 267, + sym_protected_body_stub = 268, + sym_choice_parameter_specification = 269, + sym_component_clause = 270, + sym__declarative_item_pragma = 271, + sym_non_empty_declarative_part = 272, + sym_entry_declaration = 273, + sym_entry_body = 274, + sym_entry_barrier = 275, + sym_entry_index_specification = 276, + sym_enumeration_aggregate = 277, + sym_enumeration_representation_clause = 278, + sym_exception_choice_list = 279, + sym_exception_choice = 280, + sym_exception_declaration = 281, + sym_exception_handler = 282, + aux_sym__exception_handler_list = 283, + sym_formal_part = 284, + sym_function_specification = 285, + sym__generic_declaration = 286, + sym_generic_formal_part = 287, + sym__generic_formal_parameter_declaration = 288, + sym_generic_subprogram_declaration = 289, + sym_generic_package_declaration = 290, + sym_generic_instantiation = 291, + sym_formal_object_declaration = 292, + sym__formal_type_declaration = 293, + sym_formal_complete_type_declaration = 294, + sym_formal_incomplete_type_declaration = 295, + sym__formal_type_definition = 296, + sym_formal_private_type_definition = 297, + sym_formal_derived_type_definition = 298, + sym_formal_discrete_type_definition = 299, + sym_formal_signed_integer_type_definition = 300, + sym_formal_modular_type_definition = 301, + sym_formal_floating_point_definition = 302, + sym_formal_ordinary_fixed_point_definition = 303, + sym_formal_decimal_fixed_point_definition = 304, + sym_formal_array_type_definition = 305, + sym_formal_access_type_definition = 306, + sym_formal_interface_type_definition = 307, + sym_formal_subprogram_declaration = 308, + sym_formal_concrete_subprogram_declaration = 309, + sym_formal_abstract_subprogram_declaration = 310, + sym_subprogram_default = 311, + sym_formal_package_declaration = 312, + sym_global_aspect_definition = 313, + sym_global_aspect_element = 314, + sym_global_mode = 315, + sym_handled_sequence_of_statements = 316, + sym_loop_label = 317, + sym_label = 318, + sym_mod_clause = 319, + sym_non_empty_mode = 320, + sym_null_procedure_declaration = 321, + sym_null_statement = 322, + sym_number_declaration = 323, + sym_object_declaration = 324, + sym_single_task_declaration = 325, + sym_task_type_declaration = 326, + sym_non_empty_entry_body_formal_part = 327, + sym__task_item = 328, + sym_task_definition = 329, + sym_overriding_indicator = 330, + sym__parameter_and_result_profile = 331, + sym_parameter_specification = 332, + sym__parameter_specification_list = 333, + sym_pragma_g = 334, + sym_pragma_argument_association = 335, + sym_if_expression = 336, + sym_elsif_expression_item = 337, + sym_procedure_specification = 338, + sym_record_representation_clause = 339, + sym__renaming_declaration = 340, + sym_object_renaming_declaration = 341, + sym_exception_renaming_declaration = 342, + sym_package_renaming_declaration = 343, + sym_subprogram_renaming_declaration = 344, + sym_generic_renaming_declaration = 345, + sym_result_profile = 346, + sym__sequence_of_statements = 347, + sym__simple_statement = 348, + sym_statement = 349, + sym__compound_statement = 350, + sym__select_statement = 351, + sym_entry_call_alternative = 352, + sym_asynchronous_select = 353, + sym_triggering_alternative = 354, + sym_conditional_entry_call = 355, + sym_delay_alternative = 356, + sym_timed_entry_call = 357, + sym_guard = 358, + sym__guard_select = 359, + sym__select_alternative = 360, + sym_selective_accept = 361, + sym_abort_statement = 362, + sym_requeue_statement = 363, + sym_accept_statement = 364, + sym_case_statement_alternative = 365, + sym_case_statement = 366, + sym_block_statement = 367, + sym_if_statement = 368, + sym_elsif_statement_item = 369, + sym_exit_statement = 370, + sym_goto_statement = 371, + sym__delay_statement = 372, + sym_delay_until_statement = 373, + sym_delay_relative_statement = 374, + sym_simple_return_statement = 375, + sym_extended_return_statement = 376, + sym_extended_return_object_declaration = 377, + sym__return_subtype_indication = 378, + sym_procedure_call_statement = 379, + sym_raise_statement = 380, + sym_loop_statement = 381, + sym_iteration_scheme = 382, + sym_assignment_statement = 383, + sym_subprogram_declaration = 384, + sym_expression_function_declaration = 385, + sym__subprogram_specification = 386, + sym_subtype_declaration = 387, + sym_variant_part = 388, + sym_variant_list = 389, + sym_variant = 390, + aux_sym_compilation_repeat1 = 391, + aux_sym__name_list_repeat1 = 392, + aux_sym__defining_identifier_list_repeat1 = 393, + aux_sym_package_specification_repeat1 = 394, + aux_sym_expression_repeat1 = 395, + aux_sym_expression_repeat2 = 396, + aux_sym_expression_repeat3 = 397, + aux_sym_membership_choice_list_repeat1 = 398, + aux_sym__simple_expression_repeat1 = 399, + aux_sym_term_repeat1 = 400, + aux_sym_actual_parameter_part_repeat1 = 401, + aux_sym_declare_expression_repeat1 = 402, + aux_sym_case_expression_repeat1 = 403, + aux_sym_component_choice_list_repeat1 = 404, + aux_sym_record_component_association_list_repeat1 = 405, + aux_sym_record_component_association_list_repeat2 = 406, + aux_sym_index_constraint_repeat1 = 407, + aux_sym_discriminant_specification_list_repeat1 = 408, + aux_sym__discrete_subtype_definition_list_repeat1 = 409, + aux_sym__index_subtype_definition_list_repeat1 = 410, + aux_sym__enumeration_literal_list_repeat1 = 411, + aux_sym__interface_list_repeat1 = 412, + aux_sym_component_list_repeat1 = 413, + aux_sym_positional_array_aggregate_repeat1 = 414, + aux_sym__array_component_association_list_repeat1 = 415, + aux_sym_discrete_choice_list_repeat1 = 416, + aux_sym_aspect_mark_list_repeat1 = 417, + aux_sym_protected_definition_repeat1 = 418, + aux_sym_protected_definition_repeat2 = 419, + aux_sym_protected_body_repeat1 = 420, + aux_sym_non_empty_declarative_part_repeat1 = 421, + aux_sym_exception_choice_list_repeat1 = 422, + aux_sym_generic_formal_part_repeat1 = 423, + aux_sym_global_aspect_definition_repeat1 = 424, + aux_sym_task_definition_repeat1 = 425, + aux_sym__parameter_specification_list_repeat1 = 426, + aux_sym_pragma_g_repeat1 = 427, + aux_sym_if_expression_repeat1 = 428, + aux_sym_record_representation_clause_repeat1 = 429, + aux_sym__sequence_of_statements_repeat1 = 430, + aux_sym__sequence_of_statements_repeat2 = 431, + aux_sym_selective_accept_repeat1 = 432, + aux_sym_case_statement_repeat1 = 433, + aux_sym_if_statement_repeat1 = 434, + aux_sym_variant_list_repeat1 = 435, }; static const char * const ts_symbol_names[] = { @@ -572,6 +573,7 @@ static const char * const ts_symbol_names[] = { [sym_unary_adding_operator] = "unary_adding_operator", [sym_multiplying_operator] = "multiplying_operator", [sym__name] = "_name", + [sym_selected_component] = "selected_component", [sym__name_list] = "_name_list", [sym__defining_identifier_list] = "_defining_identifier_list", [sym__attribute_reference] = "_attribute_reference", @@ -1010,6 +1012,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_unary_adding_operator] = sym_unary_adding_operator, [sym_multiplying_operator] = sym_multiplying_operator, [sym__name] = sym__name, + [sym_selected_component] = sym_selected_component, [sym__name_list] = sym__name_list, [sym__defining_identifier_list] = sym__defining_identifier_list, [sym__attribute_reference] = sym__attribute_reference, @@ -1802,6 +1805,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_selected_component] = { + .visible = true, + .named = true, + }, [sym__name_list] = { .visible = false, .named = true, @@ -3113,12 +3120,13 @@ enum { field_prefix = 38, field_range_attribute_reference = 39, field_right = 40, - field_statement_identifier = 41, - field_statements = 42, - field_subpool_handle_name = 43, - field_subtype_mark = 44, - field_subtype_name = 45, - field_variable_name = 46, + field_selector_name = 41, + field_statement_identifier = 42, + field_statements = 43, + field_subpool_handle_name = 44, + field_subtype_mark = 45, + field_subtype_name = 46, + field_variable_name = 47, }; static const char * const ts_field_names[] = { @@ -3163,6 +3171,7 @@ static const char * const ts_field_names[] = { [field_prefix] = "prefix", [field_range_attribute_reference] = "range_attribute_reference", [field_right] = "right", + [field_selector_name] = "selector_name", [field_statement_identifier] = "statement_identifier", [field_statements] = "statements", [field_subpool_handle_name] = "subpool_handle_name", @@ -3187,103 +3196,104 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [13] = {.index = 13, .length = 1}, [14] = {.index = 14, .length = 1}, [15] = {.index = 15, .length = 1}, - [16] = {.index = 16, .length = 1}, - [17] = {.index = 17, .length = 1}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 1}, - [20] = {.index = 20, .length = 1}, - [21] = {.index = 21, .length = 1}, - [22] = {.index = 22, .length = 1}, - [23] = {.index = 23, .length = 1}, - [24] = {.index = 24, .length = 1}, - [25] = {.index = 25, .length = 4}, - [26] = {.index = 29, .length = 1}, - [27] = {.index = 30, .length = 1}, - [28] = {.index = 31, .length = 2}, + [16] = {.index = 16, .length = 2}, + [17] = {.index = 18, .length = 1}, + [18] = {.index = 19, .length = 1}, + [19] = {.index = 20, .length = 1}, + [20] = {.index = 21, .length = 1}, + [21] = {.index = 22, .length = 1}, + [22] = {.index = 23, .length = 1}, + [23] = {.index = 24, .length = 1}, + [24] = {.index = 25, .length = 1}, + [25] = {.index = 26, .length = 1}, + [26] = {.index = 27, .length = 4}, + [27] = {.index = 31, .length = 1}, + [28] = {.index = 32, .length = 1}, [29] = {.index = 33, .length = 2}, - [30] = {.index = 35, .length = 1}, - [31] = {.index = 36, .length = 1}, - [32] = {.index = 37, .length = 1}, - [33] = {.index = 38, .length = 1}, - [34] = {.index = 39, .length = 1}, - [35] = {.index = 40, .length = 2}, + [30] = {.index = 35, .length = 2}, + [31] = {.index = 37, .length = 1}, + [32] = {.index = 38, .length = 1}, + [33] = {.index = 39, .length = 1}, + [34] = {.index = 40, .length = 1}, + [35] = {.index = 41, .length = 1}, [36] = {.index = 42, .length = 2}, [37] = {.index = 44, .length = 2}, [38] = {.index = 46, .length = 2}, - [39] = {.index = 48, .length = 1}, - [40] = {.index = 49, .length = 1}, - [41] = {.index = 50, .length = 1}, - [42] = {.index = 51, .length = 3}, - [43] = {.index = 54, .length = 1}, - [44] = {.index = 55, .length = 1}, - [45] = {.index = 56, .length = 2}, + [39] = {.index = 48, .length = 2}, + [40] = {.index = 50, .length = 1}, + [41] = {.index = 51, .length = 1}, + [42] = {.index = 52, .length = 1}, + [43] = {.index = 53, .length = 3}, + [44] = {.index = 56, .length = 1}, + [45] = {.index = 57, .length = 1}, [46] = {.index = 58, .length = 2}, - [47] = {.index = 60, .length = 1}, - [48] = {.index = 61, .length = 2}, - [49] = {.index = 63, .length = 1}, - [50] = {.index = 64, .length = 2}, - [51] = {.index = 66, .length = 1}, - [52] = {.index = 67, .length = 1}, - [53] = {.index = 68, .length = 2}, - [54] = {.index = 70, .length = 1}, - [55] = {.index = 71, .length = 1}, - [56] = {.index = 72, .length = 2}, - [57] = {.index = 74, .length = 1}, - [58] = {.index = 75, .length = 2}, + [47] = {.index = 60, .length = 2}, + [48] = {.index = 62, .length = 1}, + [49] = {.index = 63, .length = 2}, + [50] = {.index = 65, .length = 1}, + [51] = {.index = 66, .length = 2}, + [52] = {.index = 68, .length = 1}, + [53] = {.index = 69, .length = 1}, + [54] = {.index = 70, .length = 2}, + [55] = {.index = 72, .length = 1}, + [56] = {.index = 73, .length = 1}, + [57] = {.index = 74, .length = 2}, + [58] = {.index = 76, .length = 1}, [59] = {.index = 77, .length = 2}, - [60] = {.index = 79, .length = 1}, - [61] = {.index = 80, .length = 2}, + [60] = {.index = 79, .length = 2}, + [61] = {.index = 81, .length = 1}, [62] = {.index = 82, .length = 2}, [63] = {.index = 84, .length = 2}, [64] = {.index = 86, .length = 2}, - [65] = {.index = 88, .length = 1}, - [66] = {.index = 89, .length = 1}, - [67] = {.index = 90, .length = 2}, + [65] = {.index = 88, .length = 2}, + [66] = {.index = 90, .length = 1}, + [67] = {.index = 91, .length = 1}, [68] = {.index = 92, .length = 2}, - [69] = {.index = 94, .length = 1}, - [70] = {.index = 95, .length = 2}, + [69] = {.index = 94, .length = 2}, + [70] = {.index = 96, .length = 1}, [71] = {.index = 97, .length = 2}, [72] = {.index = 99, .length = 2}, [73] = {.index = 101, .length = 2}, - [74] = {.index = 103, .length = 1}, - [75] = {.index = 104, .length = 1}, - [76] = {.index = 105, .length = 2}, + [74] = {.index = 103, .length = 2}, + [75] = {.index = 105, .length = 1}, + [76] = {.index = 106, .length = 1}, [77] = {.index = 107, .length = 2}, - [78] = {.index = 109, .length = 1}, - [79] = {.index = 110, .length = 2}, + [78] = {.index = 109, .length = 2}, + [79] = {.index = 111, .length = 1}, [80] = {.index = 112, .length = 2}, [81] = {.index = 114, .length = 2}, - [82] = {.index = 116, .length = 1}, - [83] = {.index = 117, .length = 2}, - [84] = {.index = 119, .length = 1}, - [85] = {.index = 120, .length = 1}, - [86] = {.index = 121, .length = 2}, + [82] = {.index = 116, .length = 2}, + [83] = {.index = 118, .length = 1}, + [84] = {.index = 119, .length = 2}, + [85] = {.index = 121, .length = 1}, + [86] = {.index = 122, .length = 1}, [87] = {.index = 123, .length = 2}, [88] = {.index = 125, .length = 2}, - [89] = {.index = 127, .length = 1}, - [90] = {.index = 128, .length = 1}, - [91] = {.index = 129, .length = 1}, - [92] = {.index = 130, .length = 1}, - [93] = {.index = 131, .length = 1}, - [94] = {.index = 132, .length = 2}, - [95] = {.index = 134, .length = 1}, - [96] = {.index = 135, .length = 2}, + [89] = {.index = 127, .length = 2}, + [90] = {.index = 129, .length = 1}, + [91] = {.index = 130, .length = 1}, + [92] = {.index = 131, .length = 1}, + [93] = {.index = 132, .length = 1}, + [94] = {.index = 133, .length = 1}, + [95] = {.index = 134, .length = 2}, + [96] = {.index = 136, .length = 1}, [97] = {.index = 137, .length = 2}, [98] = {.index = 139, .length = 2}, - [99] = {.index = 141, .length = 1}, - [100] = {.index = 142, .length = 1}, - [101] = {.index = 143, .length = 1}, - [102] = {.index = 144, .length = 3}, - [103] = {.index = 147, .length = 1}, - [104] = {.index = 148, .length = 2}, + [99] = {.index = 141, .length = 2}, + [100] = {.index = 143, .length = 1}, + [101] = {.index = 144, .length = 1}, + [102] = {.index = 145, .length = 1}, + [103] = {.index = 146, .length = 3}, + [104] = {.index = 149, .length = 1}, [105] = {.index = 150, .length = 2}, - [106] = {.index = 152, .length = 1}, - [107] = {.index = 153, .length = 1}, - [108] = {.index = 154, .length = 3}, - [109] = {.index = 157, .length = 1}, - [110] = {.index = 158, .length = 2}, - [111] = {.index = 160, .length = 1}, - [112] = {.index = 161, .length = 4}, + [106] = {.index = 152, .length = 2}, + [107] = {.index = 154, .length = 1}, + [108] = {.index = 155, .length = 1}, + [109] = {.index = 156, .length = 3}, + [110] = {.index = 159, .length = 1}, + [111] = {.index = 160, .length = 2}, + [112] = {.index = 162, .length = 1}, + [113] = {.index = 163, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3319,247 +3329,250 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [15] = {field_subtype_name, 0}, [16] = - {field_variable_name, 0}, - [17] = - {field_subtype_mark, 1}, + {field_prefix, 0}, + {field_selector_name, 2}, [18] = - {field_object_name, 2}, + {field_variable_name, 0}, [19] = - {field_is_parallel, 1}, + {field_subtype_mark, 1}, [20] = - {field_iterator_name, 2}, + {field_object_name, 2}, [21] = - {field_subtype_mark, 2, .inherited = true}, + {field_is_parallel, 1}, [22] = - {field_is_type, 1}, + {field_iterator_name, 2}, [23] = - {field_is_private, 0}, + {field_subtype_mark, 2, .inherited = true}, [24] = - {field_is_limited, 0}, + {field_is_type, 1}, [25] = + {field_is_private, 0}, + [26] = + {field_is_limited, 0}, + [27] = {field_left, 0}, {field_name, 0, .inherited = true}, {field_name, 2, .inherited = true}, {field_right, 2}, - [29] = - {field_parameter_profile, 2}, - [30] = - {field_condition, 2}, [31] = + {field_parameter_profile, 2}, + [32] = + {field_condition, 2}, + [33] = {field_name, 0}, {field_subtype_mark, 2, .inherited = true}, - [33] = + [35] = {field_is_abstract, 1}, {field_is_abstract, 2}, - [35] = - {field_callable_entity_name, 2}, - [36] = - {field_subtype_mark, 2}, [37] = - {field_iterator_name, 3}, + {field_callable_entity_name, 2}, [38] = - {field_subtype_mark, 3, .inherited = true}, + {field_subtype_mark, 2}, [39] = - {field_local_name, 1}, + {field_iterator_name, 3}, [40] = + {field_subtype_mark, 3, .inherited = true}, + [41] = + {field_local_name, 1}, + [42] = {field_is_all, 1}, {field_is_type, 2}, - [42] = + [44] = {field_endname, 4}, {field_name, 1}, - [44] = + [46] = {field_name, 1}, {field_package_name, 3}, - [46] = + [48] = {field_is_limited, 0}, {field_is_private, 1}, - [48] = - {field_subtype_mark, 1, .inherited = true}, - [49] = - {field_parent_unit_name, 2}, [50] = - {field_exception_name, 0}, + {field_subtype_mark, 1, .inherited = true}, [51] = + {field_parent_unit_name, 2}, + [52] = + {field_exception_name, 0}, + [53] = {field_prefix, 0}, {field_range_attribute_reference, 1}, {field_range_attribute_reference, 2}, - [54] = - {field_subpool_handle_name, 1}, - [55] = - {field_default_name, 0}, [56] = + {field_subpool_handle_name, 1}, + [57] = + {field_default_name, 0}, + [58] = {field_name, 0}, {field_subtype_mark, 2}, - [58] = + [60] = {field_condition, 3}, {field_loop_name, 1}, - [60] = + [62] = {field_statements, 1}, - [61] = + [63] = {field_name, 0}, {field_subtype_mark, 3, .inherited = true}, - [63] = + [65] = {field_parameter_profile, 3}, - [64] = + [66] = {field_is_abstract, 2}, {field_is_abstract, 3}, - [66] = - {field_callable_entity_name, 3}, - [67] = - {field_exception_name, 4}, [68] = - {field_object_name, 4}, - {field_subtype_mark, 2}, + {field_callable_entity_name, 3}, + [69] = + {field_exception_name, 4}, [70] = {field_object_name, 4}, - [71] = - {field_subtype_mark, 3}, + {field_subtype_mark, 2}, [72] = + {field_object_name, 4}, + [73] = + {field_subtype_mark, 3}, + [74] = {field_iterator_name, 4}, {field_subtype_mark, 2, .inherited = true}, - [74] = + [76] = {field_name, 2}, - [75] = - {field_endname, 5}, - {field_name, 1}, [77] = - {field_generic_name, 4}, + {field_endname, 5}, {field_name, 1}, [79] = + {field_generic_name, 4}, + {field_name, 1}, + [81] = {field_endname, 2}, - [80] = - {field_defining_program_unit_name, 2}, - {field_generic_package_name, 4}, [82] = {field_defining_program_unit_name, 2}, - {field_generic_procedure_name, 4}, + {field_generic_package_name, 4}, [84] = {field_defining_program_unit_name, 2}, - {field_generic_function_name, 4}, + {field_generic_procedure_name, 4}, [86] = + {field_defining_program_unit_name, 2}, + {field_generic_function_name, 4}, + [88] = {field_name, 0}, {field_subtype_mark, 3}, - [88] = - {field_subtype_mark, 4, .inherited = true}, - [89] = - {field_entry_index, 3}, [90] = + {field_subtype_mark, 4, .inherited = true}, + [91] = + {field_entry_index, 3}, + [92] = {field_subtype_mark, 0, .inherited = true}, {field_subtype_mark, 1, .inherited = true}, - [92] = + [94] = {field_name, 0}, {field_subtype_mark, 4, .inherited = true}, - [94] = + [96] = {field_statements, 2}, - [95] = + [97] = {field_object_name, 5}, {field_subtype_mark, 3}, - [97] = + [99] = {field_iterator_name, 5}, {field_subtype_mark, 2, .inherited = true}, - [99] = + [101] = {field_endname, 5}, {field_name, 2}, - [101] = + [103] = {field_endname, 6}, {field_name, 1}, - [103] = - {field_parameter_profile, 0}, - [104] = - {field_predicate, 4}, [105] = + {field_parameter_profile, 0}, + [106] = + {field_predicate, 4}, + [107] = {field_subtype_mark, 1, .inherited = true}, {field_subtype_mark, 2, .inherited = true}, - [107] = + [109] = {field_parameter_profile, 5}, {field_subtype_mark, 3, .inherited = true}, - [109] = + [111] = {field_default_subtype_mark, 4}, - [110] = + [112] = {field_name, 0}, {field_subtype_mark, 4}, - [112] = + [114] = {field_condition, 1}, {field_statements, 3}, - [114] = + [116] = {field_entry_index, 3}, {field_parameter_profile, 5}, - [116] = + [118] = {field_statements, 3}, - [117] = + [119] = {field_generic_name, 5}, {field_name, 2}, - [119] = - {field_endname, 5}, - [120] = - {field_global_set, 1}, [121] = + {field_endname, 5}, + [122] = + {field_global_set, 1}, + [123] = {field_end_local_name, 6}, {field_local_name, 1}, - [123] = + [125] = {field_endname, 6}, {field_name, 2}, - [125] = + [127] = {field_endname, 7}, {field_name, 1}, - [127] = - {field_subtype_mark, 4}, - [128] = - {field_endname, 4}, [129] = - {field_generic_package_name, 5}, + {field_subtype_mark, 4}, [130] = - {field_default_subtype_mark, 5}, + {field_endname, 4}, [131] = - {field_abortable_part, 4}, + {field_generic_package_name, 5}, [132] = + {field_default_subtype_mark, 5}, + [133] = + {field_abortable_part, 4}, + [134] = {field_parameter_profile, 6}, {field_subtype_mark, 4, .inherited = true}, - [134] = + [136] = {field_endname, 6}, - [135] = + [137] = {field_end_local_name, 7}, {field_local_name, 1}, - [137] = + [139] = {field_endname, 7}, {field_name, 2}, - [139] = + [141] = {field_endname, 8}, {field_name, 1}, - [141] = - {field_subtype_mark, 5, .inherited = true}, - [142] = - {field_subtype_mark, 5}, [143] = - {field_default_subtype_mark, 6}, + {field_subtype_mark, 5, .inherited = true}, [144] = + {field_subtype_mark, 5}, + [145] = + {field_default_subtype_mark, 6}, + [146] = {field_condition, 1}, {field_else_statements, 5}, {field_statements, 3}, - [147] = + [149] = {field_endname, 7}, - [148] = + [150] = {field_end_local_name, 8}, {field_local_name, 1}, - [150] = + [152] = {field_endname, 8}, {field_name, 2}, - [152] = - {field_subtype_mark, 6, .inherited = true}, - [153] = - {field_default_subtype_mark, 7}, [154] = + {field_subtype_mark, 6, .inherited = true}, + [155] = + {field_default_subtype_mark, 7}, + [156] = {field_condition, 1}, {field_else_statements, 6}, {field_statements, 3}, - [157] = + [159] = {field_endname, 8}, - [158] = + [160] = {field_endname, 9}, {field_name, 2}, - [160] = + [162] = {field_subtype_mark, 7, .inherited = true}, - [161] = + [163] = {field_first_bit, 4}, {field_last_bit, 6}, {field_local_name, 0}, @@ -3625,9 +3638,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 50, + [50] = 24, [51] = 51, - [52] = 25, + [52] = 52, [53] = 53, [54] = 54, [55] = 55, @@ -4089,8 +4102,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [511] = 511, [512] = 512, [513] = 513, - [514] = 514, - [515] = 514, + [514] = 513, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, @@ -4118,13 +4131,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [540] = 540, [541] = 541, [542] = 542, - [543] = 543, + [543] = 492, [544] = 544, [545] = 545, [546] = 546, [547] = 547, [548] = 548, - [549] = 499, + [549] = 549, [550] = 550, [551] = 551, [552] = 552, @@ -4484,7 +4497,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [906] = 906, [907] = 907, [908] = 908, - [909] = 909, + [909] = 902, [910] = 910, [911] = 911, [912] = 912, @@ -4500,7 +4513,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [922] = 922, [923] = 923, [924] = 924, - [925] = 914, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, @@ -4762,7 +4775,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1184] = 1184, [1185] = 1185, [1186] = 1186, - [1187] = 1143, + [1187] = 1187, [1188] = 1188, [1189] = 1189, [1190] = 1190, @@ -4896,7 +4909,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1321, + [1321] = 1318, [1322] = 1322, [1323] = 1323, [1324] = 1324, @@ -5503,7 +5516,6 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1925] = 1925, [1926] = 1926, [1927] = 1927, - [1928] = 1928, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7500,10 +7512,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [177] = {.lex_state = 26}, [178] = {.lex_state = 26}, [179] = {.lex_state = 26}, - [180] = {.lex_state = 10}, + [180] = {.lex_state = 26}, [181] = {.lex_state = 26}, [182] = {.lex_state = 26}, - [183] = {.lex_state = 10}, + [183] = {.lex_state = 26}, [184] = {.lex_state = 26}, [185] = {.lex_state = 26}, [186] = {.lex_state = 26}, @@ -7512,66 +7524,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [189] = {.lex_state = 26}, [190] = {.lex_state = 10}, [191] = {.lex_state = 26}, - [192] = {.lex_state = 10}, + [192] = {.lex_state = 26}, [193] = {.lex_state = 26}, [194] = {.lex_state = 26}, [195] = {.lex_state = 26}, - [196] = {.lex_state = 10}, + [196] = {.lex_state = 26}, [197] = {.lex_state = 26}, [198] = {.lex_state = 26}, - [199] = {.lex_state = 10}, - [200] = {.lex_state = 26}, + [199] = {.lex_state = 26}, + [200] = {.lex_state = 10}, [201] = {.lex_state = 26}, [202] = {.lex_state = 26}, [203] = {.lex_state = 26}, - [204] = {.lex_state = 26}, + [204] = {.lex_state = 10}, [205] = {.lex_state = 26}, [206] = {.lex_state = 10}, - [207] = {.lex_state = 26}, - [208] = {.lex_state = 26}, - [209] = {.lex_state = 26}, + [207] = {.lex_state = 10}, + [208] = {.lex_state = 10}, + [209] = {.lex_state = 10}, [210] = {.lex_state = 26}, - [211] = {.lex_state = 26}, + [211] = {.lex_state = 10}, [212] = {.lex_state = 26}, - [213] = {.lex_state = 26}, + [213] = {.lex_state = 10}, [214] = {.lex_state = 26}, - [215] = {.lex_state = 10}, - [216] = {.lex_state = 10}, + [215] = {.lex_state = 26}, + [216] = {.lex_state = 26}, [217] = {.lex_state = 26}, - [218] = {.lex_state = 10}, - [219] = {.lex_state = 26}, - [220] = {.lex_state = 26}, - [221] = {.lex_state = 26}, - [222] = {.lex_state = 10}, + [218] = {.lex_state = 26}, + [219] = {.lex_state = 10}, + [220] = {.lex_state = 10}, + [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}, + [226] = {.lex_state = 26}, + [227] = {.lex_state = 10}, + [228] = {.lex_state = 26}, + [229] = {.lex_state = 10}, [230] = {.lex_state = 10}, [231] = {.lex_state = 26}, [232] = {.lex_state = 26}, - [233] = {.lex_state = 10}, - [234] = {.lex_state = 10}, - [235] = {.lex_state = 10}, - [236] = {.lex_state = 10}, - [237] = {.lex_state = 26}, - [238] = {.lex_state = 10}, + [233] = {.lex_state = 26}, + [234] = {.lex_state = 26}, + [235] = {.lex_state = 26}, + [236] = {.lex_state = 26}, + [237] = {.lex_state = 10}, + [238] = {.lex_state = 26}, [239] = {.lex_state = 26}, [240] = {.lex_state = 26}, [241] = {.lex_state = 10}, - [242] = {.lex_state = 26}, - [243] = {.lex_state = 26}, - [244] = {.lex_state = 26}, + [242] = {.lex_state = 10}, + [243] = {.lex_state = 10}, + [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}, + [249] = {.lex_state = 26}, [250] = {.lex_state = 26}, - [251] = {.lex_state = 10}, + [251] = {.lex_state = 26}, [252] = {.lex_state = 26}, [253] = {.lex_state = 26}, [254] = {.lex_state = 26}, @@ -7579,21 +7591,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [256] = {.lex_state = 26}, [257] = {.lex_state = 26}, [258] = {.lex_state = 26}, - [259] = {.lex_state = 26}, + [259] = {.lex_state = 10}, [260] = {.lex_state = 26}, - [261] = {.lex_state = 10}, - [262] = {.lex_state = 26}, + [261] = {.lex_state = 26}, + [262] = {.lex_state = 10}, [263] = {.lex_state = 26}, [264] = {.lex_state = 26}, [265] = {.lex_state = 26}, - [266] = {.lex_state = 10}, + [266] = {.lex_state = 26}, [267] = {.lex_state = 26}, [268] = {.lex_state = 26}, [269] = {.lex_state = 26}, [270] = {.lex_state = 26}, [271] = {.lex_state = 26}, [272] = {.lex_state = 26}, - [273] = {.lex_state = 26}, + [273] = {.lex_state = 10}, [274] = {.lex_state = 26}, [275] = {.lex_state = 26}, [276] = {.lex_state = 26}, @@ -7614,7 +7626,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [291] = {.lex_state = 26}, [292] = {.lex_state = 26}, [293] = {.lex_state = 26}, - [294] = {.lex_state = 10}, + [294] = {.lex_state = 26}, [295] = {.lex_state = 26}, [296] = {.lex_state = 26}, [297] = {.lex_state = 26}, @@ -7799,11 +7811,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [476] = {.lex_state = 26}, [477] = {.lex_state = 26}, [478] = {.lex_state = 26}, - [479] = {.lex_state = 10}, - [480] = {.lex_state = 10}, - [481] = {.lex_state = 26}, - [482] = {.lex_state = 26}, - [483] = {.lex_state = 26}, + [479] = {.lex_state = 26}, + [480] = {.lex_state = 26}, + [481] = {.lex_state = 10}, + [482] = {.lex_state = 10}, + [483] = {.lex_state = 10}, [484] = {.lex_state = 10}, [485] = {.lex_state = 10}, [486] = {.lex_state = 10}, @@ -7814,45 +7826,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 10}, [492] = {.lex_state = 10}, [493] = {.lex_state = 10}, - [494] = {.lex_state = 10}, + [494] = {.lex_state = 26}, [495] = {.lex_state = 10}, - [496] = {.lex_state = 26}, + [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 = 11}, + [501] = {.lex_state = 26}, [502] = {.lex_state = 11}, [503] = {.lex_state = 11}, - [504] = {.lex_state = 26}, + [504] = {.lex_state = 11}, [505] = {.lex_state = 26}, [506] = {.lex_state = 11}, [507] = {.lex_state = 11}, [508] = {.lex_state = 26}, [509] = {.lex_state = 26}, - [510] = {.lex_state = 26}, - [511] = {.lex_state = 11}, + [510] = {.lex_state = 11}, + [511] = {.lex_state = 10}, [512] = {.lex_state = 26}, [513] = {.lex_state = 10}, [514] = {.lex_state = 10}, - [515] = {.lex_state = 10}, + [515] = {.lex_state = 26}, [516] = {.lex_state = 26}, - [517] = {.lex_state = 10}, - [518] = {.lex_state = 7}, - [519] = {.lex_state = 26}, - [520] = {.lex_state = 11}, + [517] = {.lex_state = 26}, + [518] = {.lex_state = 26}, + [519] = {.lex_state = 7}, + [520] = {.lex_state = 26}, [521] = {.lex_state = 10}, - [522] = {.lex_state = 26}, - [523] = {.lex_state = 26}, - [524] = {.lex_state = 26}, - [525] = {.lex_state = 11}, - [526] = {.lex_state = 26}, + [522] = {.lex_state = 10}, + [523] = {.lex_state = 11}, + [524] = {.lex_state = 11}, + [525] = {.lex_state = 10}, + [526] = {.lex_state = 10}, [527] = {.lex_state = 10}, - [528] = {.lex_state = 10}, + [528] = {.lex_state = 26}, [529] = {.lex_state = 26}, [530] = {.lex_state = 26}, [531] = {.lex_state = 26}, - [532] = {.lex_state = 10}, + [532] = {.lex_state = 26}, [533] = {.lex_state = 26}, [534] = {.lex_state = 26}, [535] = {.lex_state = 10}, @@ -7860,24 +7872,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 26}, [538] = {.lex_state = 26}, [539] = {.lex_state = 26}, - [540] = {.lex_state = 10}, + [540] = {.lex_state = 26}, [541] = {.lex_state = 26}, [542] = {.lex_state = 26}, - [543] = {.lex_state = 26}, + [543] = {.lex_state = 10}, [544] = {.lex_state = 26}, - [545] = {.lex_state = 26}, - [546] = {.lex_state = 26}, + [545] = {.lex_state = 11}, + [546] = {.lex_state = 10}, [547] = {.lex_state = 26}, - [548] = {.lex_state = 26}, - [549] = {.lex_state = 10}, + [548] = {.lex_state = 10}, + [549] = {.lex_state = 26}, [550] = {.lex_state = 26}, [551] = {.lex_state = 26}, [552] = {.lex_state = 26}, - [553] = {.lex_state = 11}, + [553] = {.lex_state = 26}, [554] = {.lex_state = 26}, [555] = {.lex_state = 26}, [556] = {.lex_state = 26}, - [557] = {.lex_state = 10}, + [557] = {.lex_state = 26}, [558] = {.lex_state = 26}, [559] = {.lex_state = 26}, [560] = {.lex_state = 26}, @@ -7888,11 +7900,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 26}, [566] = {.lex_state = 26}, [567] = {.lex_state = 26}, - [568] = {.lex_state = 26}, + [568] = {.lex_state = 11}, [569] = {.lex_state = 26}, [570] = {.lex_state = 26}, [571] = {.lex_state = 26}, - [572] = {.lex_state = 11}, + [572] = {.lex_state = 26}, [573] = {.lex_state = 26}, [574] = {.lex_state = 26}, [575] = {.lex_state = 26}, @@ -7904,8 +7916,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 26}, [582] = {.lex_state = 26}, [583] = {.lex_state = 26}, - [584] = {.lex_state = 26}, - [585] = {.lex_state = 11}, + [584] = {.lex_state = 11}, + [585] = {.lex_state = 26}, [586] = {.lex_state = 26}, [587] = {.lex_state = 26}, [588] = {.lex_state = 26}, @@ -7977,35 +7989,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [654] = {.lex_state = 26}, [655] = {.lex_state = 26}, [656] = {.lex_state = 26}, - [657] = {.lex_state = 26}, + [657] = {.lex_state = 11}, [658] = {.lex_state = 26}, [659] = {.lex_state = 26}, - [660] = {.lex_state = 26}, + [660] = {.lex_state = 11}, [661] = {.lex_state = 26}, [662] = {.lex_state = 26}, [663] = {.lex_state = 26}, [664] = {.lex_state = 26}, - [665] = {.lex_state = 26}, + [665] = {.lex_state = 11}, [666] = {.lex_state = 26}, [667] = {.lex_state = 26}, - [668] = {.lex_state = 0}, - [669] = {.lex_state = 10}, + [668] = {.lex_state = 26}, + [669] = {.lex_state = 11}, [670] = {.lex_state = 26}, [671] = {.lex_state = 11}, - [672] = {.lex_state = 11}, - [673] = {.lex_state = 11}, + [672] = {.lex_state = 26}, + [673] = {.lex_state = 26}, [674] = {.lex_state = 26}, - [675] = {.lex_state = 11}, + [675] = {.lex_state = 26}, [676] = {.lex_state = 26}, [677] = {.lex_state = 26}, [678] = {.lex_state = 26}, [679] = {.lex_state = 26}, - [680] = {.lex_state = 0}, - [681] = {.lex_state = 11}, + [680] = {.lex_state = 26}, + [681] = {.lex_state = 26}, [682] = {.lex_state = 26}, [683] = {.lex_state = 26}, [684] = {.lex_state = 26}, - [685] = {.lex_state = 26}, + [685] = {.lex_state = 0}, [686] = {.lex_state = 26}, [687] = {.lex_state = 26}, [688] = {.lex_state = 26}, @@ -8033,7 +8045,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 26}, [711] = {.lex_state = 26}, [712] = {.lex_state = 26}, - [713] = {.lex_state = 26}, + [713] = {.lex_state = 10}, [714] = {.lex_state = 26}, [715] = {.lex_state = 26}, [716] = {.lex_state = 26}, @@ -8045,7 +8057,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [722] = {.lex_state = 26}, [723] = {.lex_state = 26}, [724] = {.lex_state = 26}, - [725] = {.lex_state = 26}, + [725] = {.lex_state = 0}, [726] = {.lex_state = 26}, [727] = {.lex_state = 26}, [728] = {.lex_state = 26}, @@ -8132,50 +8144,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [809] = {.lex_state = 26}, [810] = {.lex_state = 26}, [811] = {.lex_state = 26}, - [812] = {.lex_state = 26}, + [812] = {.lex_state = 11}, [813] = {.lex_state = 26}, [814] = {.lex_state = 26}, - [815] = {.lex_state = 26}, + [815] = {.lex_state = 11}, [816] = {.lex_state = 26}, - [817] = {.lex_state = 26}, + [817] = {.lex_state = 11}, [818] = {.lex_state = 26}, [819] = {.lex_state = 26}, [820] = {.lex_state = 11}, - [821] = {.lex_state = 11}, + [821] = {.lex_state = 26}, [822] = {.lex_state = 11}, [823] = {.lex_state = 11}, [824] = {.lex_state = 11}, - [825] = {.lex_state = 26}, + [825] = {.lex_state = 11}, [826] = {.lex_state = 11}, - [827] = {.lex_state = 26}, - [828] = {.lex_state = 26}, - [829] = {.lex_state = 26}, - [830] = {.lex_state = 26}, - [831] = {.lex_state = 26}, - [832] = {.lex_state = 26}, + [827] = {.lex_state = 11}, + [828] = {.lex_state = 11}, + [829] = {.lex_state = 11}, + [830] = {.lex_state = 11}, + [831] = {.lex_state = 11}, + [832] = {.lex_state = 11}, [833] = {.lex_state = 11}, - [834] = {.lex_state = 26}, - [835] = {.lex_state = 26}, - [836] = {.lex_state = 26}, - [837] = {.lex_state = 11}, + [834] = {.lex_state = 11}, + [835] = {.lex_state = 11}, + [836] = {.lex_state = 11}, + [837] = {.lex_state = 26}, [838] = {.lex_state = 26}, [839] = {.lex_state = 26}, [840] = {.lex_state = 26}, [841] = {.lex_state = 26}, [842] = {.lex_state = 26}, [843] = {.lex_state = 26}, - [844] = {.lex_state = 11}, - [845] = {.lex_state = 11}, + [844] = {.lex_state = 26}, + [845] = {.lex_state = 26}, [846] = {.lex_state = 26}, - [847] = {.lex_state = 11}, - [848] = {.lex_state = 11}, - [849] = {.lex_state = 11}, + [847] = {.lex_state = 26}, + [848] = {.lex_state = 26}, + [849] = {.lex_state = 26}, [850] = {.lex_state = 26}, [851] = {.lex_state = 26}, - [852] = {.lex_state = 26}, + [852] = {.lex_state = 11}, [853] = {.lex_state = 26}, - [854] = {.lex_state = 11}, - [855] = {.lex_state = 11}, + [854] = {.lex_state = 26}, + [855] = {.lex_state = 26}, [856] = {.lex_state = 26}, [857] = {.lex_state = 26}, [858] = {.lex_state = 26}, @@ -8183,107 +8195,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [860] = {.lex_state = 26}, [861] = {.lex_state = 26}, [862] = {.lex_state = 26}, - [863] = {.lex_state = 11}, + [863] = {.lex_state = 26}, [864] = {.lex_state = 26}, [865] = {.lex_state = 26}, - [866] = {.lex_state = 11}, + [866] = {.lex_state = 26}, [867] = {.lex_state = 26}, [868] = {.lex_state = 26}, [869] = {.lex_state = 11}, - [870] = {.lex_state = 26}, - [871] = {.lex_state = 26}, + [870] = {.lex_state = 11}, + [871] = {.lex_state = 11}, [872] = {.lex_state = 26}, - [873] = {.lex_state = 26}, + [873] = {.lex_state = 10}, [874] = {.lex_state = 26}, [875] = {.lex_state = 26}, [876] = {.lex_state = 26}, [877] = {.lex_state = 26}, - [878] = {.lex_state = 26}, - [879] = {.lex_state = 11}, + [878] = {.lex_state = 10}, + [879] = {.lex_state = 26}, [880] = {.lex_state = 26}, [881] = {.lex_state = 11}, [882] = {.lex_state = 26}, [883] = {.lex_state = 11}, - [884] = {.lex_state = 11}, - [885] = {.lex_state = 10}, + [884] = {.lex_state = 26}, + [885] = {.lex_state = 26}, [886] = {.lex_state = 11}, - [887] = {.lex_state = 11}, + [887] = {.lex_state = 26}, [888] = {.lex_state = 26}, - [889] = {.lex_state = 10}, - [890] = {.lex_state = 26}, - [891] = {.lex_state = 26}, + [889] = {.lex_state = 11}, + [890] = {.lex_state = 11}, + [891] = {.lex_state = 10}, [892] = {.lex_state = 11}, - [893] = {.lex_state = 26}, + [893] = {.lex_state = 11}, [894] = {.lex_state = 26}, [895] = {.lex_state = 11}, [896] = {.lex_state = 11}, - [897] = {.lex_state = 26}, + [897] = {.lex_state = 11}, [898] = {.lex_state = 11}, - [899] = {.lex_state = 26}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 26}, - [902] = {.lex_state = 11}, + [899] = {.lex_state = 11}, + [900] = {.lex_state = 26}, + [901] = {.lex_state = 11}, + [902] = {.lex_state = 0}, [903] = {.lex_state = 11}, - [904] = {.lex_state = 26}, - [905] = {.lex_state = 11}, + [904] = {.lex_state = 11}, + [905] = {.lex_state = 26}, [906] = {.lex_state = 26}, - [907] = {.lex_state = 26}, - [908] = {.lex_state = 26}, - [909] = {.lex_state = 26}, - [910] = {.lex_state = 26}, + [907] = {.lex_state = 10}, + [908] = {.lex_state = 11}, + [909] = {.lex_state = 10}, + [910] = {.lex_state = 11}, [911] = {.lex_state = 26}, - [912] = {.lex_state = 26}, + [912] = {.lex_state = 11}, [913] = {.lex_state = 10}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 26}, - [916] = {.lex_state = 26}, + [914] = {.lex_state = 11}, + [915] = {.lex_state = 11}, + [916] = {.lex_state = 11}, [917] = {.lex_state = 11}, - [918] = {.lex_state = 11}, - [919] = {.lex_state = 10}, + [918] = {.lex_state = 26}, + [919] = {.lex_state = 26}, [920] = {.lex_state = 26}, - [921] = {.lex_state = 11}, - [922] = {.lex_state = 26}, - [923] = {.lex_state = 26}, - [924] = {.lex_state = 11}, - [925] = {.lex_state = 10}, + [921] = {.lex_state = 26}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 26}, + [925] = {.lex_state = 26}, [926] = {.lex_state = 26}, [927] = {.lex_state = 26}, [928] = {.lex_state = 26}, - [929] = {.lex_state = 26}, - [930] = {.lex_state = 11}, - [931] = {.lex_state = 11}, - [932] = {.lex_state = 11}, + [929] = {.lex_state = 11}, + [930] = {.lex_state = 26}, + [931] = {.lex_state = 26}, + [932] = {.lex_state = 26}, [933] = {.lex_state = 26}, [934] = {.lex_state = 26}, - [935] = {.lex_state = 10}, - [936] = {.lex_state = 26}, - [937] = {.lex_state = 10}, + [935] = {.lex_state = 11}, + [936] = {.lex_state = 11}, + [937] = {.lex_state = 26}, [938] = {.lex_state = 26}, - [939] = {.lex_state = 11}, + [939] = {.lex_state = 26}, [940] = {.lex_state = 26}, [941] = {.lex_state = 26}, [942] = {.lex_state = 26}, [943] = {.lex_state = 26}, [944] = {.lex_state = 11}, - [945] = {.lex_state = 11}, - [946] = {.lex_state = 11}, - [947] = {.lex_state = 11}, - [948] = {.lex_state = 26}, - [949] = {.lex_state = 11}, + [945] = {.lex_state = 26}, + [946] = {.lex_state = 26}, + [947] = {.lex_state = 26}, + [948] = {.lex_state = 10}, + [949] = {.lex_state = 26}, [950] = {.lex_state = 26}, - [951] = {.lex_state = 11}, - [952] = {.lex_state = 11}, + [951] = {.lex_state = 26}, + [952] = {.lex_state = 26}, [953] = {.lex_state = 26}, [954] = {.lex_state = 26}, - [955] = {.lex_state = 26}, + [955] = {.lex_state = 11}, [956] = {.lex_state = 26}, - [957] = {.lex_state = 26}, - [958] = {.lex_state = 11}, + [957] = {.lex_state = 11}, + [958] = {.lex_state = 10}, [959] = {.lex_state = 26}, [960] = {.lex_state = 26}, - [961] = {.lex_state = 11}, - [962] = {.lex_state = 26}, - [963] = {.lex_state = 11}, + [961] = {.lex_state = 26}, + [962] = {.lex_state = 10}, + [963] = {.lex_state = 26}, [964] = {.lex_state = 26}, [965] = {.lex_state = 26}, [966] = {.lex_state = 26}, @@ -8292,117 +8304,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [969] = {.lex_state = 26}, [970] = {.lex_state = 26}, [971] = {.lex_state = 26}, - [972] = {.lex_state = 26}, - [973] = {.lex_state = 26}, - [974] = {.lex_state = 26}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 11}, + [974] = {.lex_state = 11}, [975] = {.lex_state = 26}, [976] = {.lex_state = 26}, - [977] = {.lex_state = 26}, + [977] = {.lex_state = 10}, [978] = {.lex_state = 26}, - [979] = {.lex_state = 26}, + [979] = {.lex_state = 10}, [980] = {.lex_state = 26}, [981] = {.lex_state = 26}, [982] = {.lex_state = 26}, [983] = {.lex_state = 26}, - [984] = {.lex_state = 26}, + [984] = {.lex_state = 10}, [985] = {.lex_state = 26}, - [986] = {.lex_state = 26}, + [986] = {.lex_state = 10}, [987] = {.lex_state = 26}, - [988] = {.lex_state = 26}, + [988] = {.lex_state = 11}, [989] = {.lex_state = 26}, [990] = {.lex_state = 26}, - [991] = {.lex_state = 26}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 26}, - [994] = {.lex_state = 26}, - [995] = {.lex_state = 26}, + [991] = {.lex_state = 10}, + [992] = {.lex_state = 10}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 10}, + [995] = {.lex_state = 10}, [996] = {.lex_state = 26}, [997] = {.lex_state = 26}, - [998] = {.lex_state = 26}, - [999] = {.lex_state = 26}, - [1000] = {.lex_state = 26}, + [998] = {.lex_state = 10}, + [999] = {.lex_state = 11}, + [1000] = {.lex_state = 10}, [1001] = {.lex_state = 26}, [1002] = {.lex_state = 26}, [1003] = {.lex_state = 26}, - [1004] = {.lex_state = 11}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 26}, - [1007] = {.lex_state = 26}, - [1008] = {.lex_state = 26}, + [1004] = {.lex_state = 26}, + [1005] = {.lex_state = 10}, + [1006] = {.lex_state = 10}, + [1007] = {.lex_state = 10}, + [1008] = {.lex_state = 10}, [1009] = {.lex_state = 26}, - [1010] = {.lex_state = 26}, - [1011] = {.lex_state = 26}, + [1010] = {.lex_state = 10}, + [1011] = {.lex_state = 10}, [1012] = {.lex_state = 26}, - [1013] = {.lex_state = 26}, - [1014] = {.lex_state = 10}, + [1013] = {.lex_state = 10}, + [1014] = {.lex_state = 26}, [1015] = {.lex_state = 26}, [1016] = {.lex_state = 26}, [1017] = {.lex_state = 26}, - [1018] = {.lex_state = 10}, - [1019] = {.lex_state = 11}, + [1018] = {.lex_state = 26}, + [1019] = {.lex_state = 10}, [1020] = {.lex_state = 26}, - [1021] = {.lex_state = 10}, + [1021] = {.lex_state = 26}, [1022] = {.lex_state = 26}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 26}, - [1025] = {.lex_state = 26}, - [1026] = {.lex_state = 0}, + [1023] = {.lex_state = 26}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 26}, [1027] = {.lex_state = 26}, [1028] = {.lex_state = 26}, [1029] = {.lex_state = 26}, [1030] = {.lex_state = 26}, - [1031] = {.lex_state = 10}, + [1031] = {.lex_state = 26}, [1032] = {.lex_state = 26}, - [1033] = {.lex_state = 11}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 26}, - [1036] = {.lex_state = 26}, + [1033] = {.lex_state = 26}, + [1034] = {.lex_state = 26}, + [1035] = {.lex_state = 10}, + [1036] = {.lex_state = 10}, [1037] = {.lex_state = 11}, - [1038] = {.lex_state = 26}, - [1039] = {.lex_state = 10}, - [1040] = {.lex_state = 26}, + [1038] = {.lex_state = 10}, + [1039] = {.lex_state = 0}, + [1040] = {.lex_state = 11}, [1041] = {.lex_state = 26}, - [1042] = {.lex_state = 26}, - [1043] = {.lex_state = 26}, + [1042] = {.lex_state = 10}, + [1043] = {.lex_state = 11}, [1044] = {.lex_state = 26}, - [1045] = {.lex_state = 26}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 26}, - [1048] = {.lex_state = 10}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 26}, + [1047] = {.lex_state = 11}, + [1048] = {.lex_state = 26}, [1049] = {.lex_state = 26}, - [1050] = {.lex_state = 10}, - [1051] = {.lex_state = 11}, - [1052] = {.lex_state = 10}, + [1050] = {.lex_state = 26}, + [1051] = {.lex_state = 26}, + [1052] = {.lex_state = 26}, [1053] = {.lex_state = 26}, [1054] = {.lex_state = 26}, [1055] = {.lex_state = 26}, - [1056] = {.lex_state = 0}, + [1056] = {.lex_state = 26}, [1057] = {.lex_state = 26}, [1058] = {.lex_state = 26}, - [1059] = {.lex_state = 11}, - [1060] = {.lex_state = 10}, + [1059] = {.lex_state = 26}, + [1060] = {.lex_state = 26}, [1061] = {.lex_state = 26}, [1062] = {.lex_state = 26}, - [1063] = {.lex_state = 26}, + [1063] = {.lex_state = 0}, [1064] = {.lex_state = 26}, - [1065] = {.lex_state = 10}, + [1065] = {.lex_state = 26}, [1066] = {.lex_state = 26}, [1067] = {.lex_state = 26}, [1068] = {.lex_state = 26}, - [1069] = {.lex_state = 0}, + [1069] = {.lex_state = 26}, [1070] = {.lex_state = 26}, - [1071] = {.lex_state = 10}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 10}, - [1074] = {.lex_state = 10}, - [1075] = {.lex_state = 10}, - [1076] = {.lex_state = 10}, + [1071] = {.lex_state = 26}, + [1072] = {.lex_state = 26}, + [1073] = {.lex_state = 26}, + [1074] = {.lex_state = 26}, + [1075] = {.lex_state = 26}, + [1076] = {.lex_state = 26}, [1077] = {.lex_state = 26}, [1078] = {.lex_state = 26}, [1079] = {.lex_state = 26}, [1080] = {.lex_state = 26}, [1081] = {.lex_state = 26}, - [1082] = {.lex_state = 11}, + [1082] = {.lex_state = 26}, [1083] = {.lex_state = 26}, [1084] = {.lex_state = 26}, [1085] = {.lex_state = 26}, @@ -8412,100 +8424,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1089] = {.lex_state = 26}, [1090] = {.lex_state = 26}, [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 10}, - [1093] = {.lex_state = 10}, - [1094] = {.lex_state = 26}, - [1095] = {.lex_state = 11}, + [1092] = {.lex_state = 26}, + [1093] = {.lex_state = 26}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 0}, [1096] = {.lex_state = 26}, - [1097] = {.lex_state = 10}, - [1098] = {.lex_state = 10}, + [1097] = {.lex_state = 26}, + [1098] = {.lex_state = 26}, [1099] = {.lex_state = 26}, [1100] = {.lex_state = 26}, [1101] = {.lex_state = 26}, [1102] = {.lex_state = 26}, - [1103] = {.lex_state = 26}, - [1104] = {.lex_state = 0}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 26}, [1105] = {.lex_state = 26}, [1106] = {.lex_state = 26}, [1107] = {.lex_state = 26}, - [1108] = {.lex_state = 10}, - [1109] = {.lex_state = 26}, + [1108] = {.lex_state = 26}, + [1109] = {.lex_state = 0}, [1110] = {.lex_state = 26}, [1111] = {.lex_state = 26}, [1112] = {.lex_state = 26}, [1113] = {.lex_state = 26}, [1114] = {.lex_state = 26}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 10}, + [1115] = {.lex_state = 26}, + [1116] = {.lex_state = 26}, [1117] = {.lex_state = 26}, - [1118] = {.lex_state = 11}, + [1118] = {.lex_state = 26}, [1119] = {.lex_state = 26}, [1120] = {.lex_state = 26}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 10}, + [1121] = {.lex_state = 26}, + [1122] = {.lex_state = 26}, [1123] = {.lex_state = 26}, [1124] = {.lex_state = 26}, [1125] = {.lex_state = 26}, - [1126] = {.lex_state = 10}, + [1126] = {.lex_state = 26}, [1127] = {.lex_state = 26}, - [1128] = {.lex_state = 11}, - [1129] = {.lex_state = 26}, - [1130] = {.lex_state = 26}, + [1128] = {.lex_state = 26}, + [1129] = {.lex_state = 0}, + [1130] = {.lex_state = 0}, [1131] = {.lex_state = 26}, [1132] = {.lex_state = 26}, [1133] = {.lex_state = 26}, - [1134] = {.lex_state = 26}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 26}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 26}, + [1136] = {.lex_state = 0}, [1137] = {.lex_state = 26}, - [1138] = {.lex_state = 0}, + [1138] = {.lex_state = 26}, [1139] = {.lex_state = 26}, - [1140] = {.lex_state = 0}, + [1140] = {.lex_state = 26}, [1141] = {.lex_state = 26}, [1142] = {.lex_state = 26}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 26}, - [1145] = {.lex_state = 0}, + [1145] = {.lex_state = 26}, [1146] = {.lex_state = 26}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 26}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 26}, - [1150] = {.lex_state = 11}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 26}, [1151] = {.lex_state = 26}, - [1152] = {.lex_state = 0}, + [1152] = {.lex_state = 26}, [1153] = {.lex_state = 26}, [1154] = {.lex_state = 26}, - [1155] = {.lex_state = 0}, + [1155] = {.lex_state = 26}, [1156] = {.lex_state = 26}, - [1157] = {.lex_state = 0}, + [1157] = {.lex_state = 26}, [1158] = {.lex_state = 0}, [1159] = {.lex_state = 26}, - [1160] = {.lex_state = 0}, + [1160] = {.lex_state = 26}, [1161] = {.lex_state = 26}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, + [1162] = {.lex_state = 26}, + [1163] = {.lex_state = 26}, [1164] = {.lex_state = 26}, - [1165] = {.lex_state = 26}, + [1165] = {.lex_state = 0}, [1166] = {.lex_state = 26}, - [1167] = {.lex_state = 26}, + [1167] = {.lex_state = 0}, [1168] = {.lex_state = 26}, [1169] = {.lex_state = 26}, - [1170] = {.lex_state = 0}, + [1170] = {.lex_state = 26}, [1171] = {.lex_state = 26}, - [1172] = {.lex_state = 26}, + [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 26}, + [1174] = {.lex_state = 0}, [1175] = {.lex_state = 26}, [1176] = {.lex_state = 26}, [1177] = {.lex_state = 26}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 26}, + [1178] = {.lex_state = 26}, + [1179] = {.lex_state = 0}, [1180] = {.lex_state = 26}, - [1181] = {.lex_state = 0}, + [1181] = {.lex_state = 26}, [1182] = {.lex_state = 26}, - [1183] = {.lex_state = 26}, + [1183] = {.lex_state = 0}, [1184] = {.lex_state = 26}, - [1185] = {.lex_state = 26}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 26}, [1187] = {.lex_state = 26}, [1188] = {.lex_state = 26}, @@ -8519,44 +8531,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1196] = {.lex_state = 26}, [1197] = {.lex_state = 26}, [1198] = {.lex_state = 26}, - [1199] = {.lex_state = 26}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 26}, - [1202] = {.lex_state = 26}, - [1203] = {.lex_state = 26}, - [1204] = {.lex_state = 26}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 26}, - [1207] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 26}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 26}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 26}, [1208] = {.lex_state = 26}, [1209] = {.lex_state = 26}, - [1210] = {.lex_state = 26}, + [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 26}, - [1214] = {.lex_state = 0}, + [1212] = {.lex_state = 26}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 26}, [1215] = {.lex_state = 26}, [1216] = {.lex_state = 26}, [1217] = {.lex_state = 26}, [1218] = {.lex_state = 26}, - [1219] = {.lex_state = 26}, - [1220] = {.lex_state = 26}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 26}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 26}, + [1222] = {.lex_state = 0}, [1223] = {.lex_state = 26}, [1224] = {.lex_state = 26}, - [1225] = {.lex_state = 26}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 26}, [1227] = {.lex_state = 26}, [1228] = {.lex_state = 26}, - [1229] = {.lex_state = 26}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 26}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 26}, + [1231] = {.lex_state = 26}, + [1232] = {.lex_state = 0}, [1233] = {.lex_state = 26}, - [1234] = {.lex_state = 0}, + [1234] = {.lex_state = 26}, [1235] = {.lex_state = 26}, - [1236] = {.lex_state = 26}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 26}, [1239] = {.lex_state = 26}, @@ -8565,89 +8577,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1242] = {.lex_state = 26}, [1243] = {.lex_state = 26}, [1244] = {.lex_state = 26}, - [1245] = {.lex_state = 26}, + [1245] = {.lex_state = 0}, [1246] = {.lex_state = 26}, [1247] = {.lex_state = 26}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, + [1248] = {.lex_state = 26}, + [1249] = {.lex_state = 26}, [1250] = {.lex_state = 26}, [1251] = {.lex_state = 26}, - [1252] = {.lex_state = 26}, + [1252] = {.lex_state = 0}, [1253] = {.lex_state = 26}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, + [1254] = {.lex_state = 26}, + [1255] = {.lex_state = 26}, [1256] = {.lex_state = 26}, [1257] = {.lex_state = 26}, [1258] = {.lex_state = 26}, [1259] = {.lex_state = 26}, [1260] = {.lex_state = 26}, - [1261] = {.lex_state = 26}, - [1262] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 26}, [1263] = {.lex_state = 26}, [1264] = {.lex_state = 26}, [1265] = {.lex_state = 26}, [1266] = {.lex_state = 26}, - [1267] = {.lex_state = 0}, + [1267] = {.lex_state = 26}, [1268] = {.lex_state = 26}, [1269] = {.lex_state = 26}, [1270] = {.lex_state = 26}, [1271] = {.lex_state = 26}, [1272] = {.lex_state = 26}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, + [1273] = {.lex_state = 26}, + [1274] = {.lex_state = 26}, [1275] = {.lex_state = 26}, - [1276] = {.lex_state = 0}, + [1276] = {.lex_state = 26}, [1277] = {.lex_state = 26}, [1278] = {.lex_state = 26}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 26}, + [1279] = {.lex_state = 26}, + [1280] = {.lex_state = 0}, [1281] = {.lex_state = 26}, [1282] = {.lex_state = 26}, [1283] = {.lex_state = 26}, [1284] = {.lex_state = 26}, [1285] = {.lex_state = 26}, [1286] = {.lex_state = 26}, - [1287] = {.lex_state = 26}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 26}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 26}, + [1289] = {.lex_state = 26}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 26}, + [1292] = {.lex_state = 26}, [1293] = {.lex_state = 26}, [1294] = {.lex_state = 26}, - [1295] = {.lex_state = 26}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 26}, - [1298] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 26}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 26}, [1299] = {.lex_state = 26}, [1300] = {.lex_state = 26}, [1301] = {.lex_state = 26}, - [1302] = {.lex_state = 26}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 26}, [1304] = {.lex_state = 0}, [1305] = {.lex_state = 26}, [1306] = {.lex_state = 26}, [1307] = {.lex_state = 26}, - [1308] = {.lex_state = 26}, + [1308] = {.lex_state = 0}, [1309] = {.lex_state = 26}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 26}, - [1312] = {.lex_state = 26}, + [1310] = {.lex_state = 26}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 26}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 26}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 26}, + [1314] = {.lex_state = 26}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 26}, + [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 26}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 26}, - [1323] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 26}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 26}, [1324] = {.lex_state = 26}, [1325] = {.lex_state = 26}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, + [1326] = {.lex_state = 26}, + [1327] = {.lex_state = 26}, [1328] = {.lex_state = 26}, [1329] = {.lex_state = 26}, [1330] = {.lex_state = 26}, @@ -8655,64 +8667,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1332] = {.lex_state = 26}, [1333] = {.lex_state = 26}, [1334] = {.lex_state = 26}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, + [1335] = {.lex_state = 26}, + [1336] = {.lex_state = 26}, [1337] = {.lex_state = 26}, [1338] = {.lex_state = 26}, - [1339] = {.lex_state = 26}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 26}, - [1342] = {.lex_state = 26}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 26}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 0}, [1343] = {.lex_state = 26}, [1344] = {.lex_state = 26}, - [1345] = {.lex_state = 0}, + [1345] = {.lex_state = 26}, [1346] = {.lex_state = 0}, [1347] = {.lex_state = 26}, [1348] = {.lex_state = 26}, [1349] = {.lex_state = 26}, [1350] = {.lex_state = 26}, - [1351] = {.lex_state = 0}, + [1351] = {.lex_state = 26}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 26}, - [1355] = {.lex_state = 0}, + [1353] = {.lex_state = 26}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 26}, [1356] = {.lex_state = 26}, [1357] = {.lex_state = 26}, [1358] = {.lex_state = 26}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, + [1359] = {.lex_state = 26}, + [1360] = {.lex_state = 26}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 26}, - [1363] = {.lex_state = 26}, + [1363] = {.lex_state = 0}, [1364] = {.lex_state = 26}, - [1365] = {.lex_state = 26}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 26}, - [1367] = {.lex_state = 0}, + [1367] = {.lex_state = 26}, [1368] = {.lex_state = 26}, [1369] = {.lex_state = 26}, [1370] = {.lex_state = 26}, - [1371] = {.lex_state = 26}, + [1371] = {.lex_state = 0}, [1372] = {.lex_state = 26}, [1373] = {.lex_state = 26}, - [1374] = {.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}, + [1379] = {.lex_state = 0}, [1380] = {.lex_state = 26}, [1381] = {.lex_state = 26}, [1382] = {.lex_state = 0}, [1383] = {.lex_state = 26}, [1384] = {.lex_state = 26}, - [1385] = {.lex_state = 26}, - [1386] = {.lex_state = 26}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 0}, [1387] = {.lex_state = 26}, [1388] = {.lex_state = 26}, [1389] = {.lex_state = 26}, - [1390] = {.lex_state = 26}, + [1390] = {.lex_state = 0}, [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 26}, + [1392] = {.lex_state = 0}, [1393] = {.lex_state = 26}, [1394] = {.lex_state = 26}, [1395] = {.lex_state = 26}, @@ -8721,17 +8733,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1398] = {.lex_state = 26}, [1399] = {.lex_state = 26}, [1400] = {.lex_state = 26}, - [1401] = {.lex_state = 26}, + [1401] = {.lex_state = 0}, [1402] = {.lex_state = 26}, [1403] = {.lex_state = 26}, - [1404] = {.lex_state = 26}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, [1406] = {.lex_state = 26}, [1407] = {.lex_state = 26}, [1408] = {.lex_state = 26}, [1409] = {.lex_state = 26}, [1410] = {.lex_state = 26}, - [1411] = {.lex_state = 26}, + [1411] = {.lex_state = 0}, [1412] = {.lex_state = 26}, [1413] = {.lex_state = 26}, [1414] = {.lex_state = 26}, @@ -8741,16 +8753,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1418] = {.lex_state = 26}, [1419] = {.lex_state = 26}, [1420] = {.lex_state = 26}, - [1421] = {.lex_state = 0}, + [1421] = {.lex_state = 26}, [1422] = {.lex_state = 26}, - [1423] = {.lex_state = 0}, + [1423] = {.lex_state = 26}, [1424] = {.lex_state = 26}, [1425] = {.lex_state = 26}, [1426] = {.lex_state = 26}, - [1427] = {.lex_state = 0}, + [1427] = {.lex_state = 26}, [1428] = {.lex_state = 26}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 26}, + [1429] = {.lex_state = 26}, + [1430] = {.lex_state = 0}, [1431] = {.lex_state = 26}, [1432] = {.lex_state = 26}, [1433] = {.lex_state = 26}, @@ -8763,24 +8775,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1440] = {.lex_state = 26}, [1441] = {.lex_state = 26}, [1442] = {.lex_state = 26}, - [1443] = {.lex_state = 26}, + [1443] = {.lex_state = 0}, [1444] = {.lex_state = 26}, [1445] = {.lex_state = 26}, - [1446] = {.lex_state = 0}, + [1446] = {.lex_state = 26}, [1447] = {.lex_state = 26}, - [1448] = {.lex_state = 26}, - [1449] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 26}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 26}, + [1451] = {.lex_state = 0}, [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, + [1453] = {.lex_state = 26}, [1454] = {.lex_state = 26}, [1455] = {.lex_state = 26}, - [1456] = {.lex_state = 26}, + [1456] = {.lex_state = 0}, [1457] = {.lex_state = 26}, - [1458] = {.lex_state = 26}, + [1458] = {.lex_state = 0}, [1459] = {.lex_state = 26}, - [1460] = {.lex_state = 0}, + [1460] = {.lex_state = 26}, [1461] = {.lex_state = 26}, [1462] = {.lex_state = 26}, [1463] = {.lex_state = 26}, @@ -8795,62 +8807,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1472] = {.lex_state = 26}, [1473] = {.lex_state = 26}, [1474] = {.lex_state = 26}, - [1475] = {.lex_state = 0}, + [1475] = {.lex_state = 26}, [1476] = {.lex_state = 26}, - [1477] = {.lex_state = 26}, - [1478] = {.lex_state = 26}, - [1479] = {.lex_state = 26}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 0}, [1480] = {.lex_state = 26}, [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, [1483] = {.lex_state = 26}, - [1484] = {.lex_state = 26}, + [1484] = {.lex_state = 0}, [1485] = {.lex_state = 26}, [1486] = {.lex_state = 26}, - [1487] = {.lex_state = 26}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 26}, + [1489] = {.lex_state = 26}, [1490] = {.lex_state = 26}, [1491] = {.lex_state = 0}, [1492] = {.lex_state = 26}, [1493] = {.lex_state = 26}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, + [1494] = {.lex_state = 26}, + [1495] = {.lex_state = 26}, [1496] = {.lex_state = 26}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, + [1497] = {.lex_state = 26}, + [1498] = {.lex_state = 26}, [1499] = {.lex_state = 26}, [1500] = {.lex_state = 26}, - [1501] = {.lex_state = 26}, + [1501] = {.lex_state = 0}, [1502] = {.lex_state = 26}, - [1503] = {.lex_state = 26}, + [1503] = {.lex_state = 0}, [1504] = {.lex_state = 26}, [1505] = {.lex_state = 0}, [1506] = {.lex_state = 26}, - [1507] = {.lex_state = 26}, + [1507] = {.lex_state = 0}, [1508] = {.lex_state = 26}, - [1509] = {.lex_state = 26}, + [1509] = {.lex_state = 0}, [1510] = {.lex_state = 26}, - [1511] = {.lex_state = 0}, + [1511] = {.lex_state = 26}, [1512] = {.lex_state = 0}, [1513] = {.lex_state = 26}, [1514] = {.lex_state = 26}, - [1515] = {.lex_state = 26}, - [1516] = {.lex_state = 26}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, [1517] = {.lex_state = 26}, - [1518] = {.lex_state = 26}, + [1518] = {.lex_state = 0}, [1519] = {.lex_state = 26}, [1520] = {.lex_state = 26}, [1521] = {.lex_state = 26}, - [1522] = {.lex_state = 0}, + [1522] = {.lex_state = 26}, [1523] = {.lex_state = 26}, [1524] = {.lex_state = 26}, [1525] = {.lex_state = 26}, [1526] = {.lex_state = 26}, [1527] = {.lex_state = 26}, [1528] = {.lex_state = 26}, - [1529] = {.lex_state = 26}, - [1530] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 26}, [1531] = {.lex_state = 26}, [1532] = {.lex_state = 26}, [1533] = {.lex_state = 26}, @@ -8859,35 +8871,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1536] = {.lex_state = 26}, [1537] = {.lex_state = 26}, [1538] = {.lex_state = 26}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 0}, + [1539] = {.lex_state = 26}, + [1540] = {.lex_state = 26}, [1541] = {.lex_state = 26}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 26}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 7}, - [1546] = {.lex_state = 26}, + [1542] = {.lex_state = 26}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 7}, + [1545] = {.lex_state = 26}, + [1546] = {.lex_state = 0}, [1547] = {.lex_state = 26}, [1548] = {.lex_state = 26}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 26}, + [1549] = {.lex_state = 26}, + [1550] = {.lex_state = 0}, [1551] = {.lex_state = 26}, - [1552] = {.lex_state = 26}, + [1552] = {.lex_state = 0}, [1553] = {.lex_state = 26}, - [1554] = {.lex_state = 0}, + [1554] = {.lex_state = 26}, [1555] = {.lex_state = 26}, - [1556] = {.lex_state = 26}, + [1556] = {.lex_state = 0}, [1557] = {.lex_state = 26}, [1558] = {.lex_state = 26}, [1559] = {.lex_state = 26}, - [1560] = {.lex_state = 0}, + [1560] = {.lex_state = 26}, [1561] = {.lex_state = 26}, [1562] = {.lex_state = 26}, - [1563] = {.lex_state = 0}, + [1563] = {.lex_state = 26}, [1564] = {.lex_state = 26}, [1565] = {.lex_state = 26}, - [1566] = {.lex_state = 26}, - [1567] = {.lex_state = 0}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 26}, [1568] = {.lex_state = 26}, [1569] = {.lex_state = 26}, [1570] = {.lex_state = 26}, @@ -8901,7 +8913,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1578] = {.lex_state = 26}, [1579] = {.lex_state = 26}, [1580] = {.lex_state = 26}, - [1581] = {.lex_state = 0}, + [1581] = {.lex_state = 26}, [1582] = {.lex_state = 26}, [1583] = {.lex_state = 26}, [1584] = {.lex_state = 26}, @@ -8910,13 +8922,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1587] = {.lex_state = 26}, [1588] = {.lex_state = 26}, [1589] = {.lex_state = 26}, - [1590] = {.lex_state = 0}, + [1590] = {.lex_state = 26}, [1591] = {.lex_state = 26}, [1592] = {.lex_state = 26}, [1593] = {.lex_state = 26}, - [1594] = {.lex_state = 7}, - [1595] = {.lex_state = 26}, - [1596] = {.lex_state = 26}, + [1594] = {.lex_state = 26}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, [1597] = {.lex_state = 26}, [1598] = {.lex_state = 26}, [1599] = {.lex_state = 26}, @@ -8929,66 +8941,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1606] = {.lex_state = 26}, [1607] = {.lex_state = 26}, [1608] = {.lex_state = 26}, - [1609] = {.lex_state = 26}, + [1609] = {.lex_state = 0}, [1610] = {.lex_state = 26}, [1611] = {.lex_state = 26}, [1612] = {.lex_state = 26}, - [1613] = {.lex_state = 26}, + [1613] = {.lex_state = 0}, [1614] = {.lex_state = 26}, [1615] = {.lex_state = 26}, - [1616] = {.lex_state = 0}, + [1616] = {.lex_state = 26}, [1617] = {.lex_state = 26}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 26}, - [1620] = {.lex_state = 0}, + [1618] = {.lex_state = 26}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 26}, [1621] = {.lex_state = 26}, [1622] = {.lex_state = 26}, [1623] = {.lex_state = 26}, [1624] = {.lex_state = 26}, [1625] = {.lex_state = 26}, - [1626] = {.lex_state = 26}, + [1626] = {.lex_state = 0}, [1627] = {.lex_state = 26}, [1628] = {.lex_state = 26}, [1629] = {.lex_state = 26}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, + [1630] = {.lex_state = 26}, + [1631] = {.lex_state = 26}, [1632] = {.lex_state = 26}, [1633] = {.lex_state = 26}, [1634] = {.lex_state = 26}, [1635] = {.lex_state = 0}, [1636] = {.lex_state = 26}, - [1637] = {.lex_state = 0}, + [1637] = {.lex_state = 26}, [1638] = {.lex_state = 26}, [1639] = {.lex_state = 26}, [1640] = {.lex_state = 26}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 26}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 26}, - [1645] = {.lex_state = 0}, + [1641] = {.lex_state = 26}, + [1642] = {.lex_state = 7}, + [1643] = {.lex_state = 26}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 26}, [1646] = {.lex_state = 26}, - [1647] = {.lex_state = 26}, + [1647] = {.lex_state = 0}, [1648] = {.lex_state = 26}, [1649] = {.lex_state = 26}, [1650] = {.lex_state = 26}, [1651] = {.lex_state = 26}, [1652] = {.lex_state = 26}, - [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 26}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, [1655] = {.lex_state = 26}, [1656] = {.lex_state = 26}, - [1657] = {.lex_state = 26}, + [1657] = {.lex_state = 0}, [1658] = {.lex_state = 26}, [1659] = {.lex_state = 26}, - [1660] = {.lex_state = 26}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 26}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 26}, + [1662] = {.lex_state = 0}, [1663] = {.lex_state = 26}, - [1664] = {.lex_state = 26}, + [1664] = {.lex_state = 0}, [1665] = {.lex_state = 26}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, + [1668] = {.lex_state = 26}, [1669] = {.lex_state = 26}, [1670] = {.lex_state = 26}, [1671] = {.lex_state = 26}, @@ -8996,23 +9008,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1673] = {.lex_state = 26}, [1674] = {.lex_state = 26}, [1675] = {.lex_state = 26}, - [1676] = {.lex_state = 26}, - [1677] = {.lex_state = 26}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 7}, [1678] = {.lex_state = 26}, [1679] = {.lex_state = 26}, [1680] = {.lex_state = 26}, [1681] = {.lex_state = 26}, [1682] = {.lex_state = 26}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, + [1683] = {.lex_state = 26}, + [1684] = {.lex_state = 26}, [1685] = {.lex_state = 26}, - [1686] = {.lex_state = 0}, + [1686] = {.lex_state = 26}, [1687] = {.lex_state = 26}, [1688] = {.lex_state = 26}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 26}, - [1692] = {.lex_state = 26}, + [1689] = {.lex_state = 26}, + [1690] = {.lex_state = 26}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, [1693] = {.lex_state = 26}, [1694] = {.lex_state = 26}, [1695] = {.lex_state = 26}, @@ -9037,34 +9049,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1714] = {.lex_state = 0}, [1715] = {.lex_state = 26}, [1716] = {.lex_state = 26}, - [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 26}, + [1717] = {.lex_state = 26}, + [1718] = {.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 = 26}, + [1725] = {.lex_state = 0}, [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 = 0}, + [1731] = {.lex_state = 26}, [1732] = {.lex_state = 26}, [1733] = {.lex_state = 26}, - [1734] = {.lex_state = 0}, + [1734] = {.lex_state = 26}, [1735] = {.lex_state = 26}, [1736] = {.lex_state = 26}, [1737] = {.lex_state = 26}, [1738] = {.lex_state = 26}, [1739] = {.lex_state = 26}, [1740] = {.lex_state = 26}, - [1741] = {.lex_state = 26}, - [1742] = {.lex_state = 26}, - [1743] = {.lex_state = 26}, - [1744] = {.lex_state = 0}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 0}, + [1744] = {.lex_state = 26}, [1745] = {.lex_state = 26}, [1746] = {.lex_state = 26}, [1747] = {.lex_state = 26}, @@ -9077,7 +9089,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1754] = {.lex_state = 26}, [1755] = {.lex_state = 26}, [1756] = {.lex_state = 26}, - [1757] = {.lex_state = 26}, + [1757] = {.lex_state = 0}, [1758] = {.lex_state = 26}, [1759] = {.lex_state = 26}, [1760] = {.lex_state = 26}, @@ -9086,7 +9098,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1763] = {.lex_state = 26}, [1764] = {.lex_state = 26}, [1765] = {.lex_state = 26}, - [1766] = {.lex_state = 0}, + [1766] = {.lex_state = 26}, [1767] = {.lex_state = 26}, [1768] = {.lex_state = 26}, [1769] = {.lex_state = 26}, @@ -9096,26 +9108,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1773] = {.lex_state = 26}, [1774] = {.lex_state = 26}, [1775] = {.lex_state = 26}, - [1776] = {.lex_state = 26}, + [1776] = {.lex_state = 0}, [1777] = {.lex_state = 26}, - [1778] = {.lex_state = 26}, + [1778] = {.lex_state = 0}, [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 7}, + [1780] = {.lex_state = 26}, + [1781] = {.lex_state = 26}, + [1782] = {.lex_state = 26}, + [1783] = {.lex_state = 26}, [1784] = {.lex_state = 26}, [1785] = {.lex_state = 26}, [1786] = {.lex_state = 26}, [1787] = {.lex_state = 26}, [1788] = {.lex_state = 26}, - [1789] = {.lex_state = 0}, + [1789] = {.lex_state = 26}, [1790] = {.lex_state = 26}, [1791] = {.lex_state = 26}, [1792] = {.lex_state = 26}, - [1793] = {.lex_state = 26}, + [1793] = {.lex_state = 0}, [1794] = {.lex_state = 26}, - [1795] = {.lex_state = 26}, + [1795] = {.lex_state = 0}, [1796] = {.lex_state = 26}, [1797] = {.lex_state = 26}, [1798] = {.lex_state = 26}, @@ -9123,28 +9135,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, - [1803] = {.lex_state = 26}, - [1804] = {.lex_state = 26}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 7}, [1805] = {.lex_state = 26}, [1806] = {.lex_state = 26}, [1807] = {.lex_state = 26}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 26}, + [1808] = {.lex_state = 26}, + [1809] = {.lex_state = 0}, [1810] = {.lex_state = 26}, - [1811] = {.lex_state = 26}, + [1811] = {.lex_state = 0}, [1812] = {.lex_state = 26}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 26}, + [1813] = {.lex_state = 26}, + [1814] = {.lex_state = 26}, + [1815] = {.lex_state = 0}, [1816] = {.lex_state = 26}, [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, + [1818] = {.lex_state = 7}, [1819] = {.lex_state = 26}, [1820] = {.lex_state = 26}, [1821] = {.lex_state = 26}, [1822] = {.lex_state = 26}, [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 0}, + [1824] = {.lex_state = 26}, [1825] = {.lex_state = 26}, [1826] = {.lex_state = 26}, [1827] = {.lex_state = 26}, @@ -9155,28 +9167,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1832] = {.lex_state = 26}, [1833] = {.lex_state = 26}, [1834] = {.lex_state = 26}, - [1835] = {.lex_state = 0}, + [1835] = {.lex_state = 26}, [1836] = {.lex_state = 26}, - [1837] = {.lex_state = 0}, + [1837] = {.lex_state = 26}, [1838] = {.lex_state = 26}, [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, [1841] = {.lex_state = 26}, [1842] = {.lex_state = 26}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, + [1843] = {.lex_state = 26}, + [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, - [1846] = {.lex_state = 26}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 26}, [1848] = {.lex_state = 26}, [1849] = {.lex_state = 26}, [1850] = {.lex_state = 26}, [1851] = {.lex_state = 26}, - [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 7}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 26}, [1854] = {.lex_state = 26}, [1855] = {.lex_state = 26}, - [1856] = {.lex_state = 26}, + [1856] = {.lex_state = 0}, [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 26}, @@ -9191,64 +9203,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, [1870] = {.lex_state = 26}, - [1871] = {.lex_state = 0}, + [1871] = {.lex_state = 26}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, - [1874] = {.lex_state = 26}, + [1874] = {.lex_state = 0}, [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, [1877] = {.lex_state = 26}, [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, - [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, [1883] = {.lex_state = 26}, [1884] = {.lex_state = 26}, - [1885] = {.lex_state = 26}, + [1885] = {.lex_state = 0}, [1886] = {.lex_state = 26}, [1887] = {.lex_state = 26}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, [1890] = {.lex_state = 26}, [1891] = {.lex_state = 26}, - [1892] = {.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 = 0}, + [1897] = {.lex_state = 26}, [1898] = {.lex_state = 26}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 26}, - [1901] = {.lex_state = 0}, + [1901] = {.lex_state = 26}, [1902] = {.lex_state = 26}, [1903] = {.lex_state = 26}, - [1904] = {.lex_state = 26}, + [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, [1906] = {.lex_state = 26}, - [1907] = {.lex_state = 0}, + [1907] = {.lex_state = 26}, [1908] = {.lex_state = 26}, [1909] = {.lex_state = 26}, [1910] = {.lex_state = 26}, [1911] = {.lex_state = 26}, [1912] = {.lex_state = 26}, - [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 0}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 26}, [1915] = {.lex_state = 26}, [1916] = {.lex_state = 26}, [1917] = {.lex_state = 26}, [1918] = {.lex_state = 26}, - [1919] = {.lex_state = 26}, - [1920] = {.lex_state = 0}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 26}, [1921] = {.lex_state = 26}, [1922] = {.lex_state = 26}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 26}, - [1925] = {.lex_state = 26}, - [1926] = {.lex_state = 0}, + [1923] = {.lex_state = 26}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 0}, + [1926] = {.lex_state = 26}, [1927] = {.lex_state = 26}, - [1928] = {.lex_state = 26}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9367,101 +9378,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_compilation] = STATE(1905), - [sym__name] = STATE(935), - [sym__defining_identifier_list] = STATE(1899), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__defining_identifier_list] = STATE(1904), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(466), - [sym__basic_declarative_item] = STATE(466), - [sym__basic_declaration] = STATE(466), - [sym__package_declaration] = STATE(466), - [sym_package_specification] = STATE(1895), - [sym_with_clause] = STATE(466), - [sym_use_clause] = STATE(466), - [sym_subunit] = STATE(466), - [sym__proper_body] = STATE(466), - [sym_subprogram_body] = STATE(466), - [sym_package_body] = STATE(466), - [sym__type_declaration] = STATE(466), - [sym_full_type_declaration] = STATE(466), - [sym_private_type_declaration] = STATE(466), - [sym_private_extension_declaration] = STATE(466), - [sym_incomplete_type_declaration] = STATE(466), - [sym__aspect_clause] = STATE(466), - [sym_at_clause] = STATE(466), - [sym_attribute_definition_clause] = STATE(466), - [sym_body_stub] = STATE(466), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(466), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(466), - [sym_protected_body_stub] = STATE(449), - [sym_entry_declaration] = STATE(466), - [sym_enumeration_representation_clause] = STATE(466), - [sym_exception_declaration] = STATE(466), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(466), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(466), - [sym_generic_package_declaration] = STATE(466), - [sym_generic_instantiation] = STATE(466), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_procedure_declaration] = STATE(466), - [sym_null_statement] = STATE(104), - [sym_number_declaration] = STATE(466), - [sym_object_declaration] = STATE(466), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(942), - [sym_pragma_g] = STATE(104), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(466), - [sym__renaming_declaration] = STATE(466), - [sym_object_renaming_declaration] = STATE(466), - [sym_exception_renaming_declaration] = STATE(466), - [sym_package_renaming_declaration] = STATE(466), - [sym_subprogram_renaming_declaration] = STATE(466), - [sym_generic_renaming_declaration] = STATE(466), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(466), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [sym_subprogram_declaration] = STATE(466), - [sym_expression_function_declaration] = STATE(466), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(466), + [sym__declarative_item] = STATE(465), + [sym__basic_declarative_item] = STATE(465), + [sym__basic_declaration] = STATE(465), + [sym__package_declaration] = STATE(465), + [sym_package_specification] = STATE(1898), + [sym_with_clause] = STATE(465), + [sym_use_clause] = STATE(465), + [sym_subunit] = STATE(465), + [sym__proper_body] = STATE(465), + [sym_subprogram_body] = STATE(465), + [sym_package_body] = STATE(465), + [sym__type_declaration] = STATE(465), + [sym_full_type_declaration] = STATE(465), + [sym_private_type_declaration] = STATE(465), + [sym_private_extension_declaration] = STATE(465), + [sym_incomplete_type_declaration] = STATE(465), + [sym__aspect_clause] = STATE(465), + [sym_at_clause] = STATE(465), + [sym_attribute_definition_clause] = STATE(465), + [sym_body_stub] = STATE(465), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(465), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(465), + [sym_protected_body_stub] = STATE(323), + [sym_entry_declaration] = STATE(465), + [sym_enumeration_representation_clause] = STATE(465), + [sym_exception_declaration] = STATE(465), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(465), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(465), + [sym_generic_package_declaration] = STATE(465), + [sym_generic_instantiation] = STATE(465), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_procedure_declaration] = STATE(465), + [sym_null_statement] = STATE(147), + [sym_number_declaration] = STATE(465), + [sym_object_declaration] = STATE(465), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(932), + [sym_pragma_g] = STATE(147), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(465), + [sym__renaming_declaration] = STATE(465), + [sym_object_renaming_declaration] = STATE(465), + [sym_exception_renaming_declaration] = STATE(465), + [sym_package_renaming_declaration] = STATE(465), + [sym_subprogram_renaming_declaration] = STATE(465), + [sym_generic_renaming_declaration] = STATE(465), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(465), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [sym_subprogram_declaration] = STATE(465), + [sym_expression_function_declaration] = STATE(465), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(465), [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -9506,101 +9518,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [2] = { - [sym__name] = STATE(935), - [sym__defining_identifier_list] = STATE(1899), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__defining_identifier_list] = STATE(1904), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(466), - [sym__basic_declarative_item] = STATE(466), - [sym__basic_declaration] = STATE(466), - [sym__package_declaration] = STATE(466), - [sym_package_specification] = STATE(1895), - [sym_with_clause] = STATE(466), - [sym_use_clause] = STATE(466), - [sym_subunit] = STATE(466), - [sym__proper_body] = STATE(466), - [sym_subprogram_body] = STATE(466), - [sym_package_body] = STATE(466), - [sym__type_declaration] = STATE(466), - [sym_full_type_declaration] = STATE(466), - [sym_private_type_declaration] = STATE(466), - [sym_private_extension_declaration] = STATE(466), - [sym_incomplete_type_declaration] = STATE(466), - [sym__aspect_clause] = STATE(466), - [sym_at_clause] = STATE(466), - [sym_attribute_definition_clause] = STATE(466), - [sym_body_stub] = STATE(466), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(466), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(466), - [sym_protected_body_stub] = STATE(449), - [sym_entry_declaration] = STATE(466), - [sym_enumeration_representation_clause] = STATE(466), - [sym_exception_declaration] = STATE(466), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(466), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(466), - [sym_generic_package_declaration] = STATE(466), - [sym_generic_instantiation] = STATE(466), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_procedure_declaration] = STATE(466), - [sym_null_statement] = STATE(104), - [sym_number_declaration] = STATE(466), - [sym_object_declaration] = STATE(466), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(942), - [sym_pragma_g] = STATE(104), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(466), - [sym__renaming_declaration] = STATE(466), - [sym_object_renaming_declaration] = STATE(466), - [sym_exception_renaming_declaration] = STATE(466), - [sym_package_renaming_declaration] = STATE(466), - [sym_subprogram_renaming_declaration] = STATE(466), - [sym_generic_renaming_declaration] = STATE(466), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(466), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [sym_subprogram_declaration] = STATE(466), - [sym_expression_function_declaration] = STATE(466), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(466), + [sym__declarative_item] = STATE(465), + [sym__basic_declarative_item] = STATE(465), + [sym__basic_declaration] = STATE(465), + [sym__package_declaration] = STATE(465), + [sym_package_specification] = STATE(1898), + [sym_with_clause] = STATE(465), + [sym_use_clause] = STATE(465), + [sym_subunit] = STATE(465), + [sym__proper_body] = STATE(465), + [sym_subprogram_body] = STATE(465), + [sym_package_body] = STATE(465), + [sym__type_declaration] = STATE(465), + [sym_full_type_declaration] = STATE(465), + [sym_private_type_declaration] = STATE(465), + [sym_private_extension_declaration] = STATE(465), + [sym_incomplete_type_declaration] = STATE(465), + [sym__aspect_clause] = STATE(465), + [sym_at_clause] = STATE(465), + [sym_attribute_definition_clause] = STATE(465), + [sym_body_stub] = STATE(465), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(465), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(465), + [sym_protected_body_stub] = STATE(323), + [sym_entry_declaration] = STATE(465), + [sym_enumeration_representation_clause] = STATE(465), + [sym_exception_declaration] = STATE(465), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(465), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(465), + [sym_generic_package_declaration] = STATE(465), + [sym_generic_instantiation] = STATE(465), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_procedure_declaration] = STATE(465), + [sym_null_statement] = STATE(147), + [sym_number_declaration] = STATE(465), + [sym_object_declaration] = STATE(465), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(932), + [sym_pragma_g] = STATE(147), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(465), + [sym__renaming_declaration] = STATE(465), + [sym_object_renaming_declaration] = STATE(465), + [sym_exception_renaming_declaration] = STATE(465), + [sym_package_renaming_declaration] = STATE(465), + [sym_subprogram_renaming_declaration] = STATE(465), + [sym_generic_renaming_declaration] = STATE(465), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(465), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [sym_subprogram_declaration] = STATE(465), + [sym_expression_function_declaration] = STATE(465), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(465), [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), [ts_builtin_sym_end] = ACTIONS(83), [sym_identifier] = ACTIONS(85), [sym_comment] = ACTIONS(3), @@ -9645,101 +9658,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(196), }, [3] = { - [sym__name] = STATE(935), - [sym__defining_identifier_list] = STATE(1899), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__defining_identifier_list] = STATE(1904), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(466), - [sym__basic_declarative_item] = STATE(466), - [sym__basic_declaration] = STATE(466), - [sym__package_declaration] = STATE(466), - [sym_package_specification] = STATE(1895), - [sym_with_clause] = STATE(466), - [sym_use_clause] = STATE(466), - [sym_subunit] = STATE(466), - [sym__proper_body] = STATE(466), - [sym_subprogram_body] = STATE(466), - [sym_package_body] = STATE(466), - [sym__type_declaration] = STATE(466), - [sym_full_type_declaration] = STATE(466), - [sym_private_type_declaration] = STATE(466), - [sym_private_extension_declaration] = STATE(466), - [sym_incomplete_type_declaration] = STATE(466), - [sym__aspect_clause] = STATE(466), - [sym_at_clause] = STATE(466), - [sym_attribute_definition_clause] = STATE(466), - [sym_body_stub] = STATE(466), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(466), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(466), - [sym_protected_body_stub] = STATE(449), - [sym_entry_declaration] = STATE(466), - [sym_enumeration_representation_clause] = STATE(466), - [sym_exception_declaration] = STATE(466), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(466), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(466), - [sym_generic_package_declaration] = STATE(466), - [sym_generic_instantiation] = STATE(466), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_procedure_declaration] = STATE(466), - [sym_null_statement] = STATE(104), - [sym_number_declaration] = STATE(466), - [sym_object_declaration] = STATE(466), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(942), - [sym_pragma_g] = STATE(104), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(466), - [sym__renaming_declaration] = STATE(466), - [sym_object_renaming_declaration] = STATE(466), - [sym_exception_renaming_declaration] = STATE(466), - [sym_package_renaming_declaration] = STATE(466), - [sym_subprogram_renaming_declaration] = STATE(466), - [sym_generic_renaming_declaration] = STATE(466), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(466), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [sym_subprogram_declaration] = STATE(466), - [sym_expression_function_declaration] = STATE(466), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(466), + [sym__declarative_item] = STATE(465), + [sym__basic_declarative_item] = STATE(465), + [sym__basic_declaration] = STATE(465), + [sym__package_declaration] = STATE(465), + [sym_package_specification] = STATE(1898), + [sym_with_clause] = STATE(465), + [sym_use_clause] = STATE(465), + [sym_subunit] = STATE(465), + [sym__proper_body] = STATE(465), + [sym_subprogram_body] = STATE(465), + [sym_package_body] = STATE(465), + [sym__type_declaration] = STATE(465), + [sym_full_type_declaration] = STATE(465), + [sym_private_type_declaration] = STATE(465), + [sym_private_extension_declaration] = STATE(465), + [sym_incomplete_type_declaration] = STATE(465), + [sym__aspect_clause] = STATE(465), + [sym_at_clause] = STATE(465), + [sym_attribute_definition_clause] = STATE(465), + [sym_body_stub] = STATE(465), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(465), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(465), + [sym_protected_body_stub] = STATE(323), + [sym_entry_declaration] = STATE(465), + [sym_enumeration_representation_clause] = STATE(465), + [sym_exception_declaration] = STATE(465), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(465), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(465), + [sym_generic_package_declaration] = STATE(465), + [sym_generic_instantiation] = STATE(465), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_procedure_declaration] = STATE(465), + [sym_null_statement] = STATE(147), + [sym_number_declaration] = STATE(465), + [sym_object_declaration] = STATE(465), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(932), + [sym_pragma_g] = STATE(147), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(465), + [sym__renaming_declaration] = STATE(465), + [sym_object_renaming_declaration] = STATE(465), + [sym_exception_renaming_declaration] = STATE(465), + [sym_package_renaming_declaration] = STATE(465), + [sym_subprogram_renaming_declaration] = STATE(465), + [sym_generic_renaming_declaration] = STATE(465), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(465), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [sym_subprogram_declaration] = STATE(465), + [sym_expression_function_declaration] = STATE(465), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(465), [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), [ts_builtin_sym_end] = ACTIONS(199), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -9784,63 +9798,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [4] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1510), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1527), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -9861,63 +9875,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(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1707), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1519), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -9938,139 +9952,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [6] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1707), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(213), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(215), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [7] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1426), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1445), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10089,72 +10027,148 @@ 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), }, + [7] = { + [sym_unary_adding_operator] = STATE(500), + [sym__name] = STATE(492), + [sym_selected_component] = STATE(492), + [sym__attribute_reference] = STATE(492), + [sym__reduction_attribute_reference] = STATE(492), + [sym_value_sequence] = STATE(1899), + [sym_iterated_element_association] = STATE(1183), + [sym_function_call] = STATE(492), + [sym_qualified_expression] = STATE(492), + [sym__subtype_indication] = STATE(1404), + [sym_range_g] = STATE(1401), + [sym_expression] = STATE(925), + [sym__relation] = STATE(550), + [sym_relation_membership] = STATE(550), + [sym_raise_expression] = STATE(550), + [sym__simple_expression] = STATE(584), + [sym_term] = STATE(503), + [sym__factor] = STATE(481), + [sym_factor_power] = STATE(481), + [sym_factor_abs] = STATE(481), + [sym_factor_not] = STATE(481), + [sym__parenthesized_expression] = STATE(488), + [sym__primary] = STATE(488), + [sym_primary_null] = STATE(488), + [sym_allocator] = STATE(488), + [sym__conditional_expression] = STATE(1664), + [sym_quantified_expression] = STATE(1664), + [sym_declare_expression] = STATE(1664), + [sym_case_expression] = STATE(1664), + [sym_component_choice_list] = STATE(1662), + [sym__aggregate] = STATE(488), + [sym__delta_aggregate] = STATE(488), + [sym_extension_aggregate] = STATE(488), + [sym_record_delta_aggregate] = STATE(488), + [sym_array_delta_aggregate] = STATE(488), + [sym_record_aggregate] = STATE(488), + [sym_record_component_association_list] = STATE(1657), + [sym__named_record_component_association] = STATE(1222), + [sym_null_exclusion] = STATE(778), + [sym__array_aggregate] = STATE(488), + [sym_positional_array_aggregate] = STATE(488), + [sym_null_array_aggregate] = STATE(488), + [sym_named_array_aggregate] = STATE(488), + [sym__array_component_association_list] = STATE(1653), + [sym_array_component_association] = STATE(1094), + [sym_discrete_choice_list] = STATE(1647), + [sym_discrete_choice] = STATE(1220), + [sym_global_aspect_element] = STATE(1304), + [sym_global_mode] = STATE(706), + [sym_non_empty_mode] = STATE(821), + [sym_if_expression] = STATE(1664), + [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), + }, [8] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1913), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1906), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [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(221), - [aux_sym_subprogram_body_token1] = ACTIONS(223), + [aux_sym_subunit_token1] = ACTIONS(261), + [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), @@ -10166,71 +10180,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [9] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1469), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1409), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [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(225), + [aux_sym_package_specification_token3] = ACTIONS(265), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(227), + [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), @@ -10242,63 +10256,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [10] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1510), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1527), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10318,138 +10332,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [11] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(11), - [sym__basic_declarative_item] = STATE(11), - [sym__basic_declaration] = STATE(11), - [sym__package_declaration] = STATE(11), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(11), - [sym__proper_body] = STATE(11), - [sym_subprogram_body] = STATE(11), - [sym_package_body] = STATE(11), - [sym__type_declaration] = STATE(11), - [sym_full_type_declaration] = STATE(11), - [sym_private_type_declaration] = STATE(11), - [sym_private_extension_declaration] = STATE(11), - [sym_incomplete_type_declaration] = STATE(11), - [sym__aspect_clause] = STATE(11), - [sym_at_clause] = STATE(11), - [sym_attribute_definition_clause] = STATE(11), - [sym_body_stub] = STATE(11), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(11), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(11), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(11), - [sym_enumeration_representation_clause] = STATE(11), - [sym_exception_declaration] = STATE(11), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(11), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(11), - [sym_generic_package_declaration] = STATE(11), - [sym_generic_instantiation] = STATE(11), - [sym_null_procedure_declaration] = STATE(11), - [sym_number_declaration] = STATE(11), - [sym_object_declaration] = STATE(11), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(11), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(11), - [sym__renaming_declaration] = STATE(11), - [sym_object_renaming_declaration] = STATE(11), - [sym_exception_renaming_declaration] = STATE(11), - [sym_package_renaming_declaration] = STATE(11), - [sym_subprogram_renaming_declaration] = STATE(11), - [sym_generic_renaming_declaration] = STATE(11), - [sym_subprogram_declaration] = STATE(11), - [sym_expression_function_declaration] = STATE(11), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(11), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(11), - [sym_identifier] = ACTIONS(229), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1519), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(232), - [aux_sym_iterated_element_association_token2] = ACTIONS(235), - [aux_sym_package_specification_token1] = ACTIONS(238), - [aux_sym_package_specification_token3] = ACTIONS(241), - [aux_sym_use_clause_token2] = ACTIONS(243), - [aux_sym_subprogram_body_token1] = ACTIONS(241), - [aux_sym_relation_membership_token1] = ACTIONS(246), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(249), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(252), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(255), - [aux_sym_interface_type_definition_token1] = ACTIONS(258), - [aux_sym_generic_formal_part_token1] = ACTIONS(261), - [aux_sym_global_mode_token1] = ACTIONS(264), - [aux_sym_pragma_g_token1] = ACTIONS(267), - [aux_sym_subtype_declaration_token1] = ACTIONS(270), + [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_private_type_declaration_token1] = ACTIONS(215), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [12] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1840), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1832), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(269), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [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), + }, + [13] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1839), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [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_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [14] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1715), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10467,64 +10632,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), }, - [13] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1654), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [15] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1540), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10542,289 +10707,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [14] = { - [sym_unary_adding_operator] = STATE(505), - [sym__name] = STATE(499), - [sym__attribute_reference] = STATE(499), - [sym__reduction_attribute_reference] = STATE(499), - [sym_value_sequence] = STATE(1897), - [sym_iterated_element_association] = STATE(1240), - [sym_function_call] = STATE(499), - [sym_qualified_expression] = STATE(499), - [sym__subtype_indication] = STATE(1374), - [sym_range_g] = STATE(1360), - [sym_expression] = STATE(912), - [sym__relation] = STATE(554), - [sym_relation_membership] = STATE(554), - [sym_raise_expression] = STATE(554), - [sym__simple_expression] = STATE(585), - [sym_term] = STATE(507), - [sym__factor] = STATE(484), - [sym_factor_power] = STATE(484), - [sym_factor_abs] = STATE(484), - [sym_factor_not] = STATE(484), - [sym__parenthesized_expression] = STATE(486), - [sym__primary] = STATE(486), - [sym_primary_null] = STATE(486), - [sym_allocator] = STATE(486), - [sym__conditional_expression] = STATE(1643), - [sym_quantified_expression] = STATE(1643), - [sym_declare_expression] = STATE(1643), - [sym_case_expression] = STATE(1643), - [sym_component_choice_list] = STATE(1641), - [sym__aggregate] = STATE(486), - [sym__delta_aggregate] = STATE(486), - [sym_extension_aggregate] = STATE(486), - [sym_record_delta_aggregate] = STATE(486), - [sym_array_delta_aggregate] = STATE(486), - [sym_record_aggregate] = STATE(486), - [sym_record_component_association_list] = STATE(1637), - [sym__named_record_component_association] = STATE(1248), - [sym_null_exclusion] = STATE(800), - [sym__array_aggregate] = STATE(486), - [sym_positional_array_aggregate] = STATE(486), - [sym_null_array_aggregate] = STATE(486), - [sym_named_array_aggregate] = STATE(486), - [sym__array_component_association_list] = STATE(1635), - [sym_array_component_association] = STATE(1034), - [sym_discrete_choice_list] = STATE(1631), - [sym_discrete_choice] = STATE(1262), - [sym_global_aspect_element] = STATE(1288), - [sym_global_mode] = STATE(709), - [sym_non_empty_mode] = STATE(815), - [sym_if_expression] = STATE(1643), + [16] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym__package_declaration] = STATE(16), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(16), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(279), - [sym_character_literal] = ACTIONS(279), - [sym_numeric_literal] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(285), - [sym_target_name] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [aux_sym_chunk_specification_token1] = ACTIONS(291), - [aux_sym_iterated_element_association_token1] = ACTIONS(293), - [aux_sym_relation_membership_token1] = ACTIONS(295), - [aux_sym_raise_expression_token1] = ACTIONS(297), - [aux_sym_factor_abs_token1] = ACTIONS(299), - [aux_sym_primary_null_token1] = ACTIONS(301), - [aux_sym_allocator_token1] = ACTIONS(303), - [aux_sym_declare_expression_token1] = ACTIONS(305), - [aux_sym_case_expression_token1] = ACTIONS(307), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(309), - [aux_sym_global_mode_token1] = ACTIONS(311), - [aux_sym_non_empty_mode_token1] = ACTIONS(313), - [aux_sym_if_expression_token1] = ACTIONS(315), - }, - [15] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1799), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(317), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [16] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(11), - [sym__basic_declarative_item] = STATE(11), - [sym__basic_declaration] = STATE(11), - [sym__package_declaration] = STATE(11), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(11), - [sym__proper_body] = STATE(11), - [sym_subprogram_body] = STATE(11), - [sym_package_body] = STATE(11), - [sym__type_declaration] = STATE(11), - [sym_full_type_declaration] = STATE(11), - [sym_private_type_declaration] = STATE(11), - [sym_private_extension_declaration] = STATE(11), - [sym_incomplete_type_declaration] = STATE(11), - [sym__aspect_clause] = STATE(11), - [sym_at_clause] = STATE(11), - [sym_attribute_definition_clause] = STATE(11), - [sym_body_stub] = STATE(11), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(11), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(11), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(11), - [sym_enumeration_representation_clause] = STATE(11), - [sym_exception_declaration] = STATE(11), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(11), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(11), - [sym_generic_package_declaration] = STATE(11), - [sym_generic_instantiation] = STATE(11), - [sym_null_procedure_declaration] = STATE(11), - [sym_number_declaration] = STATE(11), - [sym_object_declaration] = STATE(11), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(11), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(11), - [sym__renaming_declaration] = STATE(11), - [sym_object_renaming_declaration] = STATE(11), - [sym_exception_renaming_declaration] = STATE(11), - [sym_package_renaming_declaration] = STATE(11), - [sym_subprogram_renaming_declaration] = STATE(11), - [sym_generic_renaming_declaration] = STATE(11), - [sym_subprogram_declaration] = STATE(11), - [sym_expression_function_declaration] = STATE(11), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(11), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(11), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(319), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(319), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), + [aux_sym_iterated_element_association_token1] = ACTIONS(280), + [aux_sym_iterated_element_association_token2] = ACTIONS(283), + [aux_sym_package_specification_token1] = ACTIONS(286), + [aux_sym_package_specification_token3] = ACTIONS(289), + [aux_sym_use_clause_token2] = ACTIONS(291), + [aux_sym_subprogram_body_token1] = ACTIONS(289), + [aux_sym_relation_membership_token1] = ACTIONS(294), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(297), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(300), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(303), + [aux_sym_interface_type_definition_token1] = ACTIONS(306), + [aux_sym_generic_formal_part_token1] = ACTIONS(309), + [aux_sym_global_mode_token1] = ACTIONS(312), + [aux_sym_pragma_g_token1] = ACTIONS(315), + [aux_sym_subtype_declaration_token1] = ACTIONS(318), }, [17] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1822), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1906), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [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(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), + }, + [18] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1770), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10842,13 +10932,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [18] = { - [sym__defining_identifier_list] = STATE(1899), + [19] = { + [sym__defining_identifier_list] = STATE(1904), [sym__declarative_item] = STATE(16), [sym__basic_declarative_item] = STATE(16), [sym__basic_declaration] = STATE(16), [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), + [sym_package_specification] = STATE(1898), [sym_use_clause] = STATE(16), [sym__proper_body] = STATE(16), [sym_subprogram_body] = STATE(16), @@ -10862,32 +10952,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(16), [sym_attribute_definition_clause] = STATE(16), [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), + [sym_protected_body_stub] = STATE(323), [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1510), [sym_enumeration_representation_clause] = STATE(16), [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), + [sym_function_specification] = STATE(1058), [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), + [sym_generic_formal_part] = STATE(885), [sym_generic_subprogram_declaration] = STATE(16), [sym_generic_package_declaration] = STATE(16), [sym_generic_instantiation] = STATE(16), [sym_null_procedure_declaration] = STATE(16), [sym_number_declaration] = STATE(16), [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), + [sym_procedure_specification] = STATE(1073), [sym_record_representation_clause] = STATE(16), [sym__renaming_declaration] = STATE(16), [sym_object_renaming_declaration] = STATE(16), @@ -10897,7 +10986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_renaming_declaration] = STATE(16), [sym_subprogram_declaration] = STATE(16), [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), + [sym__subprogram_specification] = STATE(990), [sym_subtype_declaration] = STATE(16), [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), [sym_identifier] = ACTIONS(201), @@ -10905,6 +10994,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(323), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(323), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), + }, + [20] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1527), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_subprogram_body_token1] = ACTIONS(207), [aux_sym_relation_membership_token1] = ACTIONS(31), @@ -10917,139 +11082,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), }, - [19] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1524), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(323), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), - }, - [20] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1885), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [21] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1884), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11067,64 +11157,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [21] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1771), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [22] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1584), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11142,64 +11232,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(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1707), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [23] = { + [sym__defining_identifier_list] = STATE(1904), + [sym__declarative_item] = STATE(19), + [sym__basic_declarative_item] = STATE(19), + [sym__basic_declaration] = STATE(19), + [sym__package_declaration] = STATE(19), + [sym_package_specification] = STATE(1898), + [sym_use_clause] = STATE(19), + [sym__proper_body] = STATE(19), + [sym_subprogram_body] = STATE(19), + [sym_package_body] = STATE(19), + [sym__type_declaration] = STATE(19), + [sym_full_type_declaration] = STATE(19), + [sym_private_type_declaration] = STATE(19), + [sym_private_extension_declaration] = STATE(19), + [sym_incomplete_type_declaration] = STATE(19), + [sym__aspect_clause] = STATE(19), + [sym_at_clause] = STATE(19), + [sym_attribute_definition_clause] = STATE(19), + [sym_body_stub] = STATE(19), + [sym_subprogram_body_stub] = STATE(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(19), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(19), + [sym_protected_body_stub] = STATE(323), + [sym__declarative_item_pragma] = STATE(19), + [sym_non_empty_declarative_part] = STATE(1519), + [sym_enumeration_representation_clause] = STATE(19), + [sym_exception_declaration] = STATE(19), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(19), + [sym_generic_formal_part] = STATE(885), + [sym_generic_subprogram_declaration] = STATE(19), + [sym_generic_package_declaration] = STATE(19), + [sym_generic_instantiation] = STATE(19), + [sym_null_procedure_declaration] = STATE(19), + [sym_number_declaration] = STATE(19), + [sym_object_declaration] = STATE(19), + [sym_single_task_declaration] = STATE(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_pragma_g] = STATE(19), + [sym_procedure_specification] = STATE(1073), + [sym_record_representation_clause] = STATE(19), + [sym__renaming_declaration] = STATE(19), + [sym_object_renaming_declaration] = STATE(19), + [sym_exception_renaming_declaration] = STATE(19), + [sym_package_renaming_declaration] = STATE(19), + [sym_subprogram_renaming_declaration] = STATE(19), + [sym_generic_renaming_declaration] = STATE(19), + [sym_subprogram_declaration] = STATE(19), + [sym_expression_function_declaration] = STATE(19), + [sym__subprogram_specification] = STATE(990), + [sym_subtype_declaration] = STATE(19), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11217,214 +11307,68 @@ 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), }, - [23] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(16), - [sym__basic_declarative_item] = STATE(16), - [sym__basic_declaration] = STATE(16), - [sym__package_declaration] = STATE(16), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(16), - [sym__proper_body] = STATE(16), - [sym_subprogram_body] = STATE(16), - [sym_package_body] = STATE(16), - [sym__type_declaration] = STATE(16), - [sym_full_type_declaration] = STATE(16), - [sym_private_type_declaration] = STATE(16), - [sym_private_extension_declaration] = STATE(16), - [sym_incomplete_type_declaration] = STATE(16), - [sym__aspect_clause] = STATE(16), - [sym_at_clause] = STATE(16), - [sym_attribute_definition_clause] = STATE(16), - [sym_body_stub] = STATE(16), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(16), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(16), - [sym_protected_body_stub] = STATE(449), - [sym__declarative_item_pragma] = STATE(16), - [sym_non_empty_declarative_part] = STATE(1913), - [sym_enumeration_representation_clause] = STATE(16), - [sym_exception_declaration] = STATE(16), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(16), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(16), - [sym_generic_package_declaration] = STATE(16), - [sym_generic_instantiation] = STATE(16), - [sym_null_procedure_declaration] = STATE(16), - [sym_number_declaration] = STATE(16), - [sym_object_declaration] = STATE(16), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_pragma_g] = STATE(16), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(16), - [sym__renaming_declaration] = STATE(16), - [sym_object_renaming_declaration] = STATE(16), - [sym_exception_renaming_declaration] = STATE(16), - [sym_package_renaming_declaration] = STATE(16), - [sym_subprogram_renaming_declaration] = STATE(16), - [sym_generic_renaming_declaration] = STATE(16), - [sym_subprogram_declaration] = STATE(16), - [sym_expression_function_declaration] = STATE(16), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(16), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [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(223), - [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), - }, [24] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(329), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(332), - [sym_character_literal] = ACTIONS(332), - [sym_target_name] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(335), - [aux_sym_iterated_element_association_token1] = ACTIONS(338), - [aux_sym_iterator_filter_token1] = ACTIONS(341), - [aux_sym_package_specification_token3] = ACTIONS(341), - [aux_sym_subprogram_body_token1] = ACTIONS(343), - [aux_sym_expression_token2] = ACTIONS(341), - [aux_sym_expression_token3] = ACTIONS(341), - [aux_sym_expression_token4] = ACTIONS(341), - [aux_sym_raise_expression_token1] = ACTIONS(346), - [aux_sym_primary_null_token1] = ACTIONS(349), - [aux_sym_declare_expression_token1] = ACTIONS(352), - [aux_sym_case_expression_token1] = ACTIONS(355), - [aux_sym_exception_declaration_token1] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(358), - [aux_sym_pragma_g_token1] = ACTIONS(361), - [aux_sym_if_expression_token1] = ACTIONS(364), - [aux_sym_elsif_expression_item_token1] = ACTIONS(341), - [aux_sym_result_profile_token1] = ACTIONS(367), - [aux_sym_asynchronous_select_token1] = ACTIONS(370), - [aux_sym_asynchronous_select_token2] = ACTIONS(373), - [aux_sym_requeue_statement_token1] = ACTIONS(376), - [aux_sym_accept_statement_token1] = ACTIONS(379), - [aux_sym_exit_statement_token1] = ACTIONS(382), - [aux_sym_goto_statement_token1] = ACTIONS(385), - [aux_sym_delay_until_statement_token1] = ACTIONS(388), - [aux_sym_loop_statement_token1] = ACTIONS(391), - [aux_sym_iteration_scheme_token1] = ACTIONS(394), - }, - [25] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), [sym_label] = STATE(26), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(26), - [sym_identifier] = ACTIONS(397), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), - [aux_sym_iterator_filter_token1] = ACTIONS(401), - [aux_sym_package_specification_token3] = ACTIONS(401), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterator_filter_token1] = ACTIONS(333), + [aux_sym_package_specification_token3] = ACTIONS(333), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(401), - [aux_sym_expression_token3] = ACTIONS(401), - [aux_sym_expression_token4] = ACTIONS(401), + [aux_sym_expression_token2] = ACTIONS(333), + [aux_sym_expression_token3] = ACTIONS(333), + [aux_sym_expression_token4] = ACTIONS(333), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), [aux_sym_case_expression_token1] = ACTIONS(45), - [aux_sym_exception_declaration_token1] = ACTIONS(401), + [aux_sym_exception_declaration_token1] = ACTIONS(333), [anon_sym_LT_LT] = ACTIONS(55), [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_elsif_expression_item_token1] = ACTIONS(401), + [aux_sym_elsif_expression_item_token1] = ACTIONS(333), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -11436,50 +11380,124 @@ 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), }, + [25] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(335), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(338), + [sym_character_literal] = ACTIONS(338), + [sym_target_name] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(341), + [aux_sym_iterated_element_association_token1] = ACTIONS(344), + [aux_sym_iterator_filter_token1] = ACTIONS(347), + [aux_sym_package_specification_token3] = ACTIONS(347), + [aux_sym_subprogram_body_token1] = ACTIONS(349), + [aux_sym_expression_token2] = ACTIONS(347), + [aux_sym_expression_token3] = ACTIONS(347), + [aux_sym_expression_token4] = ACTIONS(347), + [aux_sym_raise_expression_token1] = ACTIONS(352), + [aux_sym_primary_null_token1] = ACTIONS(355), + [aux_sym_declare_expression_token1] = ACTIONS(358), + [aux_sym_case_expression_token1] = ACTIONS(361), + [aux_sym_exception_declaration_token1] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(364), + [aux_sym_pragma_g_token1] = ACTIONS(367), + [aux_sym_if_expression_token1] = ACTIONS(370), + [aux_sym_elsif_expression_item_token1] = ACTIONS(347), + [aux_sym_result_profile_token1] = ACTIONS(373), + [aux_sym_asynchronous_select_token1] = ACTIONS(376), + [aux_sym_asynchronous_select_token2] = ACTIONS(379), + [aux_sym_requeue_statement_token1] = ACTIONS(382), + [aux_sym_accept_statement_token1] = ACTIONS(385), + [aux_sym_exit_statement_token1] = ACTIONS(388), + [aux_sym_goto_statement_token1] = ACTIONS(391), + [aux_sym_delay_until_statement_token1] = ACTIONS(394), + [aux_sym_loop_statement_token1] = ACTIONS(397), + [aux_sym_iteration_scheme_token1] = ACTIONS(400), + }, [26] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), [sym_label] = STATE(512), - [sym_null_statement] = STATE(164), - [sym_pragma_g] = STATE(164), - [sym__simple_statement] = STATE(164), - [sym__compound_statement] = STATE(164), - [sym__select_statement] = STATE(164), - [sym_asynchronous_select] = STATE(164), - [sym_conditional_entry_call] = STATE(164), - [sym_timed_entry_call] = STATE(164), - [sym_selective_accept] = STATE(164), - [sym_abort_statement] = STATE(164), - [sym_requeue_statement] = STATE(164), - [sym_accept_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_block_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_exit_statement] = STATE(164), - [sym_goto_statement] = STATE(164), - [sym__delay_statement] = STATE(164), - [sym_delay_until_statement] = STATE(164), - [sym_delay_relative_statement] = STATE(164), - [sym_simple_return_statement] = STATE(164), - [sym_extended_return_statement] = STATE(164), - [sym_procedure_call_statement] = STATE(164), - [sym_raise_statement] = STATE(164), - [sym_loop_statement] = STATE(164), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(164), + [sym_null_statement] = STATE(129), + [sym_pragma_g] = STATE(129), + [sym__simple_statement] = STATE(129), + [sym__compound_statement] = STATE(129), + [sym__select_statement] = STATE(129), + [sym_asynchronous_select] = STATE(129), + [sym_conditional_entry_call] = STATE(129), + [sym_timed_entry_call] = STATE(129), + [sym_selective_accept] = STATE(129), + [sym_abort_statement] = STATE(129), + [sym_requeue_statement] = STATE(129), + [sym_accept_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_block_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_exit_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym__delay_statement] = STATE(129), + [sym_delay_until_statement] = STATE(129), + [sym_delay_relative_statement] = STATE(129), + [sym_simple_return_statement] = STATE(129), + [sym_extended_return_statement] = STATE(129), + [sym_procedure_call_statement] = STATE(129), + [sym_raise_statement] = STATE(129), + [sym_loop_statement] = STATE(129), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(129), [aux_sym__sequence_of_statements_repeat2] = STATE(512), - [sym_identifier] = ACTIONS(397), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_iterator_filter_token1] = ACTIONS(403), [aux_sym_package_specification_token3] = ACTIONS(403), [aux_sym_subprogram_body_token1] = ACTIONS(29), @@ -11507,124 +11525,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [27] = { - [sym__defining_identifier_list] = STATE(1899), - [sym__declarative_item] = STATE(463), - [sym__basic_declarative_item] = STATE(463), - [sym__basic_declaration] = STATE(463), - [sym__package_declaration] = STATE(463), - [sym_package_specification] = STATE(1895), - [sym_use_clause] = STATE(463), - [sym__proper_body] = STATE(463), - [sym_subprogram_body] = STATE(463), - [sym_package_body] = STATE(463), - [sym__type_declaration] = STATE(463), - [sym_full_type_declaration] = STATE(463), - [sym_private_type_declaration] = STATE(463), - [sym_private_extension_declaration] = STATE(463), - [sym_incomplete_type_declaration] = STATE(463), - [sym__aspect_clause] = STATE(463), - [sym_at_clause] = STATE(463), - [sym_attribute_definition_clause] = STATE(463), - [sym_body_stub] = STATE(463), - [sym_subprogram_body_stub] = STATE(449), - [sym_package_body_stub] = STATE(449), - [sym_task_body] = STATE(463), - [sym_task_body_stub] = STATE(449), - [sym_protected_type_declaration] = STATE(452), - [sym_single_protected_declaration] = STATE(453), - [sym_protected_body] = STATE(463), - [sym_protected_body_stub] = STATE(449), - [sym_enumeration_representation_clause] = STATE(463), - [sym_exception_declaration] = STATE(463), - [sym_function_specification] = STATE(1087), - [sym__generic_declaration] = STATE(463), - [sym_generic_formal_part] = STATE(888), - [sym_generic_subprogram_declaration] = STATE(463), - [sym_generic_package_declaration] = STATE(463), - [sym_generic_instantiation] = STATE(463), - [sym_null_procedure_declaration] = STATE(463), - [sym_number_declaration] = STATE(463), - [sym_object_declaration] = STATE(463), - [sym_single_task_declaration] = STATE(453), - [sym_task_type_declaration] = STATE(452), - [sym_overriding_indicator] = STATE(986), - [sym_procedure_specification] = STATE(1011), - [sym_record_representation_clause] = STATE(463), - [sym__renaming_declaration] = STATE(463), - [sym_object_renaming_declaration] = STATE(463), - [sym_exception_renaming_declaration] = STATE(463), - [sym_package_renaming_declaration] = STATE(463), - [sym_subprogram_renaming_declaration] = STATE(463), - [sym_generic_renaming_declaration] = STATE(463), - [sym_subprogram_declaration] = STATE(463), - [sym_expression_function_declaration] = STATE(463), - [sym__subprogram_specification] = STATE(965), - [sym_subtype_declaration] = STATE(463), - [sym_identifier] = ACTIONS(201), + [sym_unary_adding_operator] = STATE(500), + [sym__name] = STATE(492), + [sym_selected_component] = STATE(492), + [sym__attribute_reference] = STATE(492), + [sym__reduction_attribute_reference] = STATE(492), + [sym_value_sequence] = STATE(1899), + [sym_iterated_element_association] = STATE(1183), + [sym_function_call] = STATE(492), + [sym_qualified_expression] = STATE(492), + [sym__subtype_indication] = STATE(1404), + [sym_range_g] = STATE(1401), + [sym_expression] = STATE(925), + [sym__relation] = STATE(550), + [sym_relation_membership] = STATE(550), + [sym_raise_expression] = STATE(550), + [sym__simple_expression] = STATE(584), + [sym_term] = STATE(503), + [sym__factor] = STATE(481), + [sym_factor_power] = STATE(481), + [sym_factor_abs] = STATE(481), + [sym_factor_not] = STATE(481), + [sym__parenthesized_expression] = STATE(488), + [sym__primary] = STATE(488), + [sym_primary_null] = STATE(488), + [sym_allocator] = STATE(488), + [sym__conditional_expression] = STATE(1664), + [sym_quantified_expression] = STATE(1664), + [sym_declare_expression] = STATE(1664), + [sym_case_expression] = STATE(1664), + [sym_component_choice_list] = STATE(1662), + [sym__aggregate] = STATE(488), + [sym__delta_aggregate] = STATE(488), + [sym_extension_aggregate] = STATE(488), + [sym_record_delta_aggregate] = STATE(488), + [sym_array_delta_aggregate] = STATE(488), + [sym_record_aggregate] = STATE(488), + [sym_record_component_association_list] = STATE(1657), + [sym__named_record_component_association] = STATE(1222), + [sym_null_exclusion] = STATE(778), + [sym__array_aggregate] = STATE(488), + [sym_positional_array_aggregate] = STATE(488), + [sym_null_array_aggregate] = STATE(488), + [sym_named_array_aggregate] = STATE(488), + [sym__array_component_association_list] = STATE(1653), + [sym_array_component_association] = STATE(1094), + [sym_discrete_choice_list] = STATE(1647), + [sym_discrete_choice] = STATE(1220), + [sym_if_expression] = STATE(1664), + [sym_identifier] = ACTIONS(221), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_with_clause_token2] = ACTIONS(405), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_subtype_declaration_token1] = ACTIONS(81), + [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), }, [28] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1305), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1163), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(405), + [aux_sym_expression_token3] = ACTIONS(407), + [aux_sym_expression_token4] = ACTIONS(407), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [29] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1164), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_package_specification_token3] = ACTIONS(409), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(407), [aux_sym_expression_token3] = ACTIONS(409), [aux_sym_expression_token4] = ACTIONS(409), [aux_sym_raise_expression_token1] = ACTIONS(33), @@ -11645,192 +11734,125 @@ 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_unary_adding_operator] = STATE(505), - [sym__name] = STATE(499), - [sym__attribute_reference] = STATE(499), - [sym__reduction_attribute_reference] = STATE(499), - [sym_value_sequence] = STATE(1897), - [sym_iterated_element_association] = STATE(1240), - [sym_function_call] = STATE(499), - [sym_qualified_expression] = STATE(499), - [sym__subtype_indication] = STATE(1374), - [sym_range_g] = STATE(1360), - [sym_expression] = STATE(912), - [sym__relation] = STATE(554), - [sym_relation_membership] = STATE(554), - [sym_raise_expression] = STATE(554), - [sym__simple_expression] = STATE(585), - [sym_term] = STATE(507), - [sym__factor] = STATE(484), - [sym_factor_power] = STATE(484), - [sym_factor_abs] = STATE(484), - [sym_factor_not] = STATE(484), - [sym__parenthesized_expression] = STATE(486), - [sym__primary] = STATE(486), - [sym_primary_null] = STATE(486), - [sym_allocator] = STATE(486), - [sym__conditional_expression] = STATE(1643), - [sym_quantified_expression] = STATE(1643), - [sym_declare_expression] = STATE(1643), - [sym_case_expression] = STATE(1643), - [sym_component_choice_list] = STATE(1641), - [sym__aggregate] = STATE(486), - [sym__delta_aggregate] = STATE(486), - [sym_extension_aggregate] = STATE(486), - [sym_record_delta_aggregate] = STATE(486), - [sym_array_delta_aggregate] = STATE(486), - [sym_record_aggregate] = STATE(486), - [sym_record_component_association_list] = STATE(1637), - [sym__named_record_component_association] = STATE(1248), - [sym_null_exclusion] = STATE(800), - [sym__array_aggregate] = STATE(486), - [sym_positional_array_aggregate] = STATE(486), - [sym_null_array_aggregate] = STATE(486), - [sym_named_array_aggregate] = STATE(486), - [sym__array_component_association_list] = STATE(1635), - [sym_array_component_association] = STATE(1034), - [sym_discrete_choice_list] = STATE(1631), - [sym_discrete_choice] = STATE(1262), - [sym_if_expression] = STATE(1643), - [sym_identifier] = ACTIONS(277), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(279), - [sym_character_literal] = ACTIONS(279), - [sym_numeric_literal] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(285), - [sym_target_name] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [aux_sym_iterated_element_association_token1] = ACTIONS(293), - [aux_sym_relation_membership_token1] = ACTIONS(295), - [aux_sym_raise_expression_token1] = ACTIONS(297), - [aux_sym_factor_abs_token1] = ACTIONS(299), - [aux_sym_primary_null_token1] = ACTIONS(301), - [aux_sym_allocator_token1] = ACTIONS(303), - [aux_sym_declare_expression_token1] = ACTIONS(305), - [aux_sym_case_expression_token1] = ACTIONS(307), - [aux_sym_positional_array_aggregate_token1] = ACTIONS(309), - [aux_sym_if_expression_token1] = ACTIONS(315), - }, [30] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1161), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__defining_identifier_list] = STATE(1904), + [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(1898), + [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(323), + [sym_package_body_stub] = STATE(323), + [sym_task_body] = STATE(466), + [sym_task_body_stub] = STATE(323), + [sym_protected_type_declaration] = STATE(325), + [sym_single_protected_declaration] = STATE(329), + [sym_protected_body] = STATE(466), + [sym_protected_body_stub] = STATE(323), + [sym_enumeration_representation_clause] = STATE(466), + [sym_exception_declaration] = STATE(466), + [sym_function_specification] = STATE(1058), + [sym__generic_declaration] = STATE(466), + [sym_generic_formal_part] = STATE(885), + [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(329), + [sym_task_type_declaration] = STATE(325), + [sym_overriding_indicator] = STATE(961), + [sym_procedure_specification] = STATE(1073), + [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(990), + [sym_subtype_declaration] = STATE(466), + [sym_identifier] = ACTIONS(201), [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(411), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(411), - [aux_sym_expression_token4] = ACTIONS(411), - [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), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_with_clause_token2] = ACTIONS(411), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [31] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1819), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1659), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -11851,53 +11873,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [32] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1496), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1751), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -11918,53 +11941,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [33] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1580), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1502), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -11985,53 +12009,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [34] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1841), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1707), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12052,53 +12077,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [35] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1708), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1598), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12119,53 +12145,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [36] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1557), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1813), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12186,53 +12213,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [37] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1915), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1840), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12253,53 +12281,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [38] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1842), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1914), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12320,53 +12349,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [39] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1847), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1561), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12387,53 +12417,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [40] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1599), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1525), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12454,53 +12485,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [41] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1555), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1845), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12521,53 +12553,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [42] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1715), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1736), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12588,53 +12621,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [43] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1679), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1726), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12655,53 +12689,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [44] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1525), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1881), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12722,53 +12757,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [45] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1663), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1678), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -12789,253 +12825,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [46] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1566), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1838), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(407), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [47] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1807), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [48] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1546), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [49] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1868), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_package_specification_token3] = ACTIONS(413), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), @@ -13056,54 +12892,55 @@ 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), }, - [50] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1629), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [47] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1615), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13123,54 +12960,259 @@ 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), }, - [51] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1768), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [48] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1679), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [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(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1579), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(71), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(25), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(25), + [aux_sym__sequence_of_statements_repeat2] = STATE(71), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_iterator_filter_token1] = ACTIONS(333), + [aux_sym_package_specification_token3] = ACTIONS(333), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(333), + [aux_sym_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(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1854), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13191,60 +13233,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [52] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(71), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__simple_statement] = STATE(104), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1545), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), [sym_statement] = STATE(24), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(71), - [sym_identifier] = ACTIONS(397), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), - [aux_sym_iterator_filter_token1] = ACTIONS(401), - [aux_sym_package_specification_token3] = ACTIONS(401), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [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(401), + [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), @@ -13258,53 +13301,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [53] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1677), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1843), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13325,53 +13369,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [54] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1903), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1902), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13392,54 +13437,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [55] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1882), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1580), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(405), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), @@ -13459,53 +13505,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [56] = { - [sym__name] = STATE(935), - [sym__attribute_reference] = STATE(935), - [sym__reduction_attribute_reference] = STATE(935), - [sym_value_sequence] = STATE(1897), - [sym_function_call] = STATE(935), - [sym_qualified_expression] = STATE(935), - [sym_handled_sequence_of_statements] = STATE(1656), - [sym_loop_label] = STATE(941), - [sym_label] = STATE(85), - [sym_null_statement] = STATE(104), - [sym_pragma_g] = STATE(104), - [sym__sequence_of_statements] = STATE(1339), - [sym__simple_statement] = STATE(104), - [sym_statement] = STATE(25), - [sym__compound_statement] = STATE(104), - [sym__select_statement] = STATE(104), - [sym_asynchronous_select] = STATE(104), - [sym_conditional_entry_call] = STATE(104), - [sym_timed_entry_call] = STATE(104), - [sym_selective_accept] = STATE(104), - [sym_abort_statement] = STATE(104), - [sym_requeue_statement] = STATE(104), - [sym_accept_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_block_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_exit_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__delay_statement] = STATE(104), - [sym_delay_until_statement] = STATE(104), - [sym_delay_relative_statement] = STATE(104), - [sym_simple_return_statement] = STATE(104), - [sym_extended_return_statement] = STATE(104), - [sym_procedure_call_statement] = STATE(104), - [sym_raise_statement] = STATE(104), - [sym_loop_statement] = STATE(104), - [sym_iteration_scheme] = STATE(1887), - [sym_assignment_statement] = STATE(104), - [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(85), - [sym_identifier] = ACTIONS(397), + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_handled_sequence_of_statements] = STATE(1748), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1347), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(399), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [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), + }, + [57] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1698), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [58] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1468), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [59] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1724), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [60] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1029), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [61] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1537), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [62] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1829), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [63] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1656), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [64] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1253), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(50), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(50), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [65] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1816), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [66] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1495), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [67] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1782), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [68] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1288), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [69] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1539), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(24), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), + [aux_sym_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), + }, + [70] = { + [sym__name] = STATE(907), + [sym_selected_component] = STATE(907), + [sym__attribute_reference] = STATE(907), + [sym__reduction_attribute_reference] = STATE(907), + [sym_value_sequence] = STATE(1899), + [sym_function_call] = STATE(907), + [sym_qualified_expression] = STATE(907), + [sym_loop_label] = STATE(931), + [sym_label] = STATE(78), + [sym_null_statement] = STATE(147), + [sym_pragma_g] = STATE(147), + [sym__sequence_of_statements] = STATE(1281), + [sym__simple_statement] = STATE(147), + [sym_statement] = STATE(50), + [sym__compound_statement] = STATE(147), + [sym__select_statement] = STATE(147), + [sym_asynchronous_select] = STATE(147), + [sym_conditional_entry_call] = STATE(147), + [sym_timed_entry_call] = STATE(147), + [sym_selective_accept] = STATE(147), + [sym_abort_statement] = STATE(147), + [sym_requeue_statement] = STATE(147), + [sym_accept_statement] = STATE(147), + [sym_case_statement] = STATE(147), + [sym_block_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_exit_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__delay_statement] = STATE(147), + [sym_delay_until_statement] = STATE(147), + [sym_delay_relative_statement] = STATE(147), + [sym_simple_return_statement] = STATE(147), + [sym_extended_return_statement] = STATE(147), + [sym_procedure_call_statement] = STATE(147), + [sym_raise_statement] = STATE(147), + [sym_loop_statement] = STATE(147), + [sym_iteration_scheme] = STATE(1890), + [sym_assignment_statement] = STATE(147), + [aux_sym__sequence_of_statements_repeat1] = STATE(50), + [aux_sym__sequence_of_statements_repeat2] = STATE(78), + [sym_identifier] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(331), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13528,1351 +14513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1523), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [127] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1852), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [254] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1658), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [381] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1648), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [508] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1175), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(52), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [635] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(998), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [762] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1860), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [889] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1459), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1016] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1604), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1143] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1538), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1270] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1773), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1397] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1698), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1524] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1197), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(25), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1651] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - aux_sym_subprogram_body_token1, - ACTIONS(33), 1, - aux_sym_raise_expression_token1, - ACTIONS(35), 1, - aux_sym_primary_null_token1, - ACTIONS(43), 1, - aux_sym_declare_expression_token1, - ACTIONS(45), 1, - aux_sym_case_expression_token1, - ACTIONS(55), 1, - anon_sym_LT_LT, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(59), 1, - aux_sym_if_expression_token1, - ACTIONS(61), 1, - aux_sym_result_profile_token1, - ACTIONS(63), 1, - aux_sym_asynchronous_select_token1, - ACTIONS(65), 1, - aux_sym_asynchronous_select_token2, - ACTIONS(67), 1, - aux_sym_requeue_statement_token1, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(71), 1, - aux_sym_exit_statement_token1, - ACTIONS(73), 1, - aux_sym_goto_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(77), 1, - aux_sym_loop_statement_token1, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, - sym_identifier, - ACTIONS(399), 1, - aux_sym_iterated_element_association_token1, - STATE(941), 1, - sym_loop_label, - STATE(1171), 1, - sym__sequence_of_statements, - STATE(1887), 1, - sym_iteration_scheme, - STATE(1897), 1, - sym_value_sequence, - STATE(52), 2, - sym_statement, - aux_sym__sequence_of_statements_repeat1, - STATE(85), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(9), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(104), 26, - sym_null_statement, - sym_pragma_g, - sym__simple_statement, - sym__compound_statement, - sym__select_statement, - sym_asynchronous_select, - sym_conditional_entry_call, - sym_timed_entry_call, - sym_selective_accept, - sym_abort_statement, - sym_requeue_statement, - sym_accept_statement, - sym_case_statement, - sym_block_statement, - sym_if_statement, - sym_exit_statement, - sym_goto_statement, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - sym_simple_return_statement, - sym_extended_return_statement, - sym_procedure_call_statement, - sym_raise_statement, - sym_loop_statement, - sym_assignment_statement, - [1778] = 29, + [0] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -14911,15 +14552,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, ACTIONS(79), 1, aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, + ACTIONS(329), 1, sym_identifier, - ACTIONS(399), 1, + ACTIONS(331), 1, aux_sym_iterated_element_association_token1, - STATE(941), 1, + STATE(931), 1, sym_loop_label, - STATE(1887), 1, + STATE(1890), 1, sym_iteration_scheme, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, STATE(512), 2, sym_label, @@ -14932,13 +14573,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(935), 5, + STATE(907), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(164), 26, + STATE(129), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -14965,180 +14607,89 @@ static const uint16_t ts_small_parse_table[] = { sym_raise_statement, sym_loop_statement, sym_assignment_statement, - [1900] = 28, + [123] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - 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(415), 1, - aux_sym_compilation_unit_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(419), 1, - aux_sym_package_specification_token3, - ACTIONS(421), 1, - aux_sym_allocator_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(78), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [2020] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(305), 1, + ACTIONS(249), 1, aux_sym_declare_expression_token1, - ACTIONS(307), 1, + ACTIONS(251), 1, aux_sym_case_expression_token1, - ACTIONS(315), 1, + ACTIONS(259), 1, aux_sym_if_expression_token1, - ACTIONS(427), 1, + ACTIONS(415), 1, sym_identifier, - ACTIONS(429), 1, + ACTIONS(417), 1, aux_sym_iterated_element_association_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(433), 1, + ACTIONS(421), 1, anon_sym_LT_GT, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1237), 1, + STATE(1173), 1, sym_parameter_association, - STATE(1359), 1, - sym_expression, - STATE(1421), 1, + STATE(1354), 1, sym__subtype_indication, - STATE(1542), 1, + STATE(1448), 1, + sym_expression, + STATE(1552), 1, sym_component_choice_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(1170), 2, + STATE(1167), 2, sym_range_g, sym__discrete_range, - ACTIONS(279), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(1544), 5, + STATE(1556), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(486), 14, + STATE(492), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -15153,7 +14704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2149] = 27, + [253] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15178,833 +14729,36 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(435), 1, aux_sym_compilation_unit_token1, - ACTIONS(437), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(75), 34, - 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, - [2266] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(439), 1, - aux_sym_compilation_unit_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(77), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [2383] = 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(415), 1, - aux_sym_compilation_unit_token1, - ACTIONS(417), 1, aux_sym_package_specification_token1, - ACTIONS(419), 1, + ACTIONS(427), 1, aux_sym_package_specification_token3, - ACTIONS(423), 1, + ACTIONS(429), 1, + aux_sym_allocator_token1, + ACTIONS(431), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, + ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - STATE(888), 1, + STATE(885), 1, sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, + STATE(963), 1, sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, sym_function_specification, - STATE(1895), 1, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, sym_package_specification, - STATE(1899), 1, + STATE(1904), 1, sym__defining_identifier_list, - STATE(452), 2, + STATE(325), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(78), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [2500] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 1, - sym_identifier, - ACTIONS(446), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(449), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(454), 1, - aux_sym_package_specification_token1, - ACTIONS(457), 1, - aux_sym_use_clause_token2, - ACTIONS(460), 1, - aux_sym_relation_membership_token1, - ACTIONS(463), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(466), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(469), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(472), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(475), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(478), 1, - aux_sym_global_mode_token1, - ACTIONS(481), 1, - aux_sym_pragma_g_token1, - ACTIONS(484), 1, - aux_sym_subtype_declaration_token1, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - ACTIONS(452), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(77), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [2615] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(435), 1, - aux_sym_compilation_unit_token1, - ACTIONS(437), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(77), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - 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, - [2732] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(77), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [2846] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(487), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(81), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [2960] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(489), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(77), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [3074] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(487), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(77), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym__package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym_package_specification_repeat1, - [3188] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(425), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(437), 1, - aux_sym_package_specification_token3, - STATE(888), 1, - sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, - sym_function_specification, - STATE(1895), 1, - sym_package_specification, - STATE(1899), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(453), 2, + STATE(329), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(79), 34, @@ -16042,87 +14796,178 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [3302] = 33, + [373] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(305), 1, - aux_sym_declare_expression_token1, - ACTIONS(307), 1, - aux_sym_case_expression_token1, - ACTIONS(315), 1, - aux_sym_if_expression_token1, - ACTIONS(429), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(433), 1, - anon_sym_LT_GT, - ACTIONS(491), 1, - sym_identifier, - ACTIONS(495), 1, + 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(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1237), 1, - sym_parameter_association, - STATE(1283), 1, - sym_parameter_specification, - STATE(1359), 1, - sym_expression, - STATE(1542), 1, - sym_component_choice_list, - STATE(1549), 1, + 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(435), 1, + aux_sym_compilation_unit_token1, + ACTIONS(437), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, sym__defining_identifier_list, - STATE(1554), 1, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [490] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1173), 1, + sym_parameter_association, + STATE(1293), 1, + sym_parameter_specification, + STATE(1448), 1, + sym_expression, + STATE(1552), 1, + sym_component_choice_list, + STATE(1725), 1, + sym__defining_identifier_list, + STATE(1741), 1, sym__parameter_specification_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(1544), 5, + STATE(1556), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(486), 14, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16137,7 +14982,186 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3430] = 29, + [619] = 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(445), 1, + aux_sym_compilation_unit_token1, + ACTIONS(447), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [736] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(449), 1, + sym_identifier, + ACTIONS(452), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(455), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(460), 1, + aux_sym_package_specification_token1, + ACTIONS(463), 1, + aux_sym_use_clause_token2, + ACTIONS(466), 1, + aux_sym_relation_membership_token1, + ACTIONS(469), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(472), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(475), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(478), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(481), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(484), 1, + aux_sym_global_mode_token1, + ACTIONS(487), 1, + aux_sym_pragma_g_token1, + ACTIONS(490), 1, + aux_sym_subtype_declaration_token1, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + ACTIONS(458), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [851] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -16178,15 +15202,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, ACTIONS(79), 1, aux_sym_iteration_scheme_token1, - ACTIONS(397), 1, + ACTIONS(329), 1, sym_identifier, - ACTIONS(399), 1, + ACTIONS(331), 1, aux_sym_iterated_element_association_token1, - STATE(941), 1, + STATE(931), 1, sym_loop_label, - STATE(1887), 1, + STATE(1890), 1, sym_iteration_scheme, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, STATE(512), 2, sym_label, @@ -16195,13 +15219,14 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(935), 5, + STATE(907), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(164), 26, + STATE(129), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -16228,7 +15253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raise_statement, sym_loop_statement, sym_assignment_statement, - [3550] = 26, + [972] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -16253,35 +15278,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(417), 1, - aux_sym_package_specification_token1, - ACTIONS(423), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(425), 1, + aux_sym_package_specification_token1, + ACTIONS(431), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(433), 1, aux_sym_interface_type_definition_token1, - ACTIONS(441), 1, + ACTIONS(435), 1, + aux_sym_compilation_unit_token1, + ACTIONS(437), 1, aux_sym_package_specification_token3, - STATE(888), 1, + STATE(885), 1, sym_generic_formal_part, - STATE(987), 1, - sym__subprogram_specification, - STATE(988), 1, + STATE(963), 1, sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1087), 1, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, sym_function_specification, - STATE(1895), 1, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, sym_package_specification, - STATE(1899), 1, + STATE(1904), 1, sym__defining_identifier_list, - STATE(452), 2, + STATE(325), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(453), 2, + STATE(329), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(82), 34, + STATE(77), 34, sym__basic_declarative_item, sym__basic_declaration, sym__package_declaration, @@ -16316,271 +15343,892 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [3664] = 35, + [1089] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(277), 1, - sym_identifier, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + 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(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(301), 1, - aux_sym_primary_null_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(309), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(800), 1, - sym_null_exclusion, - STATE(929), 1, - sym_expression, - STATE(1034), 1, - sym_array_component_association, - STATE(1240), 1, - sym_iterated_element_association, - STATE(1248), 1, - sym__named_record_component_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1360), 1, - sym_range_g, - STATE(1374), 1, - sym__subtype_indication, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1635), 1, - sym__array_component_association_list, - STATE(1637), 1, - sym_record_component_association_list, - STATE(1641), 1, - sym_component_choice_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(279), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3794] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(277), 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(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(301), 1, - aux_sym_primary_null_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(309), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(497), 1, + ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(800), 1, - sym_null_exclusion, - STATE(1034), 1, - sym_array_component_association, - STATE(1214), 1, - sym_expression, - STATE(1240), 1, - sym_iterated_element_association, - STATE(1248), 1, - sym__named_record_component_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1360), 1, - sym_range_g, - STATE(1374), 1, - sym__subtype_indication, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1641), 1, - sym_component_choice_list, - STATE(1689), 1, - sym__array_component_association_list, - STATE(1690), 1, - sym_record_component_association_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(279), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3924] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(305), 1, - aux_sym_declare_expression_token1, - ACTIONS(307), 1, - aux_sym_case_expression_token1, - ACTIONS(315), 1, - aux_sym_if_expression_token1, + ACTIONS(423), 1, + aux_sym_compilation_unit_token1, + ACTIONS(425), 1, + aux_sym_package_specification_token1, ACTIONS(427), 1, - sym_identifier, - ACTIONS(429), 1, - aux_sym_iterated_element_association_token1, + aux_sym_package_specification_token3, ACTIONS(431), 1, - aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, ACTIONS(433), 1, - anon_sym_LT_GT, - ACTIONS(495), 1, + aux_sym_interface_type_definition_token1, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(79), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1206] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - STATE(505), 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(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(493), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [1320] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(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(437), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(83), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1434] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(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(447), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [1548] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(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(447), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [1662] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(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(495), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 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, + [1776] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(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(493), 1, + aux_sym_package_specification_token3, + STATE(885), 1, + sym_generic_formal_part, + STATE(963), 1, + sym_overriding_indicator, + STATE(964), 1, + sym__subprogram_specification, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1898), 1, + sym_package_specification, + STATE(1904), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(329), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(85), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym__package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym_package_specification_repeat1, + [1890] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(221), 1, + sym_identifier, + 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(241), 1, + 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(253), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(584), 1, sym__simple_expression, - STATE(1237), 1, - sym_parameter_association, - STATE(1359), 1, + STATE(778), 1, + sym_null_exclusion, + STATE(1094), 1, + sym_array_component_association, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1213), 1, sym_expression, - STATE(1542), 1, + STATE(1220), 1, + sym_discrete_choice, + STATE(1222), 1, + sym__named_record_component_association, + STATE(1401), 1, + sym_range_g, + STATE(1404), 1, + sym__subtype_indication, + STATE(1516), 1, + sym__array_component_association_list, + STATE(1518), 1, + sym_record_component_association_list, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1662), 1, sym_component_choice_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(1544), 5, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2021] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(221), 1, + sym_identifier, + 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(241), 1, + 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(253), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(778), 1, + sym_null_exclusion, + STATE(941), 1, + sym_expression, + STATE(1094), 1, + sym_array_component_association, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1220), 1, + sym_discrete_choice, + STATE(1222), 1, + sym__named_record_component_association, + STATE(1401), 1, + sym_range_g, + STATE(1404), 1, + sym__subtype_indication, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1653), 1, + sym__array_component_association_list, + STATE(1657), 1, + sym_record_component_association_list, + STATE(1662), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(223), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(492), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2152] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1173), 1, + sym_parameter_association, + STATE(1448), 1, + sym_expression, + STATE(1552), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1556), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(486), 14, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16595,30 +16243,30 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4043] = 34, + [2272] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(309), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, @@ -16628,411 +16276,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_value_sequence_token1, ACTIONS(503), 1, anon_sym_RBRACK, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(908), 1, + STATE(927), 1, sym_expression, - STATE(1034), 1, + STATE(1094), 1, sym_array_component_association, - STATE(1262), 1, + STATE(1220), 1, sym_discrete_choice, - STATE(1360), 1, + STATE(1401), 1, sym_range_g, - STATE(1367), 1, - sym_iterated_element_association, - STATE(1374), 1, + STATE(1404), 1, sym__subtype_indication, - STATE(1616), 1, - sym__array_component_association_list, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(279), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4170] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(309), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(503), 1, - anon_sym_RBRACK, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(800), 1, - sym_null_exclusion, - STATE(908), 1, - sym_expression, - STATE(1034), 1, - sym_array_component_association, - STATE(1240), 1, + STATE(1411), 1, sym_iterated_element_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1360), 1, - sym_range_g, - STATE(1374), 1, - sym__subtype_indication, - STATE(1616), 1, - sym__array_component_association_list, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(279), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4294] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(309), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(503), 1, - anon_sym_RBRACK, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(800), 1, - sym_null_exclusion, - STATE(992), 1, - sym_expression, - STATE(1034), 1, - sym_array_component_association, - STATE(1240), 1, - sym_iterated_element_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1360), 1, - sym_range_g, - STATE(1374), 1, - sym__subtype_indication, - STATE(1616), 1, - sym__array_component_association_list, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(279), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4418] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(309), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(800), 1, - sym_null_exclusion, - STATE(1034), 1, - sym_array_component_association, - STATE(1240), 1, - sym_iterated_element_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1374), 1, - sym__subtype_indication, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1684), 1, - sym__array_component_association_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1360), 2, - sym_range_g, - sym_expression, - ACTIONS(279), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(499), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [4537] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(309), 1, - aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(497), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(585), 1, - sym__simple_expression, - STATE(800), 1, - sym_null_exclusion, - STATE(1034), 1, - sym_array_component_association, - STATE(1121), 1, - sym_expression, - STATE(1240), 1, - sym_iterated_element_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1360), 1, - sym_range_g, - STATE(1374), 1, - sym__subtype_indication, - STATE(1631), 1, - sym_discrete_choice_list, STATE(1635), 1, sym__array_component_association_list, - STATE(1897), 1, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(279), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17047,78 +16337,84 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4658] = 30, + [2400] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(309), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(499), 1, sym_identifier, - STATE(505), 1, + ACTIONS(503), 1, + anon_sym_RBRACK, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1145), 1, - sym_array_component_association, - STATE(1240), 1, - sym_iterated_element_association, - STATE(1262), 1, - sym_discrete_choice, - STATE(1374), 1, - sym__subtype_indication, - STATE(1631), 1, - sym_discrete_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1360), 2, - sym_range_g, + STATE(927), 1, sym_expression, - ACTIONS(279), 3, + STATE(1094), 1, + sym_array_component_association, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1220), 1, + sym_discrete_choice, + STATE(1401), 1, + sym_range_g, + STATE(1404), 1, + sym__subtype_indication, + STATE(1635), 1, + sym__array_component_association_list, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17133,76 +16429,435 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4774] = 28, + [2525] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(307), 1, - aux_sym_case_expression_token1, - ACTIONS(315), 1, - aux_sym_if_expression_token1, - ACTIONS(429), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(431), 1, + ACTIONS(253), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(499), 1, + sym_identifier, + ACTIONS(503), 1, + anon_sym_RBRACK, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(778), 1, + sym_null_exclusion, + STATE(972), 1, + sym_expression, + STATE(1094), 1, + sym_array_component_association, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1220), 1, + sym_discrete_choice, + STATE(1401), 1, + sym_range_g, + STATE(1404), 1, + sym__subtype_indication, + STATE(1635), 1, + sym__array_component_association_list, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(223), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(492), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2650] = 31, + 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(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(253), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(778), 1, + sym_null_exclusion, + STATE(1094), 1, + sym_array_component_association, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1220), 1, + sym_discrete_choice, + STATE(1404), 1, + sym__subtype_indication, + STATE(1505), 1, + sym__array_component_association_list, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1899), 1, + sym_value_sequence, + STATE(1401), 2, + sym_range_g, + sym_expression, + ACTIONS(223), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(492), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2770] = 32, + 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(241), 1, + aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(253), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(778), 1, + sym_null_exclusion, + STATE(1094), 1, + sym_array_component_association, + STATE(1103), 1, + sym_expression, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1220), 1, + sym_discrete_choice, + STATE(1401), 1, + sym_range_g, + STATE(1404), 1, + sym__subtype_indication, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1653), 1, + sym__array_component_association_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(223), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(492), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [2892] = 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(239), 1, + 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(253), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(497), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(499), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(778), 1, + sym_null_exclusion, + STATE(1183), 1, + sym_iterated_element_association, + STATE(1206), 1, + sym_array_component_association, + STATE(1220), 1, + sym_discrete_choice, + STATE(1404), 1, + sym__subtype_indication, + STATE(1647), 1, + sym_discrete_choice_list, + STATE(1899), 1, + sym_value_sequence, + STATE(1401), 2, + sym_range_g, + sym_expression, + ACTIONS(223), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(492), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3009] = 28, + 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(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(443), 1, aux_sym_relation_membership_token1, ACTIONS(505), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1273), 1, + STATE(1308), 1, sym_pragma_argument_association, - STATE(1361), 1, + STATE(1342), 1, sym_expression, - STATE(1620), 1, - sym__aspect_mark, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + STATE(1919), 1, + sym__aspect_mark, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1618), 4, + STATE(1885), 4, sym__conditional_quantified_expression, sym_quantified_expression, sym_case_expression, sym_if_expression, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17217,73 +16872,74 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4886] = 27, + [3122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(291), 1, + ACTIONS(235), 1, aux_sym_chunk_specification_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(311), 1, + ACTIONS(255), 1, aux_sym_global_mode_token1, - ACTIONS(313), 1, + ACTIONS(257), 1, aux_sym_non_empty_mode_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, ACTIONS(507), 1, + sym_identifier, + ACTIONS(509), 1, anon_sym_LPAREN, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(815), 1, + STATE(821), 1, sym_non_empty_mode, - STATE(972), 1, + STATE(1030), 1, sym_global_mode, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(975), 3, + STATE(1031), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17298,72 +16954,73 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4994] = 27, + [3231] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(309), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1262), 1, + STATE(1220), 1, sym_discrete_choice, - STATE(1374), 1, + STATE(1404), 1, sym__subtype_indication, - STATE(1813), 1, + STATE(1743), 1, sym_discrete_choice_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(1360), 2, + STATE(1401), 2, sym_range_g, sym_expression, - ACTIONS(279), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17378,72 +17035,73 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5101] = 27, + [3339] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(309), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1262), 1, + STATE(1220), 1, sym_discrete_choice, - STATE(1374), 1, + STATE(1404), 1, sym__subtype_indication, - STATE(1744), 1, + STATE(1479), 1, sym_discrete_choice_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(1360), 2, + STATE(1401), 2, sym_range_g, sym_expression, - ACTIONS(279), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17458,72 +17116,73 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5208] = 27, + [3447] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(309), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1262), 1, + STATE(1220), 1, sym_discrete_choice, - STATE(1374), 1, + STATE(1404), 1, sym__subtype_indication, - STATE(1497), 1, + STATE(1899), 1, + sym_value_sequence, + STATE(1924), 1, sym_discrete_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1360), 2, + STATE(1401), 2, sym_range_g, sym_expression, - ACTIONS(279), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17538,70 +17197,71 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5315] = 26, + [3555] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(309), 1, + ACTIONS(253), 1, aux_sym_positional_array_aggregate_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, ACTIONS(499), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(585), 1, + STATE(584), 1, sym__simple_expression, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1374), 1, - sym__subtype_indication, - STATE(1470), 1, + STATE(1339), 1, sym_discrete_choice, - STATE(1897), 1, + STATE(1404), 1, + sym__subtype_indication, + STATE(1899), 1, sym_value_sequence, - STATE(1360), 2, + STATE(1401), 2, sym_range_g, sym_expression, - ACTIONS(279), 3, + ACTIONS(223), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(499), 5, + STATE(492), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17616,69 +17276,70 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5419] = 26, + [3660] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(301), 1, + ACTIONS(245), 1, aux_sym_primary_null_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(427), 1, + ACTIONS(415), 1, sym_identifier, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(509), 1, + ACTIONS(511), 1, aux_sym_attribute_designator_token2, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1248), 1, + STATE(1222), 1, sym__named_record_component_association, - STATE(1641), 1, + STATE(1662), 1, sym_component_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1920), 1, + STATE(1852), 1, sym_expression, - STATE(1923), 1, + STATE(1856), 1, sym_record_component_association_list, - ACTIONS(493), 3, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17693,438 +17354,144 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5522] = 3, + [3764] = 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(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(421), 1, + anon_sym_LT_GT, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1361), 1, + sym_parameter_association, + STATE(1448), 1, + sym_expression, + STATE(1552), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3865] = 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(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(513), 1, sym_identifier, - ACTIONS(511), 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, - [5578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(517), 1, - sym_identifier, - ACTIONS(515), 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, - [5634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - sym_identifier, - ACTIONS(519), 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, - [5690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(525), 1, - sym_identifier, - ACTIONS(523), 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, - [5746] = 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, - [5802] = 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, - [5858] = 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, - [5914] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(433), 1, - anon_sym_LT_GT, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1336), 1, - sym_parameter_association, - STATE(1359), 1, + STATE(1293), 1, + sym_parameter_specification, + STATE(1619), 1, sym_expression, - STATE(1542), 1, - sym_component_choice_list, - STATE(1897), 1, + STATE(1725), 1, + sym__defining_identifier_list, + STATE(1741), 1, + sym__parameter_specification_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18139,12 +17506,88 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [6014] = 3, + [3966] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 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(415), 1, sym_identifier, - ACTIONS(539), 47, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(515), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1109), 1, + sym_expression, + STATE(1129), 1, + sym__named_record_component_association, + STATE(1662), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(519), 1, + sym_identifier, + ACTIONS(517), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18192,12 +17635,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6070] = 3, + [4123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(545), 1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(543), 47, + ACTIONS(521), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18245,12 +17688,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6126] = 3, + [4179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(549), 1, + ACTIONS(527), 1, sym_identifier, - ACTIONS(547), 47, + ACTIONS(525), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18298,12 +17741,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6182] = 3, + [4235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(551), 47, + ACTIONS(529), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18351,12 +17794,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6238] = 3, + [4291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(535), 1, sym_identifier, - ACTIONS(555), 47, + ACTIONS(533), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18404,12 +17847,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6294] = 3, + [4347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(539), 1, sym_identifier, - ACTIONS(559), 47, + ACTIONS(537), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -18457,7 +17900,421 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6350] = 3, + [4403] = 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, + [4459] = 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, + [4515] = 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, + [4571] = 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, + [4627] = 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, + [4683] = 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(513), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1293), 1, + sym_parameter_specification, + STATE(1503), 1, + sym__simple_expression, + STATE(1725), 1, + sym__defining_identifier_list, + STATE(1741), 1, + sym__parameter_specification_list, + STATE(1899), 1, + sym_value_sequence, + STATE(1913), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(561), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(543), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4783] = 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(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(505), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1342), 1, + sym_expression, + STATE(1391), 1, + sym_pragma_argument_association, + STATE(1899), 1, + sym_value_sequence, + STATE(1919), 1, + sym__aspect_mark, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4881] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(565), 1, @@ -18510,7 +18367,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6406] = 3, + [4937] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(569), 1, @@ -18563,7 +18420,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6462] = 3, + [4993] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(573), 1, @@ -18616,7 +18473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6518] = 3, + [5049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(577), 1, @@ -18669,7 +18526,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6574] = 3, + [5105] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(581), 1, @@ -18722,7 +18579,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6630] = 3, + [5161] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(585), 1, @@ -18775,7 +18632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6686] = 3, + [5217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(589), 1, @@ -18828,7 +18685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6742] = 3, + [5273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(593), 1, @@ -18881,7 +18738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6798] = 3, + [5329] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(597), 1, @@ -18934,7 +18791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6854] = 3, + [5385] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(601), 1, @@ -18987,7 +18844,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6910] = 3, + [5441] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(605), 1, @@ -19040,7 +18897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6966] = 3, + [5497] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(609), 1, @@ -19093,7 +18950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7022] = 3, + [5553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(613), 1, @@ -19146,513 +19003,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7078] = 25, + [5609] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(615), 1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(513), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1283), 1, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1293), 1, sym_parameter_specification, - STATE(1549), 1, - sym__defining_identifier_list, - STATE(1554), 1, - sym__parameter_specification_list, - STATE(1666), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [7178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - 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, - [7234] = 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, - [7290] = 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, - [7346] = 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, - [7402] = 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, - [7458] = 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, - [7514] = 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, - [7570] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(645), 1, - aux_sym_positional_array_aggregate_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, + STATE(1503), 1, sym__simple_expression, - STATE(1104), 1, - sym_expression, - STATE(1160), 1, - sym__named_record_component_association, - STATE(1641), 1, - sym_component_choice_list, - STATE(1897), 1, + STATE(1725), 1, + sym__defining_identifier_list, + STATE(1741), 1, + sym__parameter_specification_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + STATE(1742), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(561), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(543), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -19667,7 +19078,431 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7670] = 3, + [5709] = 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, + [5765] = 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, + [5821] = 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, + [5877] = 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, + [5933] = 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, + [5989] = 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, + [6045] = 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, + [6101] = 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, + [6157] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(649), 1, @@ -19720,7 +19555,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7726] = 3, + [6213] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(653), 1, @@ -19773,60 +19608,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7782] = 3, + [6269] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(657), 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(655), 1, sym_identifier, - ACTIONS(655), 47, - ts_builtin_sym_end, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1237), 1, + sym_index_subtype_definition, + STATE(1503), 1, + sym__simple_expression, + STATE(1776), 1, + sym__index_subtype_definition_list, + STATE(1778), 1, + sym__discrete_subtype_definition_list, + STATE(1899), 1, + sym_value_sequence, + STATE(1236), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(657), 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, - [7838] = 3, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(546), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6369] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(661), 1, @@ -19879,60 +19736,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7894] = 3, + [6425] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 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(663), 1, sym_identifier, - ACTIONS(663), 47, - ts_builtin_sym_end, + ACTIONS(665), 1, + anon_sym_SEMI, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1358), 1, + sym_extended_return_object_declaration, + STATE(1806), 1, + sym_expression, + STATE(1899), 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, - [7950] = 3, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [6523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(669), 1, @@ -19985,7 +19863,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8006] = 3, + [6579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(673), 1, @@ -20038,7 +19916,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8062] = 3, + [6635] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(677), 1, @@ -20091,7 +19969,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8118] = 3, + [6691] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(681), 1, @@ -20144,7 +20022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8174] = 3, + [6747] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(685), 1, @@ -20197,7 +20075,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8230] = 3, + [6803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(689), 1, @@ -20250,7 +20128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8286] = 3, + [6859] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(693), 1, @@ -20303,7 +20181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8342] = 3, + [6915] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(697), 1, @@ -20356,7 +20234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8398] = 3, + [6971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(701), 1, @@ -20409,7 +20287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8454] = 3, + [7027] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(705), 1, @@ -20462,7 +20340,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8510] = 3, + [7083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, @@ -20515,7 +20393,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8566] = 3, + [7139] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(713), 1, @@ -20568,7 +20446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8622] = 3, + [7195] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(717), 1, @@ -20621,7 +20499,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8678] = 3, + [7251] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1662), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + STATE(1129), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7347] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(721), 1, @@ -20674,7 +20625,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8734] = 3, + [7403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(725), 1, @@ -20727,7 +20678,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8790] = 3, + [7459] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, @@ -20780,7 +20731,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8846] = 3, + [7515] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1662), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + STATE(1458), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7611] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(733), 1, @@ -20833,7 +20857,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8902] = 3, + [7667] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(737), 1, @@ -20886,7 +20910,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8958] = 3, + [7723] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1456), 1, + sym_expression, + STATE(1458), 1, + sym__named_record_component_association, + STATE(1662), 1, + sym_component_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(741), 1, @@ -20939,7 +21037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9014] = 3, + [7877] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(745), 1, @@ -20992,7 +21090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9070] = 3, + [7933] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(749), 1, @@ -21045,7 +21143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9126] = 3, + [7989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(753), 1, @@ -21098,7 +21196,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9182] = 3, + [8045] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(757), 1, @@ -21151,7 +21249,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9238] = 3, + [8101] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(761), 1, @@ -21204,790 +21302,223 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9294] = 25, + [8157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, + ACTIONS(765), 1, sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(911), 1, - sym__subtype_indication, - STATE(1276), 1, - sym_index_subtype_definition, - STATE(1481), 1, - sym__simple_expression, - STATE(1835), 1, - sym__index_subtype_definition_list, - STATE(1837), 1, - sym__discrete_subtype_definition_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1279), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(763), 3, + ACTIONS(763), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(557), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9393] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1452), 1, - sym_expression, - STATE(1453), 1, - sym__named_record_component_association, - STATE(1641), 1, - sym_component_choice_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9490] = 25, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_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, + [8213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(615), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(911), 1, - sym__subtype_indication, - STATE(1283), 1, - sym_parameter_specification, - STATE(1481), 1, - sym__simple_expression, - STATE(1549), 1, - sym__defining_identifier_list, - STATE(1554), 1, - sym__parameter_specification_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1590), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(765), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(549), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9589] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1641), 1, - sym_component_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1453), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9684] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(767), 1, - sym_identifier, ACTIONS(769), 1, - anon_sym_SEMI, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1386), 1, - sym_extended_return_object_declaration, - STATE(1673), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9781] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(615), 1, sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(911), 1, - sym__subtype_indication, - STATE(1283), 1, - sym_parameter_specification, - STATE(1481), 1, - sym__simple_expression, - STATE(1549), 1, - sym__defining_identifier_list, - STATE(1554), 1, - sym__parameter_specification_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1814), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(765), 3, + ACTIONS(767), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(549), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9880] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(505), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1351), 1, - sym_pragma_argument_association, - STATE(1361), 1, - sym_expression, - STATE(1620), 1, - sym__aspect_mark, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9977] = 23, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_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, + [8269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1641), 1, - sym_component_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(1160), 2, - sym_expression, - sym__named_record_component_association, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10072] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(771), 1, - aux_sym_positional_array_aggregate_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1296), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10166] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, ACTIONS(773), 1, - aux_sym_positional_array_aggregate_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1296), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, + sym_identifier, + ACTIONS(771), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10260] = 23, + 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, + [8325] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, ACTIONS(775), 1, - anon_sym_LT_GT, - STATE(505), 1, + aux_sym_delay_until_statement_token2, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1140), 1, + STATE(1784), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22002,63 +21533,64 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10354] = 23, + [8420] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, ACTIONS(777), 1, anon_sym_LT_GT, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1449), 1, + STATE(1487), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22073,115 +21605,280 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10448] = 4, + [8515] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 1, - anon_sym_DOT, - ACTIONS(779), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(781), 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, - [10504] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(779), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1491), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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(781), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1346), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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(783), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1219), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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(785), 1, anon_sym_LT_GT, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1482), 1, + STATE(1666), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22196,63 +21893,136 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10598] = 23, + [8895] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, + sym_identifier, + ACTIONS(515), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1297), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8990] = 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(787), 1, - aux_sym_delay_until_statement_token2, - STATE(505), 1, + anon_sym_LT_GT, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1777), 1, + STATE(1667), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22267,23 +22037,446 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10692] = 6, + [9085] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(793), 1, - sym_tick, - ACTIONS(796), 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(215), 1, - sym_actual_parameter_part, - ACTIONS(789), 6, + 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, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1280), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9180] = 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(791), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1280), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9275] = 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(793), 1, + aux_sym_positional_array_aggregate_token1, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1280), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1363), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1570), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9557] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1568), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9649] = 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, - ACTIONS(791), 37, + anon_sym_DOT, + ACTIONS(799), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -22291,7 +22484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_mod, anon_sym_rem, + sym_tick, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, aux_sym_chunk_specification_token1, @@ -22321,63 +22516,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [10752] = 23, + [9703] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - ACTIONS(799), 1, - anon_sym_LT_GT, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1667), 1, + STATE(1541), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22392,134 +22586,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10846] = 23, + [9795] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(645), 1, - aux_sym_positional_array_aggregate_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1254), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10940] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, ACTIONS(801), 1, - anon_sym_LT_GT, - STATE(505), 1, + aux_sym_expression_token2, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1668), 1, - sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(602), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22534,63 +22656,202 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11034] = 23, + [9887] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1185), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9979] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1546), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10071] = 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(803), 1, - anon_sym_LT_GT, - STATE(505), 1, + aux_sym_expression_token4, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1512), 1, - sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(604), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22605,63 +22866,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11128] = 23, + [10163] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - ACTIONS(805), 1, - anon_sym_LT_GT, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1340), 1, + STATE(1365), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22676,63 +22936,62 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11222] = 23, + [10255] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - ACTIONS(807), 1, - aux_sym_positional_array_aggregate_token1, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1296), 1, + STATE(1061), 1, sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(550), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22747,16 +23006,418 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11316] = 3, + [10347] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 6, + 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1761), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10439] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1767), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(805), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(807), 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, + [10585] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1269), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10677] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1779), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10769] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1781), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10861] = 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, @@ -22797,61 +23458,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11369] = 22, + [10915] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, + aux_sym_primary_null_token1, + ACTIONS(813), 1, sym_identifier, - STATE(505), 1, + ACTIONS(817), 1, + aux_sym_loop_parameter_specification_token1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1503), 1, sym__simple_expression, - STATE(1776), 1, - sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + STATE(959), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(815), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(525), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22866,17 +23529,18 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11460] = 3, + [11009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 6, + ACTIONS(819), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(815), 39, + anon_sym_DOT, + ACTIONS(821), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -22916,180 +23580,3053 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [11513] = 22, + [11063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(823), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1646), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11604] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(825), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(817), 1, - aux_sym_expression_token4, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(595), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11695] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(819), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, aux_sym_expression_token2, - STATE(505), 1, + 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, + [11117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(829), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [11171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(831), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(833), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_PIPE, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [11225] = 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(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1478), 1, + sym_expression, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(835), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(837), 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, + [11371] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1484), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(839), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(841), 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, + [11517] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1661), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11609] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1660), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11701] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1140), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11793] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1121), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11885] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1425), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(843), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(845), 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, + [12031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(849), 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, + [12085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(853), 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, + [12139] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1392), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(855), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(857), 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, + [12285] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1645), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12377] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1302), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12469] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1104), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(859), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(861), 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, + [12615] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1171), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(865), 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, + [12761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(867), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(869), 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, + [12815] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1825), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12907] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1686), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12999] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1566), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13091] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1610), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13183] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1809), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13275] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1824), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(871), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(873), 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, + [13421] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1807), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13513] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1280), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13605] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1629), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(877), 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, + [13751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(879), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(881), 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, + [13805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(885), 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, + [13859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(887), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(889), 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, + [13913] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1596), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(893), 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, + [14059] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1737), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14151] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(960), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14243] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1828), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14335] = 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(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1529), 1, + sym_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(550), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14427] = 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(503), 1, + sym_term, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1503), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + STATE(1880), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(561), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(543), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14518] = 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(503), 1, + sym_term, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1503), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + STATE(970), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(899), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14609] = 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(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(599), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14698] = 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(503), 1, + sym_term, + STATE(778), 1, + sym_null_exclusion, + STATE(951), 1, + sym__subtype_indication, + STATE(1503), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + STATE(1692), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(561), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(543), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14789] = 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(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(523), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -23097,18 +26634,19 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23123,111 +26661,60 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11786] = 3, + [14878] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(823), 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, - [11839] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, + ACTIONS(241), 1, aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, + STATE(523), 1, sym__simple_expression, - STATE(1083), 1, - sym_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(554), 3, + STATE(608), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23242,3783 +26729,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11930] = 22, + [14967] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, + ACTIONS(239), 1, + aux_sym_relation_membership_token1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(895), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1157), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(825), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(827), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [12074] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1731), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12165] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1416), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12256] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1084), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12347] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1534), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12438] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1536), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12529] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1770), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(829), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(831), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [12673] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1061), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12764] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1495), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12855] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(956), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12946] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(835), 1, - aux_sym_loop_parameter_specification_token1, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(911), 1, + STATE(1354), 1, sym__subtype_indication, - STATE(1481), 1, + STATE(1503), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(997), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(833), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(532), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13039] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1552), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13130] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1702), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13221] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1317), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13312] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1553), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(837), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(839), 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, - [13456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(841), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(843), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - [13509] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1574), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(845), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(847), 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, - [13653] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1274), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13744] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - STATE(1907), 1, - sym_expression, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13835] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1195), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(849), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(851), 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, - [13979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(853), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(855), 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, - [14032] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1505), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14123] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1804), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(857), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(859), 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, - [14267] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1567), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(863), 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, - [14411] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1581), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(867), 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, - [14555] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1741), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14646] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1678), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(869), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(871), 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, - [14790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(873), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(875), 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, - [14843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(879), 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, - [14896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(881), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(883), 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, - [14949] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1662), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(885), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(887), 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, - [15093] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1571), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15184] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1661), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(889), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(891), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - 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, - [15328] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1527), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15419] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1296), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15510] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1355), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15601] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1603), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15692] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1405), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15783] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1821), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15874] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1780), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(893), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(895), 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, - [16018] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1209), 1, - sym_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(554), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(897), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(899), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [16162] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(911), 1, - sym__subtype_indication, - STATE(1481), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - STATE(1009), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(901), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(528), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16252] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(598), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16340] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(602), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16428] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(911), 1, - sym__subtype_indication, - STATE(1481), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - STATE(1782), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(765), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(549), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16518] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(911), 1, - sym__subtype_indication, - STATE(1481), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - STATE(1352), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(765), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(549), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16608] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - aux_sym_relation_membership_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(800), 1, - sym_null_exclusion, - STATE(1421), 1, - sym__subtype_indication, - STATE(1481), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - STATE(1450), 2, + STATE(1470), 2, sym_range_g, sym__discrete_range, - ACTIONS(765), 3, + ACTIONS(561), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(549), 5, + STATE(543), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27033,60 +26798,61 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [16698] = 22, + [15058] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(239), 1, aux_sym_relation_membership_token1, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(499), 1, + ACTIONS(895), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(911), 1, + STATE(951), 1, sym__subtype_indication, - STATE(1481), 1, + STATE(1503), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(1881), 2, + STATE(1451), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(765), 3, + ACTIONS(561), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(549), 5, + STATE(543), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27101,140 +26867,27 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [16788] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(297), 1, - aux_sym_raise_expression_token1, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(520), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(596), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16876] = 3, + [15149] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(905), 1, - sym_identifier, - ACTIONS(903), 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, - [16927] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, sym_tick, - ACTIONS(913), 1, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(909), 1, anon_sym_LPAREN, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - STATE(493), 1, + STATE(485), 1, sym_index_constraint, - ACTIONS(907), 6, + ACTIONS(901), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(909), 33, + ACTIONS(903), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27268,55 +26921,195 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [16986] = 3, + [15211] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 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(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(915), 42, - ts_builtin_sym_end, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(574), 1, + sym__simple_expression, + STATE(583), 1, + sym_membership_choice_list, + STATE(1899), 1, + sym_value_sequence, + STATE(573), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(913), 3, sym_string_literal, sym_character_literal, sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(511), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, + ACTIONS(243), 1, + aux_sym_factor_abs_token1, + ACTIONS(247), 1, + aux_sym_allocator_token1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + ACTIONS(443), 1, + aux_sym_relation_membership_token1, + ACTIONS(911), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(574), 1, + sym__simple_expression, + STATE(582), 1, + sym_membership_choice_list, + STATE(1899), 1, + sym_value_sequence, + STATE(573), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(511), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [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(211), 1, + sym_actual_parameter_part, + STATE(491), 1, + sym_index_constraint, + 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, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17037] = 3, + [15449] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(921), 1, @@ -27364,7 +27157,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17088] = 3, + [15500] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(925), 1, @@ -27412,7 +27205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17139] = 3, + [15551] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(929), 1, @@ -27460,59 +27253,120 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17190] = 7, + [15602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(913), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - STATE(491), 1, - sym_index_constraint, - ACTIONS(931), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(933), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + 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, - anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [17249] = 3, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15653] = 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(503), 1, + sym_term, + STATE(574), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + STATE(580), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(511), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [15738] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(937), 1, @@ -27560,144 +27414,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17300] = 21, + [15789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(941), 1, sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(568), 1, - sym__simple_expression, - STATE(573), 1, - sym_membership_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(567), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(939), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [17387] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(568), 1, - sym__simple_expression, - STATE(576), 1, - sym_membership_choice_list, - STATE(1897), 1, - sym_value_sequence, - STATE(567), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(939), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [17474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(943), 1, - sym_identifier, - ACTIONS(941), 42, + ACTIONS(939), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27740,12 +27462,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17525] = 3, + [15840] = 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, @@ -27788,12 +27510,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17576] = 3, + [15891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 1, + ACTIONS(949), 1, sym_identifier, - ACTIONS(949), 42, + ACTIONS(947), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -27836,1027 +27558,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17627] = 3, + [15942] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 1, - sym_identifier, - ACTIONS(953), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 1, - sym_identifier, - ACTIONS(957), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(963), 1, - sym_identifier, - ACTIONS(961), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(967), 1, - sym_identifier, - ACTIONS(965), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(969), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(973), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(979), 1, - sym_identifier, - ACTIONS(977), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [17977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(983), 1, - sym_identifier, - ACTIONS(981), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(987), 1, - sym_identifier, - ACTIONS(985), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(991), 1, - sym_identifier, - ACTIONS(989), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(993), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(993), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 1, - sym_identifier, - ACTIONS(997), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1003), 1, - sym_identifier, - ACTIONS(1001), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1005), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1011), 1, - sym_identifier, - ACTIONS(1009), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18427] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(568), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - STATE(580), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(939), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [18511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1013), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1019), 1, - sym_identifier, - ACTIONS(1017), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1023), 1, - sym_identifier, - ACTIONS(1021), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - sym_identifier, - ACTIONS(1025), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18711] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(911), 1, + sym_identifier, + ACTIONS(951), 1, + anon_sym_LT_GT, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(635), 1, + sym_range_g, + STATE(1503), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(511), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16029] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - ACTIONS(1029), 6, + ACTIONS(953), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1031), 33, + ACTIONS(955), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -28890,7 +27676,995 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [18767] = 3, + [16088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(959), 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, + [16139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + sym_identifier, + ACTIONS(963), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_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, + sym_identifier, + ACTIONS(967), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(973), 1, + sym_identifier, + ACTIONS(971), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(977), 1, + sym_identifier, + ACTIONS(975), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(981), 1, + sym_identifier, + ACTIONS(979), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(985), 1, + sym_identifier, + ACTIONS(983), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(989), 1, + sym_identifier, + ACTIONS(987), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16489] = 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, + [16539] = 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, + [16589] = 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, + [16639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1005), 1, + sym_identifier, + ACTIONS(1003), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16689] = 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, + [16739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1011), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 1, + sym_identifier, + ACTIONS(1015), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1021), 1, + sym_identifier, + ACTIONS(1019), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1011), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 1, + sym_identifier, + ACTIONS(1023), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [16989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1029), 1, + sym_identifier, + ACTIONS(1027), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1029), 1, + sym_identifier, + ACTIONS(1027), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17089] = 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, + [17139] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, @@ -28937,7 +28711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18817] = 3, + [17189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, @@ -28984,7 +28758,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18867] = 3, + [17239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, @@ -29031,7 +28805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18917] = 3, + [17289] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1049), 1, @@ -29078,7 +28852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18967] = 3, + [17339] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 1, @@ -29125,7 +28899,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19017] = 3, + [17389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 1, @@ -29172,7 +28946,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19067] = 3, + [17439] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 1, @@ -29219,7 +28993,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19117] = 3, + [17489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 1, @@ -29266,7 +29040,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19167] = 3, + [17539] = 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, + [17589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1069), 1, @@ -29313,7 +29134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19217] = 3, + [17639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1073), 1, @@ -29360,7 +29181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19267] = 3, + [17689] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1077), 1, @@ -29407,7 +29228,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19317] = 3, + [17739] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1081), 1, @@ -29454,7 +29275,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19367] = 3, + [17789] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1085), 1, @@ -29501,54 +29322,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 1, - sym_identifier, - ACTIONS(997), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19467] = 3, + [17839] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, @@ -29595,7 +29369,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19517] = 3, + [17889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1093), 1, @@ -29642,7 +29416,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19567] = 3, + [17939] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1097), 1, @@ -29689,7 +29463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19617] = 3, + [17989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1101), 1, @@ -29736,7 +29510,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19667] = 3, + [18039] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1105), 1, @@ -29783,7 +29557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19717] = 3, + [18089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1109), 1, @@ -29830,7 +29604,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19767] = 3, + [18139] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 1, @@ -29877,7 +29651,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19817] = 3, + [18189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1117), 1, @@ -29924,7 +29698,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19867] = 3, + [18239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 1, @@ -29971,54 +29745,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1101), 1, - sym_identifier, - ACTIONS(1099), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19967] = 3, + [18289] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 1, @@ -30065,7 +29792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20017] = 3, + [18339] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 1, @@ -30112,7 +29839,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20067] = 3, + [18389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1133), 1, @@ -30159,7 +29886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20117] = 3, + [18439] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 1, @@ -30206,7 +29933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20167] = 3, + [18489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -30253,7 +29980,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20217] = 3, + [18539] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 1, @@ -30300,57 +30027,3628 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20267] = 21, + [18589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(1149), 1, sym_identifier, - ACTIONS(1147), 1, - anon_sym_LT_GT, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(637), 1, - sym_range_g, - STATE(1481), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(939), 3, + ACTIONS(1147), 41, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1151), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1157), 1, + sym_identifier, + ACTIONS(1155), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1161), 1, + sym_identifier, + ACTIONS(1159), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 1, + sym_identifier, + ACTIONS(1163), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 1, + sym_identifier, + ACTIONS(1167), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18889] = 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, + [18939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1171), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 1, + sym_identifier, + ACTIONS(1175), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 1, + sym_identifier, + ACTIONS(1179), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1107), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 1, + sym_identifier, + ACTIONS(1183), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 1, + sym_identifier, + ACTIONS(1187), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1191), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_identifier, + ACTIONS(1195), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1201), 1, + sym_identifier, + ACTIONS(1199), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1205), 1, + sym_identifier, + ACTIONS(1203), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 1, + sym_identifier, + ACTIONS(1207), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_identifier, + ACTIONS(1211), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 1, + sym_identifier, + ACTIONS(1215), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 1, + sym_identifier, + ACTIONS(1219), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 1, + sym_identifier, + ACTIONS(1223), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_identifier, + ACTIONS(1227), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, + sym_identifier, + ACTIONS(1231), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + sym_identifier, + ACTIONS(1235), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_identifier, + ACTIONS(1239), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_identifier, + ACTIONS(1243), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1247), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1251), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20039] = 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, + [20089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1259), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1251), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1263), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20239] = 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, + [20289] = 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, + [20339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1247), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1275), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1279), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1285), 1, + sym_identifier, + ACTIONS(1283), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20539] = 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, + [20589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1291), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20639] = 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, + [20689] = 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, + [20739] = 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, + [20789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + sym_identifier, + ACTIONS(1303), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20839] = 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, + [20889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 1, + sym_identifier, + ACTIONS(1263), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20939] = 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, + [20989] = 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, + [21039] = 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, + [21089] = 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, + [21139] = 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, + [21189] = 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, + [21239] = 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, + [21289] = 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, + [21339] = 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, + [21389] = 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, + [21439] = 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, + [21489] = 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, + [21539] = 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, + [21589] = 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, + [21639] = 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, + [21689] = 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, + [21739] = 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, + [21789] = 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, + [21839] = 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, + [21889] = 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, + [21939] = 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, + [21989] = 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, + [22039] = 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, + [22089] = 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, + [22139] = 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, + [22189] = 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, + [22239] = 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, + [22289] = 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, + [22339] = 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, + [22389] = 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(1423), 1, + sym_identifier, + STATE(500), 1, + sym_unary_adding_operator, + STATE(503), 1, + sym_term, + STATE(1509), 1, + sym__simple_expression, + STATE(1512), 1, + sym_chunk_specification, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(513), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30365,12 +33663,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [20353] = 3, + [22473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1151), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1149), 41, + ACTIONS(1415), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -30412,3626 +33710,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1153), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - sym_identifier, - ACTIONS(1157), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1161), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - sym_identifier, - ACTIONS(1165), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1169), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1101), 1, - sym_identifier, - ACTIONS(1099), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1173), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 1, - sym_identifier, - ACTIONS(1177), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 1, - sym_identifier, - ACTIONS(1181), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 1, - sym_identifier, - ACTIONS(1185), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1189), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, - sym_identifier, - ACTIONS(1193), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1101), 1, - sym_identifier, - ACTIONS(1099), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1197), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1201), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1207), 1, - sym_identifier, - ACTIONS(1205), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1209), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 1, - sym_identifier, - ACTIONS(1213), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 1, - sym_identifier, - ACTIONS(1213), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 1, - sym_identifier, - ACTIONS(1217), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_identifier, - ACTIONS(1221), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - sym_identifier, - ACTIONS(1225), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 1, - sym_identifier, - ACTIONS(1229), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_identifier, - ACTIONS(1233), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - sym_identifier, - ACTIONS(1237), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1241), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1245), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1209), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 1, - sym_identifier, - ACTIONS(1249), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - sym_identifier, - ACTIONS(1253), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - sym_identifier, - ACTIONS(1257), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - sym_identifier, - ACTIONS(1261), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 1, - sym_identifier, - ACTIONS(1265), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1271), 1, - sym_identifier, - ACTIONS(1269), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1079), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1275), 1, - sym_identifier, - ACTIONS(1273), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1277), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1283), 1, - sym_identifier, - ACTIONS(1281), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1285), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1291), 1, - sym_identifier, - ACTIONS(1289), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1293), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1299), 1, - sym_identifier, - ACTIONS(1297), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1303), 1, - sym_identifier, - ACTIONS(1301), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1307), 1, - sym_identifier, - ACTIONS(1305), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1309), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 1, - sym_identifier, - ACTIONS(1313), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 1, - sym_identifier, - ACTIONS(1317), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1321), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1327), 1, - sym_identifier, - ACTIONS(1325), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 1, - sym_identifier, - ACTIONS(1329), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1335), 1, - sym_identifier, - ACTIONS(1333), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1339), 1, - sym_identifier, - ACTIONS(1337), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 1, - sym_identifier, - ACTIONS(1055), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1343), 1, - sym_identifier, - ACTIONS(1341), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 1, - sym_identifier, - ACTIONS(1345), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1323), 1, - sym_identifier, - ACTIONS(1321), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1351), 1, - sym_identifier, - ACTIONS(1349), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1355), 1, - sym_identifier, - ACTIONS(1353), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(1357), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1363), 1, - sym_identifier, - ACTIONS(1361), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 1, - sym_identifier, - ACTIONS(1365), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - sym_identifier, - ACTIONS(1369), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1375), 1, - sym_identifier, - ACTIONS(1373), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1377), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1383), 1, - sym_identifier, - ACTIONS(1381), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1385), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1389), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1395), 1, - sym_identifier, - ACTIONS(1393), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(1357), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - sym_identifier, - ACTIONS(1397), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1401), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1401), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 1, - sym_identifier, - ACTIONS(1405), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(1409), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 1, - sym_identifier, - ACTIONS(1413), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 1, - sym_identifier, - ACTIONS(1417), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 1, - sym_identifier, - ACTIONS(1421), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24253] = 3, + [22523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1427), 1, @@ -34078,7 +33757,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24303] = 3, + [22573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1431), 1, @@ -34125,7 +33804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24353] = 3, + [22623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1435), 1, @@ -34172,7 +33851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24403] = 3, + [22673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1439), 1, @@ -34219,7 +33898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24453] = 3, + [22723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1443), 1, @@ -34266,7 +33945,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24503] = 3, + [22773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1447), 1, @@ -34313,7 +33992,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24553] = 3, + [22823] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1451), 1, @@ -34360,7 +34039,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24603] = 3, + [22873] = 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, + [22923] = 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, + [22973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1455), 1, @@ -34407,7 +34180,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24653] = 3, + [23023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1459), 1, @@ -34454,7 +34227,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24703] = 3, + [23073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1463), 1, @@ -34501,7 +34274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24753] = 3, + [23123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1467), 1, @@ -34548,7 +34321,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24803] = 3, + [23173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1471), 1, @@ -34595,7 +34368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24853] = 3, + [23223] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1475), 1, @@ -34642,7 +34415,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24903] = 3, + [23273] = 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, + [23323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1479), 1, @@ -34689,7 +34509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24953] = 3, + [23373] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1483), 1, @@ -34736,7 +34556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25003] = 3, + [23423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1487), 1, @@ -34783,7 +34603,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25053] = 3, + [23473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1491), 1, @@ -34830,7 +34650,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25103] = 3, + [23523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1495), 1, @@ -34877,7 +34697,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25153] = 3, + [23573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1499), 1, @@ -34924,7 +34744,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25203] = 3, + [23623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1503), 1, @@ -34971,7 +34791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25253] = 3, + [23673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1507), 1, @@ -35018,54 +34838,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 1, - sym_identifier, - ACTIONS(1221), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [25353] = 3, + [23723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1511), 1, @@ -35112,7 +34885,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25403] = 3, + [23773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1515), 1, @@ -35159,7 +34932,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25453] = 3, + [23823] = 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(503), 1, + sym_term, + STATE(635), 1, + sym_range_g, + STATE(1503), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(913), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(511), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23907] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1519), 1, @@ -35206,7 +35043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25503] = 3, + [23957] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1523), 1, @@ -35253,7 +35090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25553] = 3, + [24007] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1527), 1, @@ -35300,7 +35137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25603] = 3, + [24057] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1531), 1, @@ -35347,7 +35184,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25653] = 3, + [24107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1535), 1, @@ -35394,7 +35231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25703] = 3, + [24157] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1539), 1, @@ -35441,7 +35278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25753] = 3, + [24207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1543), 1, @@ -35488,7 +35325,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25803] = 3, + [24257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1547), 1, @@ -35535,7 +35372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25853] = 3, + [24307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1551), 1, @@ -35582,7 +35419,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25903] = 3, + [24357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1555), 1, @@ -35629,7 +35466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25953] = 3, + [24407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1559), 1, @@ -35676,7 +35513,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26003] = 3, + [24457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1563), 1, @@ -35723,7 +35560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26053] = 3, + [24507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1567), 1, @@ -35770,7 +35607,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26103] = 3, + [24557] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1571), 1, @@ -35817,7 +35654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26153] = 3, + [24607] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1575), 1, @@ -35864,54 +35701,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 1, - sym_identifier, - ACTIONS(1501), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26253] = 3, + [24657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1579), 1, @@ -35958,7 +35748,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26303] = 3, + [24707] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1583), 1, @@ -36005,7 +35795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26353] = 3, + [24757] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1587), 1, @@ -36052,7 +35842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26403] = 3, + [24807] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1591), 1, @@ -36099,7 +35889,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26453] = 3, + [24857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1595), 1, @@ -36146,7 +35936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26503] = 3, + [24907] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1599), 1, @@ -36193,7 +35983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26553] = 3, + [24957] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1603), 1, @@ -36240,7 +36030,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26603] = 3, + [25007] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1607), 1, @@ -36287,7 +36077,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26653] = 3, + [25057] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1611), 1, @@ -36334,7 +36124,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26703] = 3, + [25107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1615), 1, @@ -36381,7 +36171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26753] = 3, + [25157] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1619), 1, @@ -36428,7 +36218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26803] = 3, + [25207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1623), 1, @@ -36475,54 +36265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 1, - sym_identifier, - ACTIONS(1569), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26903] = 3, + [25257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1627), 1, @@ -36569,7 +36312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26953] = 3, + [25307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1631), 1, @@ -36616,7 +36359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27003] = 3, + [25357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1635), 1, @@ -36663,7 +36406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27053] = 3, + [25407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1639), 1, @@ -36710,7 +36453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27103] = 3, + [25457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1643), 1, @@ -36757,75 +36500,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27153] = 20, + [25507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(1583), 1, sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(637), 1, - sym_range_g, - STATE(1481), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(939), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(513), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - sym_identifier, - ACTIONS(1645), 40, + ACTIONS(1581), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36835,6 +36515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token1, + aux_sym_package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -36866,7 +36547,178 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27285] = 3, + [25557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1647), 1, + sym_identifier, + ACTIONS(1645), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25607] = 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(503), 1, + sym_term, + STATE(1626), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25688] = 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(503), 1, + sym_term, + STATE(578), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1651), 1, @@ -36912,7 +36764,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27334] = 3, + [25818] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1655), 1, @@ -36958,7 +36810,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27383] = 3, + [25867] = 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(503), 1, + sym_term, + STATE(558), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [25948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1659), 1, @@ -37004,7 +36918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27432] = 3, + [25997] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1663), 1, @@ -37050,75 +36964,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27481] = 20, + [26046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(1665), 1, + ACTIONS(1667), 1, sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1489), 1, - sym__simple_expression, - STATE(1491), 1, - sym_chunk_specification, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - sym_identifier, - ACTIONS(1667), 40, + ACTIONS(1665), 40, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37159,99 +37010,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27613] = 3, + [26095] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 1, - sym_identifier, - ACTIONS(1671), 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, - [27662] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(607), 1, + STATE(611), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37266,53 +37072,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27742] = 19, + [26176] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(1372), 1, + STATE(614), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37327,53 +37134,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27822] = 19, + [26257] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(609), 1, + STATE(1863), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37388,456 +37196,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27902] = 19, + [26338] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1522), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27982] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(551), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28062] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(581), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28142] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1728), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28222] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, - sym_term, - STATE(1864), 1, - sym__simple_expression, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28302] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 1, - anon_sym_SLASH, - STATE(480), 1, - aux_sym_term_repeat1, - STATE(509), 1, - sym_multiplying_operator, - ACTIONS(1679), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1675), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1677), 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, - [28358] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_SLASH, - STATE(480), 1, - aux_sym_term_repeat1, - STATE(509), 1, - sym_multiplying_operator, - ACTIONS(1687), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1683), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1685), 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, - [28414] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(283), 1, - anon_sym_PLUS, - ACTIONS(285), 1, - anon_sym_DASH, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, - aux_sym_relation_membership_token1, - ACTIONS(499), 1, - sym_identifier, - STATE(505), 1, - sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, STATE(577), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37852,53 +37258,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28494] = 19, + [26419] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(1779), 1, + STATE(1380), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37913,53 +37320,54 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28574] = 19, + [26500] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_PLUS, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_DASH, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(505), 1, + STATE(500), 1, sym_unary_adding_operator, - STATE(507), 1, + STATE(503), 1, sym_term, - STATE(1454), 1, + STATE(1702), 1, sym__simple_expression, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37974,25 +37382,241 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28654] = 7, + [26581] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 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(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(503), 1, + sym_term, + STATE(1400), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + sym_identifier, + ACTIONS(1669), 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, + [26711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1675), 1, + sym_identifier, + ACTIONS(1673), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26760] = 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(503), 1, + sym_term, + STATE(1727), 1, + sym__simple_expression, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26841] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1683), 1, anon_sym_SLASH, - STATE(479), 1, + STATE(482), 1, aux_sym_term_repeat1, - STATE(509), 1, + STATE(505), 1, sym_multiplying_operator, - ACTIONS(1679), 3, + ACTIONS(1681), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1693), 4, + ACTIONS(1677), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1695), 30, + ACTIONS(1679), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38023,17 +37647,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28710] = 3, + [26897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 6, + ACTIONS(1683), 1, + anon_sym_SLASH, + STATE(483), 1, + aux_sym_term_repeat1, + STATE(505), 1, + sym_multiplying_operator, + ACTIONS(1681), 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, + 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, + [26953] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_SLASH, + STATE(483), 1, + aux_sym_term_repeat1, + STATE(505), 1, + sym_multiplying_operator, + ACTIONS(1693), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1689), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1691), 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, + [27009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1699), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1699), 33, + ACTIONS(1701), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38067,19 +37789,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, - [28757] = 4, + [27056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_STAR_STAR, - ACTIONS(1701), 6, + ACTIONS(1703), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1703), 32, + ACTIONS(1705), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38108,11 +37828,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, - [28806] = 3, + [27103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1707), 6, @@ -38156,7 +37877,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, - [28853] = 3, + [27150] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1711), 6, @@ -38200,9 +37921,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, - [28900] = 3, + [27197] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1719), 1, + anon_sym_STAR_STAR, ACTIONS(1715), 6, anon_sym_EQ, anon_sym_LT, @@ -38210,7 +37933,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1717), 33, + ACTIONS(1717), 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, + [27246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1723), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38244,17 +38010,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, - [28947] = 3, + [27293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1725), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1721), 33, + ACTIONS(1727), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38288,17 +38054,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, - [28994] = 3, + [27340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 6, + ACTIONS(901), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(909), 33, + ACTIONS(903), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38332,358 +38098,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, - [29041] = 3, + [27387] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1725), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1729), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1733), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1737), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29227] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(909), 1, anon_sym_LPAREN, - ACTIONS(1741), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1743), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1745), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1747), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1749), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1751), 1, - aux_sym_with_clause_token1, - ACTIONS(1753), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1759), 1, - aux_sym_allocator_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1765), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1767), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1769), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1773), 1, - aux_sym_interface_type_definition_token2, - STATE(1131), 1, - sym_null_exclusion, - STATE(1399), 1, - sym_record_definition, - ACTIONS(1761), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1232), 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, - [29311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1775), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1777), 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, - [29357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1781), 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, - [29403] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1729), 1, sym_tick, - ACTIONS(1785), 1, + ACTIONS(1731), 1, aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, + ACTIONS(1733), 1, aux_sym_attribute_designator_token3, - ACTIONS(1789), 1, + ACTIONS(1735), 1, aux_sym_range_attribute_designator_token1, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - ACTIONS(1029), 6, + ACTIONS(953), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - STATE(623), 6, + STATE(641), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1031), 20, + ACTIONS(955), 20, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38704,48 +38150,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [29463] = 20, + [27450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_LPAREN, - ACTIONS(1741), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1743), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1745), 1, + 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, - ACTIONS(1747), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1753), 1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, aux_sym_range_attribute_designator_token1, - ACTIONS(1755), 1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1773), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1791), 1, + 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] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1745), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1747), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1749), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1751), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1753), 1, aux_sym_with_clause_token1, - ACTIONS(1793), 1, + ACTIONS(1755), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1761), 1, aux_sym_allocator_token1, - ACTIONS(1795), 1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1767), 1, aux_sym_private_type_declaration_token1, - ACTIONS(1797), 1, + ACTIONS(1769), 1, aux_sym_private_type_declaration_token2, - STATE(1131), 1, - sym_null_exclusion, - STATE(1399), 1, - sym_record_definition, - ACTIONS(1761), 3, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1771), 1, aux_sym_private_extension_declaration_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1775), 1, + aux_sym_interface_type_definition_token2, + STATE(1246), 1, + sym_null_exclusion, + STATE(1433), 1, + sym_record_definition, + ACTIONS(1763), 2, + aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1217), 17, + STATE(1249), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, @@ -38763,26 +38256,24 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [29542] = 7, + [27581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_DASH, - STATE(503), 1, - aux_sym__simple_expression_repeat1, - STATE(504), 1, - sym_binary_adding_operator, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1799), 3, + ACTIONS(1777), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 28, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1779), 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, @@ -38808,26 +38299,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, - [29594] = 7, + [27627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(506), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1799), 3, + ACTIONS(1781), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 28, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1783), 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, @@ -38853,26 +38342,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, - [29646] = 7, + [27673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(506), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1803), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1807), 3, + ACTIONS(1785), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1809), 28, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1787), 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, @@ -38898,45 +38385,148 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29698] = 15, + [27719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - sym_numeric_literal, - ACTIONS(287), 1, + ACTIONS(1789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1791), 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, + [27765] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 1, anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(299), 1, - aux_sym_factor_abs_token1, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(1743), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1745), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1747), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1749), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1755), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1775), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1793), 1, + aux_sym_with_clause_token1, + ACTIONS(1795), 1, + aux_sym_allocator_token1, + ACTIONS(1797), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1799), 1, + aux_sym_private_type_declaration_token2, + STATE(1246), 1, + sym_null_exclusion, + STATE(1433), 1, + sym_record_definition, + ACTIONS(1763), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1276), 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, + [27844] = 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, + STATE(504), 1, sym_term, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(484), 4, + STATE(481), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -38951,76 +38541,77 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [29766] = 15, + [27913] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, + STATE(510), 1, + sym_term, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(481), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(488), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27982] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1807), 1, + anon_sym_DASH, STATE(501), 1, - sym_term, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(484), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(486), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29834] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1818), 1, - anon_sym_DASH, - STATE(504), 1, sym_binary_adding_operator, - STATE(506), 1, + STATE(507), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1815), 2, + ACTIONS(1805), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1811), 3, + ACTIONS(1801), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1813), 28, + ACTIONS(1803), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39049,23 +38640,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29886] = 7, + [28034] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, + ACTIONS(1807), 1, anon_sym_DASH, + STATE(501), 1, + sym_binary_adding_operator, STATE(502), 1, aux_sym__simple_expression_repeat1, - STATE(504), 1, - sym_binary_adding_operator, - ACTIONS(1803), 2, + ACTIONS(1805), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1821), 3, + ACTIONS(1809), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 28, + ACTIONS(1811), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39094,102 +38685,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29938] = 22, + [28086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1773), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1825), 1, - anon_sym_LPAREN, - ACTIONS(1827), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1829), 1, + ACTIONS(1807), 1, + anon_sym_DASH, + STATE(501), 1, + sym_binary_adding_operator, + STATE(506), 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, - ACTIONS(1831), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1833), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1835), 1, - aux_sym_with_clause_token1, - ACTIONS(1837), 1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, aux_sym_range_attribute_designator_token1, - ACTIONS(1839), 1, - aux_sym_allocator_token1, - ACTIONS(1841), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1843), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1845), 1, - aux_sym_private_extension_declaration_token1, - STATE(1131), 1, - sym_null_exclusion, - STATE(1235), 1, - sym_array_type_definition, - STATE(1236), 1, - sym_interface_type_definition, - ACTIONS(1761), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1233), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1070), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [30019] = 14, + 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] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, + ACTIONS(225), 1, sym_numeric_literal, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(299), 1, + ACTIONS(243), 1, aux_sym_factor_abs_token1, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(495), 1, + ACTIONS(443), 1, aux_sym_relation_membership_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(497), 4, + STATE(498), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(486), 14, + STATE(488), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39204,53 +38782,143 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30084] = 22, + [28204] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1773), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1825), 1, - anon_sym_LPAREN, - ACTIONS(1827), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1829), 1, + ACTIONS(1807), 1, + anon_sym_DASH, + STATE(501), 1, + sym_binary_adding_operator, + STATE(507), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1805), 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, - ACTIONS(1831), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1833), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1835), 1, - aux_sym_with_clause_token1, - ACTIONS(1837), 1, + 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, + [28256] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_DASH, + STATE(501), 1, + sym_binary_adding_operator, + STATE(507), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1821), 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, + [28308] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1775), 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_allocator_token1, + 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_extension_declaration_token1, - ACTIONS(1847), 1, aux_sym_private_type_declaration_token2, - STATE(1131), 1, - sym_null_exclusion, - STATE(1235), 1, - sym_array_type_definition, - STATE(1236), 1, + ACTIONS(1847), 1, + aux_sym_private_extension_declaration_token1, + STATE(1221), 1, sym_interface_type_definition, - ACTIONS(1761), 2, + STATE(1223), 1, + sym_array_type_definition, + STATE(1246), 1, + sym_null_exclusion, + ACTIONS(1763), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1233), 3, + STATE(1224), 3, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, - STATE(1016), 12, + STATE(1092), 12, sym__formal_type_definition, sym_formal_private_type_definition, sym_formal_derived_type_definition, @@ -39263,15 +38931,74 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_array_type_definition, sym_formal_access_type_definition, sym_formal_interface_type_definition, - [30165] = 3, + [28389] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 4, + ACTIONS(1743), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1775), 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, + STATE(1221), 1, + sym_interface_type_definition, + STATE(1223), 1, + sym_array_type_definition, + STATE(1246), 1, + sym_null_exclusion, + ACTIONS(1763), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1224), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1071), 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, + [28470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1813), 30, + ACTIONS(1819), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39302,17 +39029,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30207] = 5, + [28512] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, + ACTIONS(907), 1, + anon_sym_DOT, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1729), 1, + sym_tick, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(953), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(955), 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, + [28561] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1853), 1, + ACTIONS(1855), 1, anon_sym_LT_LT, STATE(512), 2, sym_label, aux_sym__sequence_of_statements_repeat2, - ACTIONS(1851), 29, + ACTIONS(1853), 29, sym_string_literal, sym_character_literal, sym_target_name, @@ -39342,106 +39111,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [30252] = 6, + [28606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, - sym_tick, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(1029), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1031), 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, - [30298] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(783), 1, - anon_sym_DOT, - ACTIONS(1856), 1, - anon_sym_EQ_GT, - ACTIONS(1859), 1, - anon_sym_PIPE, - STATE(1289), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(779), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(781), 22, - 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, - aux_sym_with_clause_token2, - 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, - [30346] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(783), 1, - anon_sym_DOT, ACTIONS(1862), 1, anon_sym_EQ_GT, - ACTIONS(1864), 1, + ACTIONS(1865), 1, anon_sym_PIPE, - STATE(1289), 1, + STATE(1295), 1, aux_sym_component_choice_list_repeat1, - ACTIONS(779), 6, + ACTIONS(1858), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(781), 21, + anon_sym_DOT, + ACTIONS(1860), 22, + 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, + aux_sym_with_clause_token2, + 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, + [28652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 1, + anon_sym_EQ_GT, + ACTIONS(1870), 1, + anon_sym_PIPE, + STATE(1295), 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, @@ -39463,12 +39190,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30393] = 3, + [28697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 1, + ACTIONS(1872), 1, sym_identifier, - ACTIONS(1868), 30, + ACTIONS(1874), 30, sym_string_literal, sym_character_literal, sym_target_name, @@ -39499,110 +39226,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [30432] = 7, + [28736] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(783), 1, - anon_sym_DOT, - ACTIONS(1870), 1, - anon_sym_COMMA, - ACTIONS(1872), 1, - anon_sym_COLON, - STATE(1255), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(779), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(781), 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, - [30478] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1876), 4, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(1715), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1717), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - anon_sym_EQ_GT, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - [30520] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(1876), 1, sym_numeric_literal, - STATE(1897), 1, + ACTIONS(1878), 1, + aux_sym_primary_null_token1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - STATE(498), 14, + STATE(496), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39617,108 +39269,153 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30573] = 7, + [28790] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - aux_sym_chunk_specification_token1, - ACTIONS(1888), 1, - aux_sym_relation_membership_token1, - STATE(481), 1, - sym_relational_operator, - ACTIONS(1880), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1882), 3, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1884), 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, - [30618] = 10, + 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(1880), 1, + sym_numeric_literal, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(273), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + STATE(497), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28844] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1862), 1, - anon_sym_EQ_GT, - ACTIONS(1864), 1, - anon_sym_PIPE, - ACTIONS(1872), 1, - anon_sym_COLON, - ACTIONS(1890), 1, - anon_sym_DOT, - ACTIONS(1892), 1, - anon_sym_COMMA, - STATE(1255), 1, - aux_sym__defining_identifier_list_repeat1, - STATE(1289), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(779), 6, + 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(1899), 1, + sym_value_sequence, + ACTIONS(441), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(273), 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, + [28898] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1882), 1, + sym_identifier, + ACTIONS(1884), 4, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + ACTIONS(1721), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(781), 16, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1723), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, aux_sym_expression_token1, aux_sym_expression_token3, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [30669] = 11, + anon_sym_PIPE, + [28940] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - ACTIONS(289), 1, + ACTIONS(233), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(247), 1, aux_sym_allocator_token1, - ACTIONS(431), 1, + ACTIONS(419), 1, aux_sym_primary_null_token1, - ACTIONS(499), 1, + ACTIONS(507), 1, sym_identifier, - ACTIONS(1895), 1, + ACTIONS(1886), 1, sym_numeric_literal, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(493), 3, + ACTIONS(441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(294), 5, + STATE(273), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, @@ -39738,113 +39435,147 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [30722] = 11, + [28994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(431), 1, - aux_sym_primary_null_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1897), 1, - sym_numeric_literal, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(494), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [30775] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(289), 1, - anon_sym_LBRACK, - ACTIONS(303), 1, - aux_sym_allocator_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1878), 1, - sym_numeric_literal, - ACTIONS(1899), 1, - aux_sym_primary_null_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(493), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(294), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - STATE(498), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [30828] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(1888), 1, + anon_sym_COMMA, + ACTIONS(1890), 1, + anon_sym_COLON, + STATE(1261), 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, - ACTIONS(913), 1, anon_sym_LPAREN, - ACTIONS(1785), 1, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, aux_sym_attribute_designator_token3, - ACTIONS(1789), 1, + anon_sym_DOT_DOT, aux_sym_range_attribute_designator_token1, - STATE(215), 1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [29038] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 1, + anon_sym_EQ_GT, + ACTIONS(1870), 1, + anon_sym_PIPE, + ACTIONS(1890), 1, + anon_sym_COLON, + ACTIONS(1892), 1, + anon_sym_COMMA, + STATE(1261), 1, + aux_sym__defining_identifier_list_repeat1, + STATE(1295), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(1858), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1860), 17, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_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(464), 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, + 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, + [29132] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(909), 1, + anon_sym_LPAREN, + 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(1905), 1, + anon_sym_DOT, + STATE(211), 1, sym_actual_parameter_part, - STATE(630), 6, + STATE(627), 6, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1901), 15, + ACTIONS(1907), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -39860,61 +39591,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30875] = 14, + [29182] = 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(1903), 1, - sym_identifier, - ACTIONS(1905), 1, - aux_sym_package_specification_token3, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(936), 1, - sym_overriding_indicator, - STATE(1789), 1, - sym__defining_identifier_list, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(530), 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, - [30931] = 4, + 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(1912), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1182), 1, + sym_iterator_filter, + ACTIONS(953), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1909), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + STATE(641), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(955), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [29239] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, + 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(1912), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1271), 1, + sym_iterator_filter, + ACTIONS(953), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1915), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + STATE(641), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(955), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [29296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, aux_sym_record_component_association_list_token1, - ACTIONS(1715), 6, + ACTIONS(1721), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1717), 19, + ACTIONS(1723), 19, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39934,77 +39709,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, anon_sym_PIPE, anon_sym_STAR_STAR, - [30967] = 13, + [29332] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, - sym_tick, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1789), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1916), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1215), 1, - sym_iterator_filter, - ACTIONS(1029), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1913), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - STATE(623), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1031), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [31021] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1919), 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(1920), 1, sym_identifier, ACTIONS(1922), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1925), 1, aux_sym_package_specification_token3, - ACTIONS(1927), 1, - aux_sym_relation_membership_token1, - ACTIONS(1930), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1933), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1936), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1939), 1, - aux_sym_global_mode_token1, - ACTIONS(1942), 1, - aux_sym_pragma_g_token1, - STATE(936), 1, + STATE(928), 1, sym_overriding_indicator, - STATE(1789), 1, + STATE(1654), 1, sym__defining_identifier_list, - STATE(1064), 3, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(529), 12, + STATE(532), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40017,32 +39751,32 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [31077] = 14, + [29388] = 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(1903), 1, + ACTIONS(1928), 1, sym_identifier, - ACTIONS(1907), 1, + ACTIONS(1931), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1934), 1, + aux_sym_package_specification_token3, + ACTIONS(1936), 1, + aux_sym_relation_membership_token1, + ACTIONS(1939), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1942), 1, aux_sym_access_to_subprogram_definition_token3, ACTIONS(1945), 1, - aux_sym_package_specification_token3, - STATE(936), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1948), 1, + aux_sym_global_mode_token1, + ACTIONS(1951), 1, + aux_sym_pragma_g_token1, + STATE(928), 1, sym_overriding_indicator, - STATE(1789), 1, + STATE(1654), 1, sym__defining_identifier_list, - STATE(1064), 3, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, @@ -40059,7 +39793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [31133] = 14, + [29444] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40072,102 +39806,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1903), 1, + ACTIONS(1920), 1, sym_identifier, - ACTIONS(1905), 1, - aux_sym_package_specification_token3, - ACTIONS(1907), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(936), 1, - sym_overriding_indicator, - STATE(1789), 1, - sym__defining_identifier_list, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(529), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31189] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, - sym_tick, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1789), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1916), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1153), 1, - sym_iterator_filter, - ACTIONS(1029), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1947), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - STATE(623), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1031), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [31243] = 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(1903), 1, - sym_identifier, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1950), 1, + ACTIONS(1954), 1, aux_sym_package_specification_token3, - STATE(936), 1, + STATE(928), 1, sym_overriding_indicator, - STATE(1789), 1, + STATE(1654), 1, sym__defining_identifier_list, - STATE(1064), 3, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, @@ -40184,7 +39835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [31299] = 15, + [29500] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40197,251 +39848,176 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1922), 1, aux_sym_package_specification_token3, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(928), 1, + sym_overriding_indicator, + STATE(1654), 1, + sym__defining_identifier_list, + STATE(1062), 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, + [29556] = 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(1920), 1, + sym_identifier, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, ACTIONS(1956), 1, - aux_sym_allocator_token1, - STATE(936), 1, + aux_sym_package_specification_token3, + STATE(928), 1, sym_overriding_indicator, - STATE(1533), 1, - sym_protected_definition, - STATE(1064), 3, + STATE(1654), 1, + sym__defining_identifier_list, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(559), 10, + 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_repeat1, - [31356] = 6, + aux_sym_protected_definition_repeat2, + [29612] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, - anon_sym_DOT, + 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, ACTIONS(1958), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + ACTIONS(1962), 1, + aux_sym_allocator_token1, + STATE(928), 1, + sym_overriding_indicator, + STATE(1668), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [29669] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1958), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + ACTIONS(1964), 1, + aux_sym_allocator_token1, + STATE(928), 1, + sym_overriding_indicator, + STATE(1745), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [29726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, sym_tick, - ACTIONS(1961), 1, - anon_sym_EQ_GT, - ACTIONS(779), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(781), 16, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31395] = 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(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - ACTIONS(1963), 1, - aux_sym_allocator_token1, - STATE(936), 1, - sym_overriding_indicator, - STATE(1723), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31452] = 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(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - ACTIONS(1965), 1, - aux_sym_allocator_token1, - STATE(936), 1, - sym_overriding_indicator, - STATE(1484), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31509] = 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(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - ACTIONS(1967), 1, - aux_sym_allocator_token1, - STATE(936), 1, - sym_overriding_indicator, - STATE(1872), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31566] = 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(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, ACTIONS(1969), 1, - aux_sym_allocator_token1, - STATE(936), 1, - sym_overriding_indicator, - STATE(1873), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31623] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_DOT, - ACTIONS(1971), 1, - anon_sym_COLON, - ACTIONS(779), 5, + anon_sym_EQ_GT, + ACTIONS(1858), 6, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(781), 17, - anon_sym_EQ, + ACTIONS(1860), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40449,16 +40025,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_mod, anon_sym_rem, - sym_tick, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_chunk_specification_token1, - anon_sym_SEMI, aux_sym_expression_token1, aux_sym_expression_token3, aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [31659] = 14, + [29763] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40471,23 +40048,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, + ACTIONS(1958), 1, aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, + ACTIONS(1960), 1, aux_sym_package_specification_token3, - STATE(936), 1, + ACTIONS(1971), 1, + aux_sym_allocator_token1, + STATE(928), 1, sym_overriding_indicator, - STATE(1765), 1, + STATE(1896), 1, sym_protected_definition, - STATE(1064), 3, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(559), 10, + STATE(553), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40498,7 +40077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31713] = 14, + [29820] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40511,23 +40090,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, + ACTIONS(1958), 1, aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, + ACTIONS(1960), 1, aux_sym_package_specification_token3, - STATE(936), 1, + ACTIONS(1973), 1, + aux_sym_allocator_token1, + STATE(928), 1, sym_overriding_indicator, - STATE(1640), 1, + STATE(1597), 1, sym_protected_definition, - STATE(1064), 3, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(559), 10, + STATE(553), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40538,7 +40119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31767] = 14, + [29877] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40551,143 +40132,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, + ACTIONS(1958), 1, aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, + ACTIONS(1960), 1, aux_sym_package_specification_token3, - STATE(936), 1, - sym_overriding_indicator, - STATE(1639), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31821] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - STATE(936), 1, - sym_overriding_indicator, - STATE(1499), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31875] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1952), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1954), 1, - aux_sym_package_specification_token3, - STATE(936), 1, - sym_overriding_indicator, - STATE(1836), 1, - sym_protected_definition, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(559), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [31929] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1973), 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, - [31961] = 14, + aux_sym_allocator_token1, + STATE(928), 1, + sym_overriding_indicator, + STATE(1557), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [29934] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40696,9 +40170,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, ACTIONS(1977), 1, aux_sym_package_specification_token3, @@ -40706,52 +40180,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_subunit_token1, ACTIONS(1981), 1, aux_sym_entry_declaration_token1, - STATE(964), 1, + STATE(1018), 1, sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1067), 1, - sym__subprogram_specification, - STATE(1087), 1, + STATE(1058), 1, sym_function_specification, - STATE(548), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [32015] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1981), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1983), 1, - aux_sym_package_specification_token3, - STATE(964), 1, - sym_overriding_indicator, - STATE(1011), 1, + STATE(1073), 1, sym_procedure_specification, - STATE(1067), 1, + STATE(1088), 1, sym__subprogram_specification, - STATE(1087), 1, - sym_function_specification, STATE(552), 12, sym_subprogram_body, sym__aspect_clause, @@ -40765,348 +40201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [32066] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, - sym_tick, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1789), 1, - aux_sym_range_attribute_designator_token1, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(1029), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1985), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(623), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1031), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32113] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - ACTIONS(1981), 1, - aux_sym_entry_declaration_token1, - STATE(964), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1067), 1, - sym__subprogram_specification, - STATE(1087), 1, - sym_function_specification, - STATE(548), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [32164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 23, - 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, - [32193] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1989), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1992), 1, - aux_sym_package_specification_token3, - ACTIONS(1994), 1, - aux_sym_relation_membership_token1, - ACTIONS(1997), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2000), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2003), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2006), 1, - aux_sym_global_mode_token1, - STATE(964), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1067), 1, - sym__subprogram_specification, - STATE(1087), 1, - sym_function_specification, - STATE(552), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [32244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2011), 1, - aux_sym_with_clause_token2, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(2009), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32281] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - aux_sym_expression_token1, - ACTIONS(2017), 1, - aux_sym_expression_token3, - ACTIONS(2019), 1, - aux_sym_expression_token5, - STATE(586), 1, - aux_sym_expression_repeat1, - STATE(587), 1, - aux_sym_expression_repeat2, - STATE(588), 1, - aux_sym_expression_repeat3, - ACTIONS(2013), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - 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, - [32351] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1981), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2023), 1, - aux_sym_package_specification_token3, - STATE(964), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1067), 1, - sym__subprogram_specification, - STATE(1087), 1, - sym_function_specification, - STATE(552), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [32402] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, - sym_tick, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, - aux_sym_attribute_designator_token3, - ACTIONS(2025), 1, - aux_sym_range_attribute_designator_token1, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(1029), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1985), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(623), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1031), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32449] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2032), 1, - aux_sym_relation_membership_token1, - ACTIONS(2035), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2038), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2041), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2044), 1, - aux_sym_global_mode_token1, - ACTIONS(2047), 1, - aux_sym_pragma_g_token1, - STATE(936), 1, - sym_overriding_indicator, - ACTIONS(2030), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(1064), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(558), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32498] = 13, + [29988] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41119,21 +40214,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, + ACTIONS(1924), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, + ACTIONS(1926), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1950), 1, - aux_sym_package_specification_token3, - ACTIONS(2050), 1, + ACTIONS(1958), 1, aux_sym_compilation_unit_token1, - STATE(936), 1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + STATE(928), 1, sym_overriding_indicator, - STATE(1064), 3, + STATE(1639), 1, + sym_protected_definition, + STATE(1062), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(558), 10, + STATE(553), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41144,48 +40241,12 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [32549] = 13, + [30042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1981), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1983), 1, - aux_sym_package_specification_token3, - STATE(964), 1, - sym_overriding_indicator, - STATE(1011), 1, - sym_procedure_specification, - STATE(1067), 1, - sym__subprogram_specification, - STATE(1087), 1, - sym_function_specification, - STATE(556), 12, - sym_subprogram_body, - sym__aspect_clause, - 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, - [32600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 23, + ACTIONS(1985), 1, + anon_sym_LPAREN, + ACTIONS(1983), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41209,29 +40270,820 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32629] = 10, + [30074] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2057), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2062), 1, - aux_sym_with_clause_token2, - ACTIONS(2065), 1, - aux_sym_use_clause_token2, - ACTIONS(2068), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, aux_sym_pragma_g_token1, - STATE(1808), 1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1958), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + STATE(928), 1, + sym_overriding_indicator, + STATE(1764), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [30128] = 12, + 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, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(953), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1987), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(641), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(955), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [30178] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1958), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + STATE(928), 1, + sym_overriding_indicator, + STATE(1835), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [30232] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(1991), 1, + aux_sym_with_clause_token2, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(1989), 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, + [30272] = 12, + 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(1993), 1, + aux_sym_range_attribute_designator_token1, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(953), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1987), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(641), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(955), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [30322] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1958), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + STATE(928), 1, + sym_overriding_indicator, + STATE(1602), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [30376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 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, + 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, + [30410] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1958), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1960), 1, + aux_sym_package_specification_token3, + STATE(928), 1, + sym_overriding_indicator, + STATE(1638), 1, + sym_protected_definition, + STATE(1062), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(553), 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, + [30464] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 1, + aux_sym_expression_token1, + ACTIONS(2001), 1, + aux_sym_expression_token3, + ACTIONS(2003), 1, + aux_sym_expression_token5, + STATE(593), 1, + aux_sym_expression_repeat1, + STATE(594), 1, + aux_sym_expression_repeat2, + STATE(595), 1, + aux_sym_expression_repeat3, + ACTIONS(1997), 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, + [30505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 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, + [30534] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2007), 1, + aux_sym_package_specification_token3, + STATE(1018), 1, + sym_overriding_indicator, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1088), 1, + sym__subprogram_specification, + STATE(560), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30585] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1954), 1, + aux_sym_package_specification_token3, + ACTIONS(2009), 1, + aux_sym_compilation_unit_token1, + STATE(928), 1, + sym_overriding_indicator, + STATE(1062), 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, + [30636] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1977), 1, + aux_sym_package_specification_token3, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + STATE(1018), 1, + sym_overriding_indicator, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1088), 1, + sym__subprogram_specification, + STATE(552), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2011), 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, + [30716] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2013), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2018), 1, + aux_sym_relation_membership_token1, + ACTIONS(2021), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2024), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2027), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2030), 1, + aux_sym_global_mode_token1, + ACTIONS(2033), 1, + aux_sym_pragma_g_token1, + STATE(928), 1, + sym_overriding_indicator, + ACTIONS(2016), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(1062), 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, + [30765] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2036), 1, + aux_sym_package_specification_token3, + STATE(1018), 1, + sym_overriding_indicator, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1088), 1, + sym__subprogram_specification, + STATE(560), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2038), 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, + [30845] = 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(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1981), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2007), 1, + aux_sym_package_specification_token3, + STATE(1018), 1, + sym_overriding_indicator, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1088), 1, + sym__subprogram_specification, + STATE(557), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30896] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2040), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2043), 1, + aux_sym_package_specification_token3, + ACTIONS(2045), 1, + aux_sym_relation_membership_token1, + ACTIONS(2048), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2051), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2054), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2057), 1, + aux_sym_global_mode_token1, + STATE(1018), 1, + sym_overriding_indicator, + STATE(1058), 1, + sym_function_specification, + STATE(1073), 1, + sym_procedure_specification, + STATE(1088), 1, + sym__subprogram_specification, + STATE(560), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30947] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2066), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2068), 1, + aux_sym_component_definition_token1, + ACTIONS(2070), 1, + aux_sym_exception_declaration_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(971), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + STATE(969), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31001] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(2072), 1, + sym_identifier, + ACTIONS(2076), 1, + aux_sym_iterator_filter_token1, + STATE(28), 1, + sym_procedure_call_statement, + STATE(1127), 1, + sym__guard_select, + STATE(1144), 1, + sym_guard, + STATE(1324), 1, + sym_entry_call_alternative, + STATE(1799), 1, + sym_triggering_alternative, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2074), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(55), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(995), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31053] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2078), 1, + sym_identifier, + ACTIONS(2084), 1, + aux_sym_exception_declaration_token1, + STATE(705), 1, + sym_null_exclusion, + STATE(1729), 1, + sym_access_definition, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2080), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + ACTIONS(2082), 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(1037), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31101] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(2088), 1, + aux_sym_with_clause_token2, + ACTIONS(2090), 1, + aux_sym_use_clause_token2, + STATE(1811), 1, sym__defining_identifier_list, - STATE(870), 2, + STATE(864), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - ACTIONS(2060), 3, + ACTIONS(2086), 3, aux_sym_package_specification_token1, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, - STATE(562), 10, + STATE(571), 10, sym_use_clause, sym__generic_formal_parameter_declaration, sym_formal_object_declaration, @@ -41242,28 +41094,55 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [32672] = 12, + [31144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 1, + anon_sym_PIPE, + STATE(572), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2092), 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, + [31175] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, aux_sym_iterated_element_association_token2, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(1903), 1, + ACTIONS(1920), 1, sym_identifier, - ACTIONS(2071), 1, - aux_sym_package_specification_token1, - ACTIONS(2074), 1, + ACTIONS(2088), 1, aux_sym_with_clause_token2, - ACTIONS(2076), 1, + ACTIONS(2090), 1, aux_sym_use_clause_token2, - ACTIONS(2078), 1, + ACTIONS(2096), 1, + aux_sym_package_specification_token1, + ACTIONS(2099), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2081), 1, + ACTIONS(2102), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(1808), 1, + STATE(1811), 1, sym__defining_identifier_list, - STATE(870), 2, + STATE(864), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, STATE(564), 10, @@ -41277,29 +41156,173 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [32719] = 10, + [31222] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1903), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2060), 1, sym_identifier, - ACTIONS(2074), 1, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2068), 1, + aux_sym_component_definition_token1, + ACTIONS(2105), 1, + aux_sym_general_access_modifier_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(971), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + STATE(969), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31273] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(909), 1, + anon_sym_LPAREN, + 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(1905), 1, + anon_sym_DOT, + STATE(211), 1, + sym_actual_parameter_part, + STATE(641), 6, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1987), 8, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(2076), 1, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [31316] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2109), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2111), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2113), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(640), 1, + sym_general_access_modifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1141), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2107), 2, + aux_sym_use_clause_token1, + aux_sym_general_access_modifier_token1, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31367] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(677), 1, + sym_null_exclusion, + STATE(983), 1, + sym__subtype_indication, + STATE(1553), 1, + sym__assign_value, + STATE(1899), 1, + sym_value_sequence, + STATE(981), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [31418] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2117), 1, + sym_identifier, + ACTIONS(2120), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2125), 1, + aux_sym_with_clause_token2, + ACTIONS(2128), 1, aux_sym_use_clause_token2, - STATE(1808), 1, + ACTIONS(2131), 1, + aux_sym_pragma_g_token1, + STATE(1811), 1, sym__defining_identifier_list, - STATE(870), 2, + STATE(864), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - ACTIONS(2084), 3, + ACTIONS(2123), 3, aux_sym_package_specification_token1, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, - STATE(562), 10, + STATE(571), 10, sym_use_clause, sym__generic_formal_parameter_declaration, sym_formal_object_declaration, @@ -41310,14 +41333,14 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [32762] = 4, + [31461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, + ACTIONS(2136), 1, anon_sym_PIPE, - STATE(571), 1, + STATE(572), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2086), 19, + ACTIONS(2134), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41337,52 +41360,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32793] = 15, + [31492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, ACTIONS(2094), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2096), 1, - aux_sym_component_definition_token1, - ACTIONS(2098), 1, - aux_sym_exception_declaration_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(960), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - STATE(957), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2088), 1, anon_sym_PIPE, STATE(565), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2100), 19, + ACTIONS(2139), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41402,463 +41387,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32877] = 3, + [31523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DOT_DOT, - ACTIONS(2102), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32906] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2110), 1, - aux_sym_exception_declaration_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1721), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2106), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - ACTIONS(2108), 5, - aux_sym_iterated_element_association_token1, - aux_sym_subprogram_body_token1, - aux_sym_declare_expression_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - STATE(1095), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [32953] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2114), 1, - aux_sym_iterator_filter_token1, - STATE(28), 1, - sym_procedure_call_statement, - STATE(1063), 1, - sym__guard_select, - STATE(1220), 1, - sym_guard, - STATE(1393), 1, - sym_entry_call_alternative, - STATE(1794), 1, - sym_triggering_alternative, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2112), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(46), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1050), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2118), 1, - anon_sym_PIPE, - STATE(571), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2116), 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, - [33035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1787), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1789), 1, - aux_sym_range_attribute_designator_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(623), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1985), 8, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [33075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33101] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, - sym_identifier, - ACTIONS(2125), 1, - anon_sym_LPAREN, - ACTIONS(2127), 1, - anon_sym_LBRACK, - ACTIONS(2131), 1, - aux_sym_range_attribute_designator_token1, - STATE(222), 1, - sym_attribute_designator, - STATE(561), 1, - sym_range_attribute_designator, - ACTIONS(2129), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(190), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [33141] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2096), 1, - aux_sym_component_definition_token1, - ACTIONS(2133), 1, - aux_sym_general_access_modifier_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(960), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - STATE(957), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33243] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2141), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(2143), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2145), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(651), 1, - sym_general_access_modifier, - STATE(800), 1, - sym_null_exclusion, - STATE(1189), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2139), 2, - aux_sym_use_clause_token1, - aux_sym_general_access_modifier_token1, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33293] = 14, + anon_sym_DOT_DOT, + ACTIONS(2141), 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, + [31552] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(235), 1, + aux_sym_chunk_specification_token1, + ACTIONS(257), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2092), 1, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(687), 1, + ACTIONS(2145), 1, + sym_identifier, + ACTIONS(2149), 1, + aux_sym_component_definition_token1, + STATE(663), 1, + sym_non_empty_mode, + STATE(716), 1, sym_null_exclusion, - STATE(969), 1, - sym__subtype_indication, - STATE(1687), 1, - sym__assign_value, - STATE(1897), 1, - sym_value_sequence, - STATE(967), 2, + STATE(947), 1, sym_access_definition, - sym_array_type_definition, - ACTIONS(2090), 3, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2147), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(820), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33395] = 13, + [31602] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, ACTIONS(2151), 1, aux_sym_general_access_modifier_token1, - ACTIONS(2153), 1, - aux_sym_component_definition_token1, - STATE(687), 1, + STATE(677), 1, sym_null_exclusion, - STATE(1264), 1, + STATE(980), 1, sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(1028), 2, + STATE(981), 2, sym_access_definition, - sym__return_subtype_indication, - ACTIONS(2090), 3, + sym_array_type_definition, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33442] = 4, + [31650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, - aux_sym_expression_token3, - STATE(583), 1, - aux_sym_expression_repeat2, - ACTIONS(2155), 17, + ACTIONS(2153), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41870,67 +41499,197 @@ static const uint16_t ts_small_parse_table[] = { 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, - [33471] = 14, + [31676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 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, + [31702] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(291), 1, - aux_sym_chunk_specification_token1, - ACTIONS(313), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - ACTIONS(2162), 1, + ACTIONS(2157), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2159), 1, aux_sym_component_definition_token1, STATE(677), 1, - sym_non_empty_mode, - STATE(701), 1, sym_null_exclusion, - STATE(943), 1, - sym_access_definition, - STATE(1897), 1, + STATE(1306), 1, + sym__subtype_indication, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2160), 3, + STATE(1051), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(822), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33520] = 8, + [31750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2134), 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, + [31776] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + sym_identifier, + ACTIONS(2163), 1, + anon_sym_LPAREN, + ACTIONS(2165), 1, + anon_sym_LBRACK, + ACTIONS(2169), 1, + aux_sym_range_attribute_designator_token1, + STATE(223), 1, + sym_attribute_designator, + STATE(555), 1, + sym_range_attribute_designator, + ACTIONS(2167), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(221), 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, + [31816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31868] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1901), 1, aux_sym_chunk_specification_token1, - ACTIONS(1888), 1, + ACTIONS(1903), 1, aux_sym_relation_membership_token1, - ACTIONS(2104), 1, + ACTIONS(2143), 1, anon_sym_DOT_DOT, - STATE(481), 1, + STATE(464), 1, sym_relational_operator, - ACTIONS(1880), 3, + ACTIONS(1895), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1882), 3, + ACTIONS(1897), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1884), 9, + ACTIONS(1899), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41940,1031 +41699,828 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, aux_sym_expression_token5, anon_sym_PIPE, - [33557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - aux_sym_expression_token1, - STATE(591), 1, - aux_sym_expression_repeat1, - ACTIONS(2164), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 1, - aux_sym_expression_token3, - STATE(583), 1, - aux_sym_expression_repeat2, - ACTIONS(2164), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 1, - aux_sym_expression_token5, - STATE(590), 1, - aux_sym_expression_repeat3, - ACTIONS(2164), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33644] = 13, + [31905] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2092), 1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - ACTIONS(2166), 1, - aux_sym_general_access_modifier_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(953), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - STATE(967), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 1, - aux_sym_expression_token5, - STATE(590), 1, - aux_sym_expression_repeat3, - ACTIONS(2168), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33720] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(2175), 1, - aux_sym_expression_token1, - STATE(591), 1, - aux_sym_expression_repeat1, - ACTIONS(2173), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33749] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, - sym_identifier, - ACTIONS(2125), 1, - anon_sym_LPAREN, - ACTIONS(2127), 1, - anon_sym_LBRACK, - STATE(222), 1, - sym_attribute_designator, - ACTIONS(2129), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(190), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [33783] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1771), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(687), 1, + aux_sym_component_definition_token1, + STATE(677), 1, sym_null_exclusion, - STATE(1003), 1, + STATE(1049), 1, + sym_component_definition, + STATE(1067), 1, sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - STATE(1002), 2, + STATE(1069), 1, sym_access_definition, - sym_array_type_definition, - ACTIONS(2090), 3, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33827] = 12, + [31952] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(235), 1, + aux_sym_chunk_specification_token1, + ACTIONS(257), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - ACTIONS(2178), 1, - aux_sym_general_access_modifier_token1, - STATE(687), 1, + ACTIONS(2177), 1, + sym_identifier, + STATE(620), 1, + sym_non_empty_mode, + STATE(728), 1, sym_null_exclusion, - STATE(1264), 1, - sym__subtype_indication, - STATE(1897), 1, + STATE(1032), 1, + sym_access_definition, + STATE(1899), 1, sym_value_sequence, - STATE(1053), 2, + ACTIONS(2179), 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, + [31999] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2181), 1, + aux_sym_general_access_modifier_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(1306), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + STATE(1124), 2, sym_access_definition, sym__return_subtype_indication, - ACTIONS(2090), 3, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [33871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2155), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_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, - [33895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2168), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33919] = 13, + [32044] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(291), 1, - aux_sym_chunk_specification_token1, - ACTIONS(313), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(627), 1, - sym_non_empty_mode, - STATE(683), 1, - sym_null_exclusion, - STATE(983), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2180), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(845), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [33965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2182), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33989] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(1771), 1, + ACTIONS(1773), 1, aux_sym_array_type_definition_token1, - ACTIONS(2092), 1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - STATE(687), 1, + STATE(677), 1, sym_null_exclusion, - STATE(969), 1, + STATE(1016), 1, sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - STATE(967), 2, - sym_access_definition, - sym_array_type_definition, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34033] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2184), 1, - aux_sym_component_definition_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(976), 1, - sym_component_definition, - STATE(1094), 1, - sym__subtype_indication, - STATE(1096), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 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, - [34103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2186), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34127] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2184), 1, - aux_sym_component_definition_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(1090), 1, - sym_component_definition, - STATE(1094), 1, - sym__subtype_indication, - STATE(1096), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34173] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2184), 1, - aux_sym_component_definition_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(1086), 1, - sym_component_definition, - STATE(1094), 1, - sym__subtype_indication, - STATE(1096), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34219] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, - sym_identifier, - ACTIONS(2125), 1, - anon_sym_LPAREN, - ACTIONS(2127), 1, - anon_sym_LBRACK, - STATE(1150), 1, - sym_attribute_designator, - ACTIONS(2129), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(190), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [34253] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2190), 1, - anon_sym_SEMI, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(1251), 1, - sym_subprogram_default, - STATE(1634), 1, - sym_aspect_specification, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2194), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2188), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(963), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_range_attribute_designator_token1, - STATE(639), 1, - sym_range_constraint, - ACTIONS(2196), 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, - [34321] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(1456), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - STATE(1457), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_range_attribute_designator_token1, - STATE(631), 1, - sym_range_constraint, - ACTIONS(2198), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34389] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(1264), 1, - sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, STATE(1017), 2, sym_access_definition, - sym__return_subtype_indication, - ACTIONS(2090), 3, + sym_array_type_definition, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34430] = 11, + [32089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + aux_sym_expression_token3, + STATE(589), 1, + aux_sym_expression_repeat2, + ACTIONS(2183), 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, + [32118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 1, + aux_sym_expression_token1, + STATE(590), 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, + [32147] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + ACTIONS(1773), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - STATE(687), 1, + STATE(677), 1, sym_null_exclusion, - STATE(1264), 1, + STATE(983), 1, sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - STATE(1055), 2, + STATE(981), 2, + sym_access_definition, + sym_array_type_definition, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, + aux_sym_expression_token5, + STATE(592), 1, + aux_sym_expression_repeat3, + ACTIONS(2193), 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, + [32221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 1, + aux_sym_expression_token1, + STATE(590), 1, + aux_sym_expression_repeat1, + ACTIONS(2198), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + aux_sym_expression_token3, + STATE(589), 1, + aux_sym_expression_repeat2, + ACTIONS(2198), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + aux_sym_expression_token5, + STATE(592), 1, + aux_sym_expression_repeat3, + ACTIONS(2198), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32308] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2175), 1, + aux_sym_component_definition_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(1003), 1, + sym_component_definition, + STATE(1067), 1, + sym__subtype_indication, + STATE(1069), 1, + sym_access_definition, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32355] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2175), 1, + aux_sym_component_definition_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(1054), 1, + sym_component_definition, + STATE(1067), 1, + sym__subtype_indication, + STATE(1069), 1, + sym_access_definition, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32402] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(1306), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + STATE(1056), 2, sym_access_definition, sym__return_subtype_indication, - ACTIONS(2090), 3, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34471] = 11, + [32444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(291), 1, - aux_sym_chunk_specification_token1, - ACTIONS(313), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(499), 1, + ACTIONS(2200), 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, + [32468] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(667), 1, - sym_non_empty_mode, - STATE(762), 1, - sym_null_exclusion, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2200), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(824), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34511] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(687), 1, - sym_null_exclusion, - STATE(1010), 1, - sym__subtype_indication, - STATE(1015), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34551] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2202), 1, - aux_sym_package_specification_token1, - ACTIONS(2204), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2206), 1, - aux_sym_interface_type_definition_token1, - STATE(1001), 1, - sym_overriding_indicator, - STATE(1280), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(467), 5, - sym__proper_body, - sym_subprogram_body, - sym_package_body, - sym_task_body, - sym_protected_body, - [34591] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2210), 1, + ACTIONS(2163), 1, anon_sym_LPAREN, - STATE(490), 1, - sym__subtype_indication_paren_constraint, - STATE(655), 1, - sym_subpool_specification, - STATE(775), 1, - sym_null_exclusion, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2208), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(266), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34631] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(2165), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + STATE(223), 1, + sym_attribute_designator, + ACTIONS(2167), 4, aux_sym_attribute_designator_token1, - ACTIONS(2110), 1, - aux_sym_exception_declaration_token1, - STATE(693), 1, - sym_null_exclusion, - STATE(1721), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2106), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1095), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34671] = 10, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(221), 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, + [32502] = 2, + ACTIONS(3), 1, + sym_comment, + 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_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, + [32526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2188), 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, + [32550] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2214), 1, - aux_sym_package_specification_token3, - ACTIONS(2216), 1, - aux_sym_at_clause_token1, - STATE(663), 1, - sym_mod_clause, - STATE(1897), 1, - sym_value_sequence, - STATE(660), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2212), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1128), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34709] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, + ACTIONS(1757), 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(2218), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2220), 1, - aux_sym_package_specification_token3, - STATE(1587), 1, - sym_overriding_indicator, - STATE(636), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34744] = 9, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(1460), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + STATE(1461), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32616] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + sym_identifier, + ACTIONS(2163), 1, + anon_sym_LPAREN, + ACTIONS(2165), 1, + anon_sym_LBRACK, + STATE(1043), 1, + sym_attribute_designator, + ACTIONS(2167), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(221), 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, + [32650] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2204), 1, sym_identifier, - ACTIONS(2222), 1, - aux_sym_private_type_declaration_token1, - STATE(1204), 1, + ACTIONS(2208), 1, + anon_sym_SEMI, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1250), 1, sym_subprogram_default, - STATE(1897), 1, + STATE(1601), 1, + sym_aspect_specification, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2194), 2, + ACTIONS(2212), 2, aux_sym_primary_null_token1, anon_sym_LT_GT, - ACTIONS(2188), 3, + ACTIONS(2206), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(963), 5, + STATE(935), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34779] = 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(2224), 1, - aux_sym_allocator_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1660), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34814] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(2226), 1, - aux_sym_primary_null_token1, - ACTIONS(2228), 1, - aux_sym_case_expression_token1, - STATE(674), 1, - aux_sym_component_list_repeat1, - STATE(1385), 1, - sym_component_list, - STATE(1398), 1, - sym_variant_part, - STATE(1789), 1, - sym__defining_identifier_list, - STATE(934), 7, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - [34851] = 10, + [32692] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - STATE(693), 1, + STATE(677), 1, sym_null_exclusion, - STATE(1721), 1, - sym_access_definition, - STATE(1897), 1, + STATE(1306), 1, + sym__subtype_indication, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2106), 3, + STATE(1116), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1095), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34888] = 2, + [32734] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2193), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_PIPE, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32758] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + STATE(677), 1, + sym_null_exclusion, + STATE(1118), 1, + sym_access_definition, + STATE(1119), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32799] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2214), 1, + sym_identifier, + ACTIONS(2218), 1, + anon_sym_LPAREN, + STATE(493), 1, + sym__subtype_indication_paren_constraint, + STATE(630), 1, + sym_subpool_specification, + STATE(776), 1, + sym_null_exclusion, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2216), 3, + 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, + [32840] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, + aux_sym_range_attribute_designator_token1, + STATE(655), 1, + sym_range_constraint, + ACTIONS(2220), 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, + [32867] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2222), 1, + sym_identifier, + ACTIONS(2226), 1, + aux_sym_package_specification_token3, + ACTIONS(2228), 1, + aux_sym_at_clause_token1, + STATE(632), 1, + sym_mod_clause, + STATE(1899), 1, + sym_value_sequence, + STATE(631), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2224), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32906] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2078), 1, + sym_identifier, + ACTIONS(2084), 1, + aux_sym_exception_declaration_token1, + STATE(705), 1, + sym_null_exclusion, + STATE(1729), 1, + sym_access_definition, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2080), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1037), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [32947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, + aux_sym_range_attribute_designator_token1, + STATE(653), 1, + sym_range_constraint, ACTIONS(2230), 15, anon_sym_COMMA, anon_sym_RPAREN, @@ -42981,340 +42537,545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34909] = 10, + [32974] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(235), 1, + aux_sym_chunk_specification_token1, + ACTIONS(257), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(707), 1, - sym_null_exclusion, - STATE(817), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2232), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(681), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [34946] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(2236), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2238), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2240), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2242), 1, - aux_sym_general_access_modifier_token1, - STATE(1897), 1, + STATE(658), 1, + sym_non_empty_mode, + STATE(750), 1, + sym_null_exclusion, + STATE(1899), 1, sym_value_sequence, ACTIONS(2234), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(673), 5, + STATE(817), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [34983] = 10, + [33015] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2246), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2248), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2250), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2252), 1, - aux_sym_general_access_modifier_token1, - STATE(1897), 1, + ACTIONS(2240), 1, + aux_sym_positional_array_aggregate_token1, + STATE(1202), 1, + sym_exception_choice, + STATE(1676), 1, + sym_choice_parameter_specification, + STATE(1714), 1, + sym_exception_choice_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2238), 3, + 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, + [33053] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2242), 1, + sym_identifier, + STATE(702), 1, + sym_null_exclusion, + STATE(819), 1, + sym_access_definition, + STATE(1899), 1, sym_value_sequence, ACTIONS(2244), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(675), 5, + STATE(669), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35020] = 10, + [33091] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - ACTIONS(2092), 1, - aux_sym_attribute_designator_token1, - STATE(741), 1, - sym_null_exclusion, - STATE(968), 1, - sym_access_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2254), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(849), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35057] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, + ACTIONS(2250), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2252), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2254), 1, + aux_sym_access_to_subprogram_definition_token3, ACTIONS(2256), 1, - sym_identifier, - ACTIONS(2260), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1314), 1, - sym_exception_choice, - STATE(1843), 1, - sym_choice_parameter_specification, - STATE(1844), 1, - sym_exception_choice_list, - STATE(1897), 1, + aux_sym_general_access_modifier_token1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2258), 3, + ACTIONS(2248), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1005), 5, + STATE(657), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35094] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2262), 1, - aux_sym_allocator_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1917), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - 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, - [35150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35171] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2268), 1, - aux_sym_allocator_token1, - STATE(1493), 1, - sym_task_definition, - STATE(1587), 1, - sym_overriding_indicator, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35206] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(2226), 1, - aux_sym_primary_null_token1, - ACTIONS(2228), 1, - aux_sym_case_expression_token1, - STATE(674), 1, - aux_sym_component_list_repeat1, - STATE(1398), 1, - sym_variant_part, - STATE(1789), 1, - sym__defining_identifier_list, - STATE(1795), 1, - sym_component_list, - STATE(934), 7, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - [35243] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2270), 1, - aux_sym_allocator_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1919), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35278] = 10, + [33129] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2258), 1, sym_identifier, - ACTIONS(1755), 1, + ACTIONS(2262), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2264), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2266), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2268), 1, + aux_sym_general_access_modifier_token1, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2260), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(665), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33167] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - ACTIONS(2092), 1, + ACTIONS(2064), 1, aux_sym_attribute_designator_token1, - STATE(740), 1, + ACTIONS(2270), 1, + sym_identifier, + STATE(692), 1, sym_null_exclusion, - STATE(1107), 1, + STATE(967), 1, sym_access_definition, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2272), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(889), 5, + STATE(830), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35315] = 8, + [33205] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2204), 1, + sym_identifier, ACTIONS(2274), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2279), 1, + aux_sym_private_type_declaration_token1, + STATE(1273), 1, + sym_subprogram_default, + STATE(1899), 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(935), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33241] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2078), 1, + sym_identifier, + STATE(705), 1, + sym_null_exclusion, + STATE(1729), 1, + sym_access_definition, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2080), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1037), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33279] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2276), 1, + aux_sym_package_specification_token1, + ACTIONS(2278), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2280), 1, + aux_sym_interface_type_definition_token1, + STATE(1028), 1, + sym_overriding_indicator, + STATE(1298), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(468), 5, + sym__proper_body, + sym_subprogram_body, + sym_package_body, + sym_task_body, + sym_protected_body, + [33319] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2064), 1, + aux_sym_attribute_designator_token1, ACTIONS(2282), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2285), 1, - aux_sym_global_mode_token1, - STATE(1587), 1, - sym_overriding_indicator, - ACTIONS(2277), 2, - aux_sym_compilation_unit_token1, + sym_identifier, + STATE(742), 1, + sym_null_exclusion, + STATE(1106), 1, + sym_access_definition, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2284), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(878), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33357] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1115), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33392] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(2286), 1, + aux_sym_primary_null_token1, + ACTIONS(2288), 1, + aux_sym_case_expression_token1, + STATE(722), 1, + aux_sym_component_list_repeat1, + STATE(1345), 1, + sym_component_list, + STATE(1454), 1, + sym_variant_part, + STATE(1654), 1, + sym__defining_identifier_list, + STATE(926), 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, + [33429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2290), 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, + [33450] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1074), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33485] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1075), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33520] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2214), 1, + sym_identifier, + STATE(487), 1, + sym__subtype_indication_paren_constraint, + STATE(776), 1, + sym_null_exclusion, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2216), 3, + 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, + [33555] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2222), 1, + sym_identifier, + ACTIONS(2292), 1, aux_sym_package_specification_token3, - STATE(636), 8, + STATE(1899), 1, + sym_value_sequence, + STATE(650), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2224), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33588] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2222), 1, + sym_identifier, + ACTIONS(2292), 1, + aux_sym_package_specification_token3, + STATE(1899), 1, + sym_value_sequence, + STATE(652), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2224), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [33621] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(2286), 1, + aux_sym_primary_null_token1, + ACTIONS(2288), 1, + aux_sym_case_expression_token1, + STATE(722), 1, + aux_sym_component_list_repeat1, + STATE(1454), 1, + sym_variant_part, + STATE(1654), 1, + sym__defining_identifier_list, + STATE(1663), 1, + sym_component_list, + STATE(926), 7, + sym__component_item, + sym_component_declaration, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, - sym_entry_declaration, sym_enumeration_representation_clause, - sym__task_item, sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35348] = 2, + [33658] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 15, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2294), 1, + sym_identifier, + ACTIONS(2298), 1, + aux_sym_use_clause_token1, + ACTIONS(2300), 1, + aux_sym_use_clause_token2, + STATE(1865), 1, + sym__name_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2296), 3, + 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, + [33693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -43330,762 +43091,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35369] = 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(2290), 1, - aux_sym_allocator_token1, - STATE(1586), 1, - sym_task_definition, - STATE(1587), 1, - sym_overriding_indicator, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2292), 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, - [35425] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1671), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35457] = 9, + [33714] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - STATE(800), 1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, sym_null_exclusion, - STATE(1030), 1, + STATE(1098), 1, sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2090), 3, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35491] = 9, + [33749] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1068), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35525] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1125), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35559] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1784), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35591] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1458), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35625] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1587), 1, - sym_overriding_indicator, - STATE(1848), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35657] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1370), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35691] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2260), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1314), 1, - sym_exception_choice, - STATE(1498), 1, - sym_exception_choice_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2258), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1005), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35725] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, STATE(1100), 1, sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2090), 3, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [35759] = 9, + [33784] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1124), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35793] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1137), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35827] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, - sym_null_exclusion, - STATE(1226), 1, - sym__subtype_indication, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2090), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(572), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35861] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2294), 1, - aux_sym_package_specification_token3, - STATE(1587), 1, - sym_overriding_indicator, - STATE(636), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35893] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - 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(1486), 1, - sym_task_definition, - STATE(1587), 1, - sym_overriding_indicator, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35925] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(492), 1, - sym__subtype_indication_paren_constraint, - STATE(775), 1, - sym_null_exclusion, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2208), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(266), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35959] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2296), 1, - aux_sym_package_specification_token3, - STATE(1897), 1, - sym_value_sequence, - STATE(657), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2212), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1128), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [35991] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2298), 1, - sym_identifier, + ACTIONS(2240), 1, + aux_sym_positional_array_aggregate_token1, ACTIONS(2304), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - aux_sym_package_specification_token3, - STATE(1897), 1, + sym_identifier, + STATE(1202), 1, + sym_exception_choice, + STATE(1613), 1, + sym_exception_choice_list, + STATE(1899), 1, sym_value_sequence, - STATE(657), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2301), 3, + ACTIONS(2238), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1128), 5, + STATE(922), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36023] = 8, + [33819] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 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(1672), 1, - sym_task_definition, - STATE(618), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36055] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(2060), 1, sym_identifier, - ACTIONS(2311), 1, - aux_sym_use_clause_token1, - ACTIONS(2313), 1, - aux_sym_use_clause_token2, - STATE(1862), 1, - sym__name_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2309), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36089] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2315), 1, - aux_sym_package_specification_token3, - STATE(1897), 1, - sym_value_sequence, - STATE(657), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2212), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1128), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36121] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(800), 1, + STATE(778), 1, sym_null_exclusion, - STATE(1415), 1, + STATE(1417), 1, sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2090), 3, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36155] = 9, + [33854] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - STATE(800), 1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, sym_null_exclusion, - STATE(1099), 1, + STATE(1138), 1, sym__subtype_indication, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2090), 3, + ACTIONS(2062), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(572), 5, + STATE(568), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36189] = 8, + [33889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2315), 1, - aux_sym_package_specification_token3, - STATE(1897), 1, - sym_value_sequence, - STATE(656), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2212), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1128), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36221] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - sym_identifier, - ACTIONS(2320), 1, - aux_sym_iterated_element_association_token1, - STATE(1789), 1, - sym__defining_identifier_list, - ACTIONS(2323), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(664), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(2327), 11, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(2306), 15, 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, - [36271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2331), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2333), 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, - [36292] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, - aux_sym_relation_membership_token1, - STATE(797), 1, - sym_null_exclusion, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2335), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(821), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(2127), 1, - anon_sym_LBRACK, - STATE(1239), 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, - [36346] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_DOT, - ACTIONS(2337), 1, aux_sym_chunk_specification_token1, - ACTIONS(779), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(781), 9, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - [36371] = 7, + 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, + [33910] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44096,9 +43251,13 @@ 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, + ACTIONS(2308), 1, + aux_sym_allocator_token1, + STATE(1797), 1, + sym_task_definition, + STATE(1876), 1, sym_overriding_indicator, - STATE(653), 8, + STATE(644), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44107,97 +43266,365 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [36400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(2339), 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, - [36425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(2341), 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, - [36450] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(2343), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [36475] = 6, + [33945] = 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(1903), 1, - sym_identifier, - STATE(1789), 1, - sym__defining_identifier_list, - ACTIONS(2345), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(664), 8, - sym__component_item, - sym_component_declaration, + ACTIONS(2310), 1, + aux_sym_allocator_token1, + STATE(1674), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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_component_list_repeat1, - [36502] = 5, + aux_sym_task_definition_repeat1, + [33980] = 9, 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2312), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2314), 1, + aux_sym_package_specification_token3, + STATE(1876), 1, + sym_overriding_indicator, + STATE(654), 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, + [34015] = 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(2316), 1, + aux_sym_allocator_token1, + STATE(1500), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34050] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1414), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34085] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1123), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34120] = 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(2318), 1, + aux_sym_allocator_token1, + STATE(1547), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34155] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1248), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 1, + sym_identifier, + ACTIONS(2326), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + aux_sym_package_specification_token3, + STATE(1899), 1, + sym_value_sequence, + STATE(650), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2323), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34223] = 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(2331), 1, + aux_sym_allocator_token1, + STATE(1873), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34258] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2222), 1, + sym_identifier, + ACTIONS(2333), 1, + aux_sym_package_specification_token3, + STATE(1899), 1, + sym_value_sequence, + STATE(650), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2224), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 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, + [34312] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2342), 1, + aux_sym_relation_membership_token1, + ACTIONS(2345), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2348), 1, + aux_sym_global_mode_token1, + STATE(1876), 1, + sym_overriding_indicator, + ACTIONS(2340), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(654), 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, + [34345] = 2, + 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, + [34366] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2060), 1, + sym_identifier, + STATE(778), 1, + sym_null_exclusion, + STATE(1440), 1, + sym__subtype_indication, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2062), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(568), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [34401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(215), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, sym_actual_parameter_part, - ACTIONS(2347), 10, + ACTIONS(2353), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -44208,124 +43635,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36527] = 8, + [34429] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2351), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2353), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2349), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(952), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36558] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1757), 1, aux_sym_relation_membership_token1, - STATE(762), 1, - sym_null_exclusion, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2200), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(824), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36589] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2260), 1, - aux_sym_positional_array_aggregate_token1, - STATE(1427), 1, - sym_exception_choice, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2258), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1005), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36620] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, ACTIONS(2355), 1, sym_identifier, - STATE(1897), 1, + STATE(780), 1, + sym_null_exclusion, + STATE(1899), 1, sym_value_sequence, - STATE(1866), 2, - sym_loop_parameter_specification, - sym_iterator_specification, ACTIONS(2357), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1051), 5, + STATE(815), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36649] = 4, + [34461] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - anon_sym_LPAREN, - ACTIONS(2127), 1, + ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1194), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [36672] = 5, + ACTIONS(2240), 1, + aux_sym_positional_array_aggregate_token1, + ACTIONS(2304), 1, + sym_identifier, + STATE(1430), 1, + sym_exception_choice, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2238), 3, + 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, + [34493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(215), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, sym_actual_parameter_part, ACTIONS(2359), 10, anon_sym_RPAREN, @@ -44338,1921 +43705,2896 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36697] = 7, + [34521] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(2361), 1, sym_identifier, - ACTIONS(2365), 1, - anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, + STATE(1870), 2, + sym_loop_parameter_specification, + sym_iterator_specification, ACTIONS(2363), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1108), 5, + STATE(957), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36725] = 7, + [34551] = 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(1671), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34583] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(1757), 1, + aux_sym_relation_membership_token1, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(2367), 1, - aux_sym_attribute_designator_token1, - STATE(1897), 1, + STATE(750), 1, + sym_null_exclusion, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2254), 3, + ACTIONS(2234), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(849), 5, + STATE(817), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36753] = 7, + [34615] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2365), 1, sym_identifier, - STATE(1501), 1, - sym__name_list, - STATE(1897), 1, + ACTIONS(2369), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2371), 1, + anon_sym_SEMI, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2309), 3, + ACTIONS(2367), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(925), 5, + STATE(929), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36781] = 7, + [34647] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 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, + [34675] = 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(1783), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34707] = 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(1847), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34739] = 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(2375), 1, + aux_sym_package_specification_token3, + STATE(1876), 1, + sym_overriding_indicator, + STATE(654), 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, + [34771] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 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, + [34799] = 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(1494), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 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, + [34859] = 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(1670), 1, + sym_task_definition, + STATE(1876), 1, + sym_overriding_indicator, + STATE(644), 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, + [34891] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - STATE(1925), 1, + STATE(1374), 1, sym__interface_list, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36809] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2373), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2371), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(844), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [36837] = 7, + [34918] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_attribute_designator_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2375), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36865] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1753), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36893] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1824), 1, - sym_reduction_specification, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2377), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1026), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36921] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1345), 1, - sym_index_subtype_definition, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2379), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1059), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36949] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1665), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [36977] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1432), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37005] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_attribute_designator_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2381), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1118), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37033] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1703), 1, - sym__name_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2309), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37061] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1688), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37089] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1709), 1, - sym__name_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2309), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37117] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1149), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37145] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1854), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37173] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, ACTIONS(2385), 1, anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2383), 3, + ACTIONS(2383), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1098), 5, + STATE(1042), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37201] = 7, + [34945] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1433), 1, + STATE(1476), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37229] = 7, + [34972] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + STATE(1480), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, sym_identifier, - ACTIONS(2367), 1, + 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, + [34999] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2387), 1, + sym_identifier, + ACTIONS(2391), 1, aux_sym_attribute_designator_token1, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2200), 3, + ACTIONS(2389), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(824), 5, + STATE(524), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37257] = 7, + [35028] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1856), 1, - sym__name_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2309), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37285] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2389), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2387), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1031), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37313] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, ACTIONS(2393), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2391), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1052), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, sym_identifier, ACTIONS(2397), 1, - anon_sym_SEMI, - STATE(1897), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2395), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1060), 5, + STATE(829), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37369] = 7, + [35057] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2401), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2399), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1004), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37397] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_attribute_designator_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2403), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(671), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37425] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1791), 1, + STATE(1497), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37453] = 7, + [35084] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + STATE(1757), 1, + sym_reduction_specification, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2399), 4, sym_identifier, - STATE(1327), 1, + 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, + [35111] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1831), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, + sym_identifier, + 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, + [35138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1496), 1, sym__name_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2405), 3, + ACTIONS(2296), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(914), 5, + STATE(909), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37481] = 7, + [35165] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1490), 1, + STATE(1899), 1, + sym_value_sequence, + STATE(1900), 1, sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37509] = 4, + [35192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(818), 1, - sym_formal_part, - ACTIONS(2409), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [37531] = 4, + ACTIONS(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(1876), 1, + sym_overriding_indicator, + STATE(668), 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, + [35221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(231), 1, anon_sym_LPAREN, - STATE(814), 1, - sym_formal_part, - ACTIONS(2411), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [37553] = 7, + ACTIONS(2165), 1, + anon_sym_LBRACK, + STATE(1186), 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, + [35244] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2403), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2401), 4, sym_identifier, - STATE(1477), 1, + 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, + [35271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + sym_identifier, + ACTIONS(2409), 1, + aux_sym_package_body_token1, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2407), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(881), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1641), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37581] = 7, + [35327] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + STATE(1412), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, sym_identifier, + 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, + [35354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1705), 1, + sym__name_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2296), 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, + [35381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, STATE(1859), 1, - sym__interface_list, - STATE(1897), 1, + sym__name_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2296), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(909), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37609] = 7, + [35408] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2391), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2411), 1, sym_identifier, - ACTIONS(2415), 1, - anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2413), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1023), 5, + STATE(826), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37637] = 7, + [35437] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2419), 1, + ACTIONS(2417), 1, anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2417), 3, + ACTIONS(2415), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1018), 5, + STATE(944), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37665] = 7, + [35464] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2423), 1, - anon_sym_SEMI, - STATE(1897), 1, + STATE(1713), 1, + sym__name_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2421), 3, + ACTIONS(2296), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1014), 5, + STATE(909), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(819), 1, - sym_formal_part, - ACTIONS(2425), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [37715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 12, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - [37733] = 7, + [35491] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1357), 1, + STATE(1627), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37761] = 7, + [35518] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + STATE(1733), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, sym_identifier, - ACTIONS(2431), 1, + 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, + [35545] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1432), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, + sym_identifier, + 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, + [35572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2419), 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, + [35599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2425), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2423), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(986), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35626] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1485), 1, + sym__name_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2296), 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, + [35653] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1673), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, + sym_identifier, + 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, + [35680] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2427), 1, + sym_identifier, + STATE(1899), 1, sym_value_sequence, ACTIONS(2429), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1065), 5, + STATE(671), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37789] = 7, + [35709] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1674), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1628), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37845] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2435), 1, + ACTIONS(2433), 1, anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2433), 3, + ACTIONS(2431), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1039), 5, + STATE(984), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37873] = 7, + [35736] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2437), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2435), 4, sym_identifier, + 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, + [35763] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + aux_sym_attribute_designator_token1, ACTIONS(2439), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2437), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1073), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37901] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, sym_identifier, - ACTIONS(2443), 1, - anon_sym_SEMI, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2441), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1076), 5, + STATE(955), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [37929] = 7, + [35792] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1727), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37957] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1669), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [37985] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1363), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2327), 11, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_relation_membership_token1, - [38033] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1371), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38061] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2447), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2445), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1116), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38089] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1696), 1, + STATE(1443), 1, sym__name_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2309), 3, + ACTIONS(2443), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(925), 5, + STATE(902), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38117] = 7, + [35819] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2451), 1, - aux_sym_package_body_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2449), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(881), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38145] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2455), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2453), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1126), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38173] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1726), 1, - sym__interface_list, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2369), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38201] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2459), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2457), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38229] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2463), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2461), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(855), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38257] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1480), 1, + STATE(1716), 1, sym__name_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2309), 3, + ACTIONS(2296), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(925), 5, + STATE(909), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38285] = 7, + [35846] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_attribute_designator_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2465), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(885), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38313] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_attribute_designator_token1, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2467), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(859), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1832), 1, + STATE(1562), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38369] = 3, + [35873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1575), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, sym_identifier, - ACTIONS(2471), 11, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(835), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [35900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1853), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, + sym_identifier, + 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, + [35927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2447), 11, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, + sym_target_name, + anon_sym_LPAREN, anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38389] = 7, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [35948] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1404), 1, + STATE(1373), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38417] = 7, + [35975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2449), 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, + [35998] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2453), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2451), 4, sym_identifier, - STATE(1642), 1, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(962), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2455), 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, + [36052] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(2391), 1, + aux_sym_attribute_designator_token1, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2234), 3, + 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, + [36081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1687), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38445] = 7, + [36108] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2475), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2473), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1097), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38473] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2479), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2477), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1122), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38501] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2483), 1, - anon_sym_SEMI, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2481), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1092), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38529] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1222), 1, + STATE(1752), 1, sym__interface_list, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2369), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38557] = 6, + [36135] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1150), 1, + sym__interface_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2485), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38582] = 3, + [36162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1353), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, sym_identifier, - ACTIONS(2489), 10, + 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, + [36189] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2459), 4, + sym_identifier, + 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, + [36216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, aux_sym_iterated_element_association_token1, + ACTIONS(1920), 1, + sym_identifier, + STATE(1654), 1, + sym__defining_identifier_list, + ACTIONS(2463), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [38601] = 6, + STATE(730), 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, + [36243] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + ACTIONS(2467), 1, + anon_sym_SEMI, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2491), 3, + ACTIONS(2465), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(944), 5, + STATE(1036), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38626] = 6, + [36270] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + ACTIONS(2471), 1, + anon_sym_SEMI, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2449), 3, + ACTIONS(2469), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(881), 5, + STATE(1010), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38651] = 6, + [36297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(2165), 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, + [36320] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + ACTIONS(2475), 1, + anon_sym_SEMI, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2493), 3, + ACTIONS(2473), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(886), 5, + STATE(994), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38676] = 6, + [36347] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + ACTIONS(2479), 1, + anon_sym_SEMI, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2495), 3, + ACTIONS(2477), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(945), 5, + STATE(1038), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38701] = 6, + [36374] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2270), 1, sym_identifier, - STATE(1897), 1, + ACTIONS(2391), 1, + aux_sym_attribute_designator_token1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2497), 3, + ACTIONS(2272), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(902), 5, + STATE(830), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38726] = 3, + [36403] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2483), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2481), 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, + [36430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + sym_identifier, + ACTIONS(2488), 1, + aux_sym_iterated_element_association_token1, + STATE(1654), 1, + sym__defining_identifier_list, + ACTIONS(2491), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(730), 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, + [36457] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2493), 4, + sym_identifier, + 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, + [36484] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1403), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, + sym_identifier, + 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, + [36511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, ACTIONS(2499), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2497), 4, sym_identifier, - ACTIONS(2501), 10, sym_string_literal, sym_character_literal, - sym_numeric_literal, sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [38745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2503), 1, - sym_identifier, - ACTIONS(2505), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [38764] = 6, + STATE(1007), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36538] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2503), 1, + anon_sym_SEMI, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2501), 4, sym_identifier, - STATE(1897), 1, + 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, + [36565] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1279), 1, + sym__interface_list, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2381), 4, + sym_identifier, + 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, + [36592] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2505), 1, + sym_identifier, + ACTIONS(2509), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2507), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(183), 5, + STATE(822), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38789] = 6, + [36621] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2511), 1, sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2509), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1072), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38814] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2511), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(848), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38839] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2335), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(821), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [38864] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + ACTIONS(2515), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2513), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(946), 5, + STATE(833), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38889] = 6, + [36650] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1450), 1, + sym_index_subtype_definition, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2515), 3, + ACTIONS(2517), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(866), 5, + STATE(973), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38914] = 6, + [36677] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1790), 1, + sym__interface_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2517), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(869), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38939] = 3, + [36704] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2519), 1, sym_identifier, - ACTIONS(2521), 10, - aux_sym_iterated_element_association_token1, + ACTIONS(2523), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2521), 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_package_specification_token3, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [38958] = 6, + [36727] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1600), 1, + sym__interface_list, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2523), 3, + ACTIONS(2381), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(931), 5, + STATE(835), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [38983] = 6, + [36754] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2391), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2525), 1, sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2525), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(854), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, ACTIONS(2527), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(949), 5, + STATE(873), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39033] = 6, + [36783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 12, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + [36801] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2529), 3, + ACTIONS(2531), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(905), 5, + STATE(913), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39058] = 6, + [36825] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2531), 3, + ACTIONS(2533), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(903), 5, + STATE(895), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39083] = 6, + [36849] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2533), 3, + ACTIONS(2535), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(951), 5, + STATE(828), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39108] = 6, + [36873] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2535), 3, + ACTIONS(2537), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(672), 5, + STATE(896), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39133] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - sym_identifier, - ACTIONS(2539), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2541), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2543), 1, - aux_sym_interface_type_definition_token1, - STATE(1563), 1, - sym__defining_identifier_list, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(796), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [39162] = 6, + [36897] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2545), 3, + ACTIONS(2539), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(261), 5, + STATE(910), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39187] = 6, + [36921] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, + STATE(1899), 1, sym_value_sequence, - ACTIONS(2547), 3, + ACTIONS(2541), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(917), 5, + STATE(897), 6, sym__name, + sym_selected_component, sym__attribute_reference, sym__reduction_attribute_reference, sym_function_call, sym_qualified_expression, - [39212] = 3, + [36945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2357), 4, sym_identifier, - ACTIONS(2551), 10, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(815), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2543), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(852), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [36993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2545), 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, + [37017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2547), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(998), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2549), 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, + [37065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2407), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(881), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37089] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2551), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1024), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2553), 4, + sym_identifier, + 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, + [37137] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2555), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1000), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2557), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(892), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 1, + sym_identifier, + ACTIONS(2561), 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, + [37205] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2563), 1, + sym_identifier, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2565), 3, + 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, + [37231] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2567), 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, + [37255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2569), 1, + sym_identifier, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2363), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(957), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2571), 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, + [37305] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2573), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(870), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2575), 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, + [37353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2577), 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, + [37377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 1, + sym_identifier, + ACTIONS(2521), 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, + [37397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2579), 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, + [37421] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2581), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(545), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2583), 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, + [37469] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2585), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(890), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2587), 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, + [37517] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2589), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1039), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37541] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2591), 4, + sym_identifier, + 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, + [37565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2593), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(259), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2565), 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, + [37613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2389), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37637] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2595), 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, + [37661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2597), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(812), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37685] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2599), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(908), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2601), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(660), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2603), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(936), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37757] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_formal_part, + ACTIONS(2607), 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, + [37779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2609), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(958), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37803] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2611), 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, + [37827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2613), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(999), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37851] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2615), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2617), 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, + [37899] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(813), 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, + [37921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2621), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2623), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(993), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [37969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(816), 1, + sym_formal_part, + ACTIONS(2625), 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, + [37991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2627), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(886), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38015] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2629), 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, + [38039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2631), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(988), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38063] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2633), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(869), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2635), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(891), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2637), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1005), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38135] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2639), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(825), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2641), 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, + [38183] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1899), 1, + sym_value_sequence, + ACTIONS(2260), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(665), 6, + sym__name, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_function_call, + sym_qualified_expression, + [38207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + sym_identifier, + ACTIONS(2645), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -46263,316 +46605,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [39231] = 6, + [38226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, + ACTIONS(2647), 1, sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2553), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(887), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39256] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2555), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(932), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2557), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1033), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39306] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2559), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(896), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39331] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2561), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(947), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2563), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(826), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2565), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(553), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2567), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(863), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2569), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1071), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2571), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1075), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2573), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1021), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39506] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2575), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(921), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39531] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2577), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1046), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2244), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(675), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39581] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2579), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(895), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39606] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2581), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1048), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - sym_identifier, - ACTIONS(2585), 10, + ACTIONS(2649), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -46583,701 +46621,684 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [39650] = 8, + [38245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2587), 1, + ACTIONS(2651), 1, sym_identifier, - ACTIONS(2590), 1, + ACTIONS(2653), 1, aux_sym_subprogram_body_token1, - ACTIONS(2592), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2595), 1, - aux_sym_interface_type_definition_token1, - STATE(1563), 1, - sym__defining_identifier_list, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(795), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [39679] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - sym_identifier, - ACTIONS(2541), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2543), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2598), 1, - aux_sym_subprogram_body_token1, - STATE(1563), 1, - sym__defining_identifier_list, - STATE(453), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(795), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [39708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2600), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(823), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2602), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(961), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2604), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2357), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1051), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39783] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2375), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39808] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2606), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(883), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2608), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1074), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2610), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(924), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39883] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2612), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(884), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2614), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(930), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39933] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2616), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(939), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2618), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1037), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [39983] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2620), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(937), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2622), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(898), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40033] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2624), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1019), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2626), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2513), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(946), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40083] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2628), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(913), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2361), 1, - sym_identifier, - STATE(1897), 1, - sym_value_sequence, - ACTIONS(2630), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(847), 5, - sym__name, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_function_call, - sym_qualified_expression, - [40133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2632), 10, - 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, - [40149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 1, - sym_identifier, - ACTIONS(2636), 9, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [40167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - 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, - [40183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2640), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [40199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2425), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [40215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2411), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [40231] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 1, - anon_sym_COMMA, - ACTIONS(1890), 1, - anon_sym_DOT, - ACTIONS(2642), 1, - anon_sym_COLON, - ACTIONS(2645), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1255), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(781), 4, - sym_tick, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON_EQ, - [40256] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1080), 1, - sym__assign_value, - STATE(1413), 1, - sym_aspect_specification, - ACTIONS(2647), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40285] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1113), 1, - sym__assign_value, - STATE(1442), 1, - sym_aspect_specification, - ACTIONS(2649), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40314] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1035), 1, - sym__assign_value, - STATE(1333), 1, - sym_aspect_specification, - ACTIONS(2651), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40343] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1038), 1, - sym__assign_value, - STATE(1375), 1, - sym_aspect_specification, - ACTIONS(2653), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40372] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(2655), 1, - sym_identifier, - ACTIONS(2657), 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, - [40388] = 7, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2657), 1, + aux_sym_interface_type_definition_token1, + STATE(1815), 1, + sym__defining_identifier_list, + STATE(329), 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, + [38274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, + ACTIONS(2659), 1, + sym_identifier, + ACTIONS(2661), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, anon_sym_LPAREN, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1309), 1, - sym_iterator_filter, - ACTIONS(2659), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40412] = 3, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38293] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2663), 1, sym_identifier, - ACTIONS(2665), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2667), 1, - sym_identifier, - ACTIONS(2669), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40444] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2666), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2668), 1, + aux_sym_access_to_subprogram_definition_token1, ACTIONS(2671), 1, - sym_identifier, - ACTIONS(2673), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40460] = 3, + aux_sym_interface_type_definition_token1, + STATE(1815), 1, + sym__defining_identifier_list, + STATE(329), 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, + [38322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2674), 1, sym_identifier, - ACTIONS(2677), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2679), 1, - sym_identifier, - ACTIONS(2681), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 1, - sym_identifier, - ACTIONS(2685), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40508] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, + ACTIONS(2676), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, anon_sym_LPAREN, - ACTIONS(2661), 1, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [38341] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 1, + sym_identifier, + ACTIONS(2655), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2657), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2678), 1, + aux_sym_subprogram_body_token1, + STATE(1815), 1, + sym__defining_identifier_list, + STATE(329), 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, + [38370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2680), 1, + sym_identifier, + ACTIONS(2682), 10, + aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, - STATE(215), 1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [38389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym_identifier, + ACTIONS(2686), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [38408] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(211), 1, sym_actual_parameter_part, - STATE(1266), 1, + STATE(1113), 1, + sym__assign_value, + STATE(1349), 1, + sym_aspect_specification, + ACTIONS(2688), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [38440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2607), 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, + [38456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 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, + [38472] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1086), 1, + sym__assign_value, + STATE(1366), 1, + sym_aspect_specification, + ACTIONS(2690), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [38504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2692), 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, + [38520] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1093), 1, + sym__assign_value, + STATE(1408), 1, + sym_aspect_specification, + ACTIONS(2694), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [38552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 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, + [38568] = 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, + [38584] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1089), 1, + sym__assign_value, + STATE(1457), 1, + sym_aspect_specification, + ACTIONS(2700), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [38616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2702), 1, + sym_identifier, + ACTIONS(2704), 9, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [38634] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1301), 1, sym_iterator_filter, - ACTIONS(2687), 3, + ACTIONS(2706), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [40532] = 6, + [38661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1271), 1, + sym_iterator_filter, + ACTIONS(2710), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38688] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2712), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1200), 1, + sym__assign_value, + STATE(1864), 1, + sym_aspect_specification, + [38719] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1157), 1, + sym_iterator_filter, + ACTIONS(2714), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38746] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2716), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1191), 1, + sym__assign_value, + STATE(1533), 1, + sym_aspect_specification, + [38777] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2718), 1, + anon_sym_LPAREN, + ACTIONS(2722), 1, + aux_sym_package_specification_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1080), 1, + sym_formal_part, + ACTIONS(2720), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [38804] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2718), 1, + anon_sym_LPAREN, + ACTIONS(2725), 1, + aux_sym_package_specification_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1080), 1, + sym_formal_part, + ACTIONS(2720), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [38831] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1182), 1, + sym_iterator_filter, + ACTIONS(2728), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38858] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2730), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1283), 1, + sym__assign_value, + STATE(1695), 1, + sym_aspect_specification, + [38889] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1155), 1, + sym_iterator_filter, + ACTIONS(2714), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38916] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2718), 1, + anon_sym_LPAREN, + ACTIONS(2732), 1, + aux_sym_package_specification_token2, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1397), 1, + sym_formal_part, + STATE(1085), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [38945] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1299), 1, + sym_iterator_filter, + ACTIONS(2706), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [38972] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2718), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + ACTIONS(2736), 1, + aux_sym_package_specification_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1397), 1, + sym_formal_part, + STATE(1085), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39001] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2740), 1, + aux_sym_expression_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(975), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2738), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [39028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 1, + anon_sym_COMMA, + ACTIONS(2742), 1, + anon_sym_COLON, + ACTIONS(2745), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1261), 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, + [39051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + sym_identifier, + ACTIONS(2749), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2751), 1, + sym_identifier, + ACTIONS(2753), 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, + [39083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + sym_identifier, + ACTIONS(2757), 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, + [39099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 1, + sym_identifier, + ACTIONS(2761), 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, + [39115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 1, + sym_identifier, + ACTIONS(2765), 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, + [39131] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 1, + anon_sym_LPAREN, + ACTIONS(2769), 1, anon_sym_LBRACK, - ACTIONS(2693), 1, + ACTIONS(2771), 1, aux_sym_record_component_association_list_token1, - STATE(1502), 1, + STATE(1498), 1, sym_enumeration_aggregate, - STATE(1508), 4, + STATE(1499), 4, sym__array_aggregate, sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [40554] = 3, + [39153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(2773), 1, sym_identifier, - ACTIONS(2697), 7, + ACTIONS(2775), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47285,12 +47306,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, - [40570] = 3, + [39169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2777), 1, sym_identifier, - ACTIONS(2701), 7, + ACTIONS(2779), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47298,210 +47319,121 @@ 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, - [40586] = 7, + [39185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2783), 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, + [39201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 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, + [39217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2789), 1, + sym_identifier, + ACTIONS(2791), 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, + [39233] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + [39249] = 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, + [39265] = 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, + [39281] = 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, + [39297] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2718), 1, anon_sym_LPAREN, - ACTIONS(2705), 1, - aux_sym_expression_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(990), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2703), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [40610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2709), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - sym_identifier, - ACTIONS(2713), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - sym_identifier, - ACTIONS(2717), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - sym_identifier, - ACTIONS(2721), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - sym_identifier, - ACTIONS(2725), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 1, - sym_identifier, - ACTIONS(2729), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40706] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1153), 1, - sym_iterator_filter, - ACTIONS(2731), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40730] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2733), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1246), 1, - sym__assign_value, - STATE(1886), 1, - sym_aspect_specification, - [40758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 1, - sym_identifier, - ACTIONS(2737), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40774] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(2739), 1, - anon_sym_LPAREN, - ACTIONS(2741), 1, - aux_sym_package_specification_token2, - ACTIONS(2743), 1, + ACTIONS(2734), 1, aux_sym_result_profile_token1, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - STATE(1392), 1, + STATE(1397), 1, sym_formal_part, - STATE(1044), 2, + STATE(1085), 2, sym__parameter_and_result_profile, sym_result_profile, - [40800] = 7, + [39323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(2739), 1, - anon_sym_LPAREN, - ACTIONS(2747), 1, - aux_sym_package_specification_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1045), 1, - sym_formal_part, - ACTIONS(2745), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [40824] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2750), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1284), 1, - sym__assign_value, - STATE(1611), 1, - sym_aspect_specification, - [40852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, + ACTIONS(2809), 1, sym_identifier, - ACTIONS(2754), 7, + ACTIONS(2811), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47509,12 +47441,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, - [40868] = 3, + [39339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(2813), 1, sym_identifier, - ACTIONS(2758), 7, + ACTIONS(2815), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -47522,268 +47454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 1, - sym_identifier, - ACTIONS(2762), 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, - [40900] = 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, - [40916] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1215), 1, - sym_iterator_filter, - ACTIONS(2768), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40940] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1263), 1, - sym_iterator_filter, - ACTIONS(2687), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [40964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - sym_identifier, - ACTIONS(2772), 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, - [40980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - sym_identifier, - ACTIONS(2776), 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, - [40996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2780), 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, - [41012] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2782), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1243), 1, - sym__assign_value, - STATE(1531), 1, - sym_aspect_specification, - [41040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 1, - sym_identifier, - ACTIONS(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, - [41056] = 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, - [41072] = 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, - [41088] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1311), 1, - sym_iterator_filter, - ACTIONS(2659), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [41112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 1, - sym_identifier, - ACTIONS(2798), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 1, - sym_identifier, - ACTIONS(2802), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41144] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(2739), 1, - anon_sym_LPAREN, - ACTIONS(2804), 1, - aux_sym_package_specification_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1045), 1, - sym_formal_part, - ACTIONS(2745), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [41168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, - sym_identifier, - ACTIONS(2809), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2811), 1, - sym_identifier, - ACTIONS(2813), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41200] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(2739), 1, - anon_sym_LPAREN, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - ACTIONS(2815), 1, - aux_sym_package_specification_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1392), 1, - sym_formal_part, - STATE(1044), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [41226] = 3, + [39355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2817), 1, @@ -47796,7 +47467,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [41242] = 3, + [39371] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2821), 1, @@ -47809,7 +47480,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [41258] = 3, + [39387] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2825), 1, @@ -47822,7 +47493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [41274] = 3, + [39403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2829), 1, @@ -47835,9782 +47506,10077 @@ 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, - [41290] = 3, + [39419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, - sym_identifier, - ACTIONS(2835), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2837), 1, - sym_identifier, - ACTIONS(2839), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2843), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(2847), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [41354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2849), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2851), 1, - anon_sym_SEMI, - ACTIONS(2853), 1, - aux_sym_package_specification_token2, - ACTIONS(2855), 1, - aux_sym_expression_token3, - STATE(1282), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [41375] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2857), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2859), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2862), 1, - anon_sym_COLON, - ACTIONS(2864), 1, - aux_sym_iterator_specification_token1, - ACTIONS(781), 2, - sym_tick, - anon_sym_LPAREN, - [41398] = 2, + ACTIONS(2835), 1, + aux_sym_with_clause_token2, + ACTIONS(2838), 1, + aux_sym_expression_token1, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(2833), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [39445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, + ACTIONS(2840), 1, + sym_identifier, + ACTIONS(2842), 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_entry_declaration_token1, - aux_sym_global_mode_token1, - [41411] = 8, + aux_sym_pragma_g_token1, + [39461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(2844), 1, + sym_identifier, + ACTIONS(2846), 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, + [39477] = 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, + [39493] = 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, + [39509] = 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, + [39525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2860), 1, + sym_identifier, + ACTIONS(2862), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2864), 1, + sym_identifier, + ACTIONS(2866), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39557] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(2868), 1, - aux_sym_package_specification_token2, - ACTIONS(2870), 1, - aux_sym_object_renaming_declaration_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1697), 1, - sym_aspect_specification, - [41436] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + sym_identifier, + ACTIONS(2870), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2872), 1, - anon_sym_LPAREN, - ACTIONS(2874), 1, - aux_sym_iterator_filter_token1, - STATE(1105), 1, - sym_non_empty_entry_body_formal_part, - STATE(1436), 1, - sym_aspect_specification, - STATE(1437), 1, - sym_formal_part, - STATE(1503), 1, - sym_entry_barrier, - [41461] = 7, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2874), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39589] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, ACTIONS(2878), 1, aux_sym_with_clause_token2, ACTIONS(2881), 1, aux_sym_expression_token1, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, ACTIONS(2876), 2, anon_sym_SEMI, aux_sym_expression_token3, - [41484] = 7, + [39615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2885), 1, - aux_sym_with_clause_token2, - ACTIONS(2888), 1, - aux_sym_expression_token1, - STATE(215), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, sym_actual_parameter_part, - ACTIONS(2883), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [41507] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1347), 1, - sym__assign_value, - ACTIONS(2890), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41530] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(2739), 1, - anon_sym_LPAREN, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1392), 1, - sym_formal_part, - STATE(1044), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [41553] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(2892), 4, + ACTIONS(2883), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token1, aux_sym_expression_token3, - [41572] = 6, + [39637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2894), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2887), 1, + aux_sym_with_clause_token2, + ACTIONS(2890), 1, + aux_sym_expression_token1, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(2885), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [39663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 1, + sym_identifier, + ACTIONS(2894), 7, + aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, - STATE(1761), 1, - sym_package_specification, - STATE(1169), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [41593] = 7, + 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, + [39679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2147), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, anon_sym_COLON_EQ, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - STATE(1388), 1, + STATE(1435), 1, sym__assign_value, ACTIONS(2896), 2, anon_sym_RPAREN, anon_sym_SEMI, - [41616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2898), 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, - [41629] = 2, + [39705] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2898), 1, + sym_identifier, ACTIONS(2900), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, + 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_entry_declaration_token1, - aux_sym_global_mode_token1, - [41642] = 3, + aux_sym_pragma_g_token1, + [39721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2902), 1, - sym_tick, - ACTIONS(1961), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41657] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(2904), 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, - [41670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2906), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [41683] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - aux_sym_with_clause_token2, - ACTIONS(2913), 1, - aux_sym_expression_token1, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(2908), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [41706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(2739), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1045), 1, - sym_formal_part, - ACTIONS(2745), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - [41727] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(2915), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2917), 1, - aux_sym_allocator_token1, - ACTIONS(2919), 1, - aux_sym_interface_type_definition_token2, - STATE(1410), 1, - sym_record_definition, - [41749] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2921), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1858), 1, - sym_aspect_specification, - [41771] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(928), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(2925), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_DOT, - ACTIONS(2927), 1, - anon_sym_COLON, - ACTIONS(781), 4, - sym_tick, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 1, - anon_sym_EQ_GT, - ACTIONS(2929), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41817] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2933), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1763), 1, - sym_aspect_specification, - [41839] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2935), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1682), 1, - sym_aspect_specification, - [41861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, - sym_identifier, - ACTIONS(2939), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41875] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2941), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1725), 1, - sym_aspect_specification, - [41897] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2943), 1, - anon_sym_LPAREN, - ACTIONS(2945), 1, - anon_sym_SEMI, - ACTIONS(2947), 1, - aux_sym_package_specification_token2, - STATE(1036), 1, - sym_known_discriminant_part, - STATE(1331), 1, - sym_aspect_specification, - [41919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1876), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_attribute_designator_token1, - [41933] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_COMMA, - ACTIONS(2951), 1, - anon_sym_RBRACK, - ACTIONS(2955), 1, - aux_sym_with_clause_token2, - STATE(1321), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2957), 1, - sym_identifier, - ACTIONS(2959), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2961), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2964), 1, - aux_sym_package_specification_token3, - ACTIONS(2966), 1, - aux_sym_pragma_g_token1, - STATE(910), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [41985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 6, - anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_loop_statement_token1, - [41997] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_COMMA, - ACTIONS(2973), 1, - anon_sym_RPAREN, - ACTIONS(2975), 1, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - STATE(1335), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [42017] = 5, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(2906), 1, + sym_identifier, + ACTIONS(2908), 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, + [39753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2910), 1, + sym_identifier, + ACTIONS(2912), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39769] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(215), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(211), 1, sym_actual_parameter_part, - ACTIONS(2977), 3, - anon_sym_COMMA, + STATE(1387), 1, + sym__assign_value, + ACTIONS(2914), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42035] = 6, + [39795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1143), 1, - aux_sym__name_list_repeat1, - ACTIONS(2979), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2981), 1, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 7, + aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, - STATE(1024), 3, + 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, + [39811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + sym_identifier, + ACTIONS(2922), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39827] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2924), 1, + aux_sym_package_specification_token2, + ACTIONS(2926), 1, + aux_sym_object_renaming_declaration_token1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1708), 1, + sym_aspect_specification, + [39855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 1, + sym_identifier, + ACTIONS(2930), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39871] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2718), 1, + anon_sym_LPAREN, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1080), 1, + sym_formal_part, + ACTIONS(2720), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [39895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2932), 1, + sym_identifier, + ACTIONS(2934), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [39911] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2936), 1, + aux_sym_package_specification_token1, + STATE(1768), 1, + sym_package_specification, + STATE(1267), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [42073] = 5, + [39932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - sym_identifier, - STATE(1293), 1, - sym_quantifier, - ACTIONS(2985), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - STATE(1424), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [42091] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2987), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1785), 1, - sym_aspect_specification, - [42113] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2989), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1788), 1, - sym_aspect_specification, - [42135] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(781), 4, - sym_tick, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON_EQ, - [42151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(2993), 1, - aux_sym_iterated_element_association_token1, - STATE(1283), 1, - sym_parameter_specification, - STATE(1549), 1, - sym__defining_identifier_list, - STATE(1554), 1, - sym__parameter_specification_list, - STATE(1645), 1, - sym_entry_index_specification, - [42173] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(2995), 1, + ACTIONS(2938), 1, anon_sym_SEMI, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - STATE(1790), 1, + STATE(1709), 1, sym_aspect_specification, - [42195] = 7, + [39957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, - aux_sym_chunk_specification_token1, - ACTIONS(311), 1, + ACTIONS(2940), 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, - ACTIONS(313), 1, - aux_sym_non_empty_mode_token1, - STATE(709), 1, - sym_global_mode, - STATE(815), 1, - sym_non_empty_mode, - STATE(1429), 1, - sym_global_aspect_element, - [42217] = 6, + [39970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, + 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, + [39983] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2997), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2944), 1, anon_sym_SEMI, - ACTIONS(2999), 1, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1658), 1, + sym_aspect_specification, + [40008] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2946), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1655), 1, + sym_aspect_specification, + [40033] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(2948), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [40054] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2950), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1530), 1, + sym_aspect_specification, + [40079] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2952), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1721), 1, + sym_aspect_specification, + [40104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(2956), 1, + anon_sym_SEMI, + ACTIONS(2958), 1, aux_sym_package_specification_token2, - STATE(1406), 1, - sym_known_discriminant_part, - STATE(1408), 2, + ACTIONS(2960), 1, + aux_sym_expression_token3, + STATE(1310), 3, sym__discriminant_part, sym_unknown_discriminant_part, - [42237] = 7, + sym_known_discriminant_part, + [40125] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3001), 1, + ACTIONS(2962), 1, anon_sym_SEMI, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - STATE(1758), 1, + STATE(1672), 1, sym_aspect_specification, - [42259] = 7, + [40150] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2979), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2964), 1, anon_sym_SEMI, - ACTIONS(3003), 1, - anon_sym_COMMA, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - STATE(1187), 1, - aux_sym__name_list_repeat1, - [42281] = 2, + STATE(1857), 1, + sym_aspect_specification, + [40175] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 6, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 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(211), 1, + sym_actual_parameter_part, + STATE(1636), 1, + sym_aspect_specification, + [40200] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 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(211), 1, + sym_actual_parameter_part, + STATE(1599), 1, + sym_aspect_specification, + [40225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + sym_tick, + ACTIONS(1969), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [42293] = 4, + [40240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_COMMA, - STATE(927), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3010), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42309] = 4, + ACTIONS(2972), 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, + [40253] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(927), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3012), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42325] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_COMMA, - ACTIONS(2975), 1, - aux_sym_with_clause_token2, - ACTIONS(3014), 1, - anon_sym_RPAREN, - STATE(1335), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [42345] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3016), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1573), 1, - sym_aspect_specification, - [42367] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3018), 1, - anon_sym_SEMI, - STATE(215), 1, + ACTIONS(2974), 1, + aux_sym_package_specification_token2, + STATE(211), 1, sym_actual_parameter_part, STATE(1492), 1, sym_aspect_specification, - [42389] = 7, + [40278] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3020), 1, - anon_sym_SEMI, - STATE(215), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, sym_actual_parameter_part, - STATE(1649), 1, - sym_aspect_specification, - [42411] = 3, + STATE(1318), 1, + aux_sym__name_list_repeat1, + ACTIONS(2976), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2978), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1514), 1, + sym_aspect_specification, + [40326] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2980), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1696), 1, + sym_aspect_specification, + [40351] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2984), 1, + aux_sym_iterator_filter_token1, + STATE(1081), 1, + sym_non_empty_entry_body_formal_part, + STATE(1447), 1, + sym_aspect_specification, + STATE(1449), 1, + sym_formal_part, + STATE(1571), 1, + sym_entry_barrier, + [40376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2986), 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, + [40389] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2988), 1, + anon_sym_SEMI, + STATE(1013), 1, + sym_actual_parameter_part, + STATE(1772), 1, + sym__assign_value, + [40414] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2990), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1572), 1, + sym_aspect_specification, + [40439] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2976), 1, + anon_sym_SEMI, + ACTIONS(2992), 1, + anon_sym_COMMA, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1321), 1, + aux_sym__name_list_repeat1, + [40464] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2994), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1681), 1, + sym_aspect_specification, + [40489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 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, + [40502] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2998), 1, + aux_sym_package_specification_token2, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1708), 1, + sym_aspect_specification, + [40527] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_COMMA, + ACTIONS(3000), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1166), 1, + aux_sym__name_list_repeat1, + [40552] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3002), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1796), 1, + sym_aspect_specification, + [40577] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3004), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + STATE(1701), 1, + sym_aspect_specification, + [40602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3008), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(3011), 1, + anon_sym_COLON, + ACTIONS(3013), 1, + aux_sym_iterator_specification_token1, + ACTIONS(1860), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [40623] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 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(211), 1, + sym_actual_parameter_part, + STATE(1582), 1, + sym_aspect_specification, + [40648] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, sym_identifier, - ACTIONS(3024), 5, + ACTIONS(3017), 1, + aux_sym_iterated_element_association_token1, + STATE(1293), 1, + sym_parameter_specification, + STATE(1644), 1, + sym_entry_index_specification, + STATE(1725), 1, + sym__defining_identifier_list, + STATE(1741), 1, + sym__parameter_specification_list, + [40670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3019), 1, + sym_identifier, + STATE(1300), 1, + sym_quantifier, + ACTIONS(3021), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1383), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [40688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [40700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3025), 1, + anon_sym_COMMA, + STATE(921), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3028), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [40716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(3030), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [40736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COLON, + ACTIONS(1860), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [40750] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3037), 1, + aux_sym_package_specification_token3, + ACTIONS(3039), 1, + aux_sym_pragma_g_token1, + STATE(924), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [40768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3042), 1, + anon_sym_COMMA, + ACTIONS(3044), 1, + anon_sym_RPAREN, + ACTIONS(3048), 1, + aux_sym_with_clause_token2, + STATE(1352), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3046), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [40788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2288), 1, + aux_sym_case_expression_token1, + ACTIONS(3050), 1, + sym_identifier, + STATE(1431), 1, + sym_variant_part, + ACTIONS(3052), 3, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [40806] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, + anon_sym_RBRACK, + ACTIONS(3058), 1, + aux_sym_with_clause_token2, + STATE(1319), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3046), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [40826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3060), 1, + aux_sym_entry_declaration_token1, + STATE(1052), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [40844] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3062), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3064), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [40866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3068), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [42425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2228), 1, - aux_sym_case_expression_token1, - ACTIONS(3026), 1, - sym_identifier, - STATE(1465), 1, - sym_variant_part, - ACTIONS(3028), 3, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [42443] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(3030), 1, - anon_sym_SEMI, - STATE(1093), 1, - sym_actual_parameter_part, - STATE(1764), 1, - sym__assign_value, - [42465] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3032), 1, - aux_sym_entry_declaration_token1, - STATE(1054), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [42483] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1302), 1, - aux_sym__name_list_repeat1, - [42505] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(2915), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3036), 1, - anon_sym_SEMI, - ACTIONS(3038), 1, - aux_sym_with_clause_token1, - STATE(1410), 1, - sym_record_definition, - [42527] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3040), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1800), 1, - sym_aspect_specification, - [42549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 1, - sym_identifier, - ACTIONS(3044), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [42563] = 7, + [40880] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, aux_sym_iteration_scheme_token1, - ACTIONS(321), 1, + ACTIONS(269), 1, aux_sym_subprogram_body_token1, - ACTIONS(399), 1, + ACTIONS(331), 1, aux_sym_iterated_element_association_token1, - ACTIONS(3046), 1, + ACTIONS(3070), 1, aux_sym_declare_expression_token1, - ACTIONS(3048), 1, + ACTIONS(3072), 1, aux_sym_loop_statement_token1, - STATE(1754), 1, + STATE(1763), 1, sym_iteration_scheme, - [42585] = 7, + [40902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, - aux_sym_entry_declaration_token1, - ACTIONS(3050), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3052), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1007), 1, - sym__subprogram_specification, - STATE(1111), 1, - sym_procedure_specification, - STATE(1123), 1, - sym_function_specification, - [42607] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(1114), 1, - sym__assign_value, - STATE(1444), 1, - sym_aspect_specification, - ACTIONS(3054), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [42627] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3056), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1615), 1, - sym_aspect_specification, - [42649] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3058), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1619), 1, - sym_aspect_specification, - [42671] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, ACTIONS(3060), 1, - aux_sym_package_specification_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1478), 1, - sym_aspect_specification, - [42693] = 7, + aux_sym_entry_declaration_token1, + ACTIONS(3074), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3076), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1026), 1, + sym__subprogram_specification, + STATE(1048), 1, + sym_procedure_specification, + STATE(1064), 1, + sym_function_specification, + [40924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(3078), 1, + sym_identifier, + ACTIONS(3080), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [40938] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3062), 1, + ACTIONS(3082), 1, + anon_sym_LPAREN, + ACTIONS(3084), 1, + anon_sym_SEMI, + ACTIONS(3086), 1, aux_sym_package_specification_token2, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1697), 1, + STATE(1050), 1, + sym_known_discriminant_part, + STATE(1335), 1, sym_aspect_specification, - [42715] = 5, + [40960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(211), 1, + sym_actual_parameter_part, + ACTIONS(3088), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [40980] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3090), 1, + anon_sym_SEMI, + ACTIONS(3092), 1, + aux_sym_with_clause_token2, + STATE(211), 1, + sym_actual_parameter_part, + [41002] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(3064), 1, + ACTIONS(3094), 1, aux_sym_iterator_filter_token1, - ACTIONS(3066), 1, + ACTIONS(3096), 1, aux_sym_package_specification_token3, - STATE(910), 3, + STATE(924), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [42733] = 7, + [41020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3068), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1797), 1, - sym_aspect_specification, - [42755] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 1, + ACTIONS(3098), 1, aux_sym_compilation_unit_token1, - ACTIONS(3070), 1, + ACTIONS(3100), 1, aux_sym_with_clause_token1, - ACTIONS(3072), 1, + ACTIONS(3102), 1, aux_sym_allocator_token1, - ACTIONS(3074), 1, + ACTIONS(3104), 1, aux_sym_private_type_declaration_token1, - ACTIONS(3076), 1, + ACTIONS(3106), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3078), 1, + ACTIONS(3108), 1, aux_sym_private_extension_declaration_token1, - [42777] = 7, + [41042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3080), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - STATE(1541), 1, - sym_aspect_specification, - [42799] = 6, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3110), 1, + aux_sym_package_specification_token1, + STATE(1107), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3084), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [42818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3086), 1, - anon_sym_SEMI, - STATE(1271), 1, - sym__assign_value, - STATE(1834), 1, - sym_aspect_specification, - [42837] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3088), 1, + ACTIONS(3112), 1, sym_identifier, - ACTIONS(3090), 1, - anon_sym_LT_GT, - STATE(1182), 1, - sym_discriminant_specification, - STATE(1494), 1, - sym_discriminant_specification_list, - STATE(1511), 1, - sym__defining_identifier_list, - [42856] = 5, + ACTIONS(3114), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [41074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3042), 1, + anon_sym_COMMA, + ACTIONS(3048), 1, + aux_sym_with_clause_token2, + ACTIONS(3116), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3046), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + sym_identifier, + ACTIONS(3120), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [41108] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3098), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3122), 1, + anon_sym_SEMI, + ACTIONS(3124), 1, + aux_sym_with_clause_token1, + STATE(1418), 1, + sym_record_definition, + [41130] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2743), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3126), 1, + anon_sym_SEMI, + ACTIONS(3128), 1, + aux_sym_with_clause_token2, + STATE(211), 1, + sym_actual_parameter_part, + [41152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3098), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3130), 1, + aux_sym_allocator_token1, + ACTIONS(3132), 1, + aux_sym_interface_type_definition_token2, + STATE(1418), 1, + sym_record_definition, + [41174] = 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(706), 1, + sym_global_mode, + STATE(821), 1, + sym_non_empty_mode, + STATE(1382), 1, + sym_global_aspect_element, + [41196] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1090), 1, + sym__assign_value, + STATE(1459), 1, + sym_aspect_specification, + ACTIONS(3134), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41216] = 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, + [41230] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(3138), 1, + anon_sym_SEMI, + ACTIONS(3140), 1, + aux_sym_package_specification_token2, + STATE(1394), 1, + sym_known_discriminant_part, + STATE(1393), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [41250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_COMMA, + STATE(921), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3144), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3146), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_loop_statement_token1, + [41278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_COMMA, + STATE(950), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3148), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41294] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + [41308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1882), 1, + sym_identifier, + ACTIONS(1884), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_attribute_designator_token1, + [41322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3154), 1, + aux_sym_object_renaming_declaration_token1, + STATE(211), 1, + sym_actual_parameter_part, + [41341] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, aux_sym_result_profile_token1, - STATE(1392), 1, + STATE(1397), 1, + sym_formal_part, + STATE(813), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [41358] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3156), 1, + sym_tick, + ACTIONS(3158), 1, + aux_sym_iterated_element_association_token2, + STATE(211), 1, + sym_actual_parameter_part, + [41377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3160), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41396] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(1180), 1, + sym_iterator_filter, + ACTIONS(3162), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [41411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3164), 1, + anon_sym_RPAREN, + ACTIONS(3166), 1, + aux_sym_expression_token4, + ACTIONS(3168), 1, + aux_sym_elsif_expression_item_token1, + STATE(968), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [41428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3076), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1026), 1, + sym__subprogram_specification, + STATE(1048), 1, + sym_procedure_specification, + STATE(1064), 1, + sym_function_specification, + [41447] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3170), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3076), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(978), 1, + sym__subprogram_specification, + STATE(1048), 1, + sym_procedure_specification, + STATE(1064), 1, + sym_function_specification, + [41485] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3172), 1, + anon_sym_SEMI, + ACTIONS(3174), 1, + aux_sym_package_specification_token2, + ACTIONS(3176), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1581), 1, + sym_aspect_specification, + [41504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, sym_formal_part, STATE(814), 2, sym__parameter_and_result_profile, sym_result_profile, - [42873] = 5, + [41521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_RPAREN, - ACTIONS(3094), 1, - aux_sym_expression_token4, - ACTIONS(3096), 1, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3178), 1, + anon_sym_LPAREN, + ACTIONS(3180), 1, + anon_sym_SEMI, + STATE(1217), 1, + sym_formal_part, + STATE(1510), 1, + sym_aspect_specification, + [41540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3182), 1, + anon_sym_SEMI, + STATE(1284), 1, + sym__assign_value, + STATE(1682), 1, + sym_aspect_specification, + [41559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 1, aux_sym_elsif_expression_item_token1, - STATE(994), 2, + ACTIONS(3184), 1, + anon_sym_RPAREN, + ACTIONS(3186), 1, + aux_sym_expression_token4, + STATE(1009), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [42890] = 6, + [41576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, + ACTIONS(2115), 1, anon_sym_COLON_EQ, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3098), 1, + ACTIONS(3188), 1, anon_sym_SEMI, - STATE(1206), 1, + STATE(1227), 1, sym__assign_value, - STATE(1693), 1, + STATE(1486), 1, sym_aspect_specification, - [42909] = 4, + [41595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 1, + ACTIONS(2708), 1, + aux_sym_iterator_filter_token1, + STATE(1270), 1, + sym_iterator_filter, + ACTIONS(3190), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [41610] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3192), 1, + anon_sym_SEMI, + STATE(1231), 1, + sym__assign_value, + STATE(1475), 1, + sym_aspect_specification, + [41629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, + anon_sym_RBRACK, + STATE(1319), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3046), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, anon_sym_DOT, - ACTIONS(3100), 1, - aux_sym_package_specification_token2, - ACTIONS(781), 3, - sym_tick, - anon_sym_LPAREN, - aux_sym_with_clause_token2, - [42924] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3103), 1, - anon_sym_LPAREN, - ACTIONS(3105), 1, - anon_sym_SEMI, - STATE(1196), 1, - sym_formal_part, - STATE(1705), 1, - sym_aspect_specification, - [42943] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3107), 1, - anon_sym_SEMI, - STATE(1208), 1, - sym__assign_value, - STATE(1692), 1, - sym_aspect_specification, - [42962] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3109), 1, - anon_sym_SEMI, - ACTIONS(3111), 1, - aux_sym_with_clause_token2, - STATE(215), 1, + ACTIONS(3194), 1, + aux_sym_range_attribute_designator_token1, + STATE(211), 1, sym_actual_parameter_part, - [42981] = 5, + [41665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, anon_sym_LPAREN, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - STATE(1392), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3196), 1, + aux_sym_at_clause_token1, + STATE(211), 1, + sym_actual_parameter_part, + [41684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2740), 1, + aux_sym_expression_token1, + STATE(989), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3198), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [41699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3200), 1, + aux_sym_package_specification_token3, + ACTIONS(3202), 1, + aux_sym_expression_token4, + ACTIONS(3204), 1, + aux_sym_elsif_expression_item_token1, + STATE(1012), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [41716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3206), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3208), 1, + anon_sym_SEMI, + ACTIONS(3210), 1, + aux_sym_package_specification_token2, + ACTIONS(3212), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1632), 1, + sym_aspect_specification, + [41754] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3214), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41773] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3216), 1, + anon_sym_SEMI, + STATE(1274), 1, + sym__assign_value, + STATE(1775), 1, + sym_aspect_specification, + [41792] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(1230), 1, + sym__assign_value, + STATE(1785), 1, + sym_aspect_specification, + [41811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3220), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [41822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3222), 1, + anon_sym_SEMI, + STATE(1181), 1, + sym__assign_value, + STATE(1788), 1, + sym_aspect_specification, + [41841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3224), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + STATE(1706), 1, + sym_delay_alternative, + STATE(46), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + [41875] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3226), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3228), 1, + anon_sym_LPAREN, + ACTIONS(3230), 1, + anon_sym_SEMI, + STATE(1139), 1, sym_formal_part, - STATE(1136), 2, + STATE(1620), 1, + sym_aspect_specification, + [41913] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3232), 1, + aux_sym_object_renaming_declaration_token1, + STATE(211), 1, + sym_actual_parameter_part, + [41932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3234), 1, + aux_sym_expression_token1, + STATE(989), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2883), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [41947] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3172), 1, + anon_sym_SEMI, + ACTIONS(3176), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3237), 1, + aux_sym_package_specification_token2, + STATE(1376), 1, + sym_aspect_specification, + [41966] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3239), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [41985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42004] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3243), 1, + aux_sym_object_renaming_declaration_token1, + STATE(211), 1, + sym_actual_parameter_part, + [42023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3245), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(2988), 1, + anon_sym_SEMI, + STATE(1013), 1, + sym_actual_parameter_part, + [42061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(1137), 1, + sym_formal_part, + ACTIONS(3247), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(1137), 2, sym__parameter_and_result_profile, sym_result_profile, - [42998] = 5, + [42093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(215), 1, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3249), 1, + anon_sym_SEMI, + STATE(211), 1, sym_actual_parameter_part, - ACTIONS(3113), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [43015] = 6, + [42112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1089), 1, - sym__subprogram_specification, - STATE(1111), 1, - sym_procedure_specification, - STATE(1123), 1, - sym_function_specification, - [43034] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3115), 1, - anon_sym_SEMI, - ACTIONS(3117), 1, - aux_sym_package_specification_token2, - ACTIONS(3119), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3251), 1, aux_sym_object_renaming_declaration_token1, - STATE(1451), 1, - sym_aspect_specification, - [43053] = 2, + STATE(211), 1, + sym_actual_parameter_part, + [42131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 5, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3253), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(1286), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(1286), 1, + sym_formal_part, + ACTIONS(3255), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42182] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3257), 1, + anon_sym_SEMI, + STATE(1132), 1, + sym__assign_value, + STATE(1616), 1, + sym_aspect_specification, + [42201] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(3259), 1, + anon_sym_SEMI, + STATE(1244), 1, + sym_formal_part, + STATE(1592), 1, + sym_aspect_specification, + [42220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3261), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3263), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3267), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3271), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3269), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(1009), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3274), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3276), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3280), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3278), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + STATE(1012), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 1, + anon_sym_SEMI, + ACTIONS(837), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [42377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3286), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3288), 1, + aux_sym_with_clause_token1, + STATE(1439), 1, + sym_record_definition, + [42396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3132), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3290), 1, + aux_sym_allocator_token1, + STATE(1418), 1, + sym_record_definition, + [42415] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3292), 1, + anon_sym_SEMI, + STATE(1313), 1, + sym__assign_value, + STATE(1927), 1, + sym_aspect_specification, + [42434] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3294), 1, + anon_sym_SEMI, + STATE(1314), 1, + sym__assign_value, + STATE(1869), 1, + sym_aspect_specification, + [42453] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1048), 1, + sym_procedure_specification, + STATE(1064), 1, + sym_function_specification, + STATE(1102), 1, + sym__subprogram_specification, + [42472] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3296), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + STATE(1397), 1, + sym_formal_part, + STATE(816), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3082), 1, + anon_sym_LPAREN, + ACTIONS(3298), 1, + aux_sym_package_specification_token2, + STATE(1289), 1, + sym_known_discriminant_part, + STATE(1720), 1, + sym_aspect_specification, + [42527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(3094), 1, + aux_sym_iterator_filter_token1, + STATE(937), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [42542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 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, - [43064] = 6, + [42553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(1286), 1, - sym__assign_value, - STATE(1838), 1, - sym_aspect_specification, - [43083] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3123), 1, - anon_sym_SEMI, - STATE(1285), 1, - sym__assign_value, - STATE(1613), 1, - sym_aspect_specification, - [43102] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3125), 1, - anon_sym_SEMI, - STATE(1297), 1, - sym__assign_value, - STATE(1839), 1, - sym_aspect_specification, - [43121] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(1136), 1, - sym_formal_part, - ACTIONS(3127), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(3064), 1, - aux_sym_iterator_filter_token1, - STATE(948), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [43151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 5, - anon_sym_COMMA, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3300), 1, anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(3131), 1, - anon_sym_SEMI, - STATE(1315), 1, - sym_formal_part, - STATE(1575), 1, - sym_aspect_specification, - [43181] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(3133), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym_formal_part, - STATE(1652), 1, - sym_aspect_specification, - [43200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3135), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43211] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3137), 1, - anon_sym_SEMI, - STATE(1275), 1, - sym__assign_value, - STATE(1617), 1, - sym_aspect_specification, - [43230] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3139), 1, - aux_sym_package_specification_token3, - ACTIONS(3141), 1, - aux_sym_expression_token4, - ACTIONS(3143), 1, - aux_sym_elsif_expression_item_token1, - STATE(1006), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [43247] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3145), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3147), 1, - aux_sym_with_clause_token1, - STATE(1462), 1, - sym_record_definition, - [43266] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - STATE(1392), 1, - sym_formal_part, - STATE(819), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43283] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - STATE(1636), 1, - sym_delay_alternative, - STATE(49), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - [43320] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3151), 1, - anon_sym_SEMI, - STATE(1252), 1, - sym__assign_value, - STATE(1884), 1, - sym_aspect_specification, - [43339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 1, - aux_sym_expression_token1, - STATE(984), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2892), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2943), 1, - anon_sym_LPAREN, - ACTIONS(3156), 1, - aux_sym_package_specification_token2, - STATE(1268), 1, - sym_known_discriminant_part, - STATE(1514), 1, - sym_aspect_specification, - [43373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3052), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1007), 1, - sym__subprogram_specification, - STATE(1111), 1, - sym_procedure_specification, - STATE(1123), 1, - sym_function_specification, - [43392] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3115), 1, - anon_sym_SEMI, - ACTIONS(3119), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3158), 1, - aux_sym_package_specification_token2, - STATE(1752), 1, - sym_aspect_specification, - [43411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3052), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1000), 1, - sym__subprogram_specification, - STATE(1111), 1, - sym_procedure_specification, - STATE(1123), 1, - sym_function_specification, - [43430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3160), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [43441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - aux_sym_expression_token1, - STATE(984), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3162), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3166), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3164), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(991), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [43471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_COMMA, - ACTIONS(2951), 1, - anon_sym_RBRACK, - STATE(1321), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [43488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(1228), 1, - sym_formal_part, - ACTIONS(3169), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43503] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3171), 1, - anon_sym_RPAREN, - ACTIONS(3173), 1, - aux_sym_expression_token4, - STATE(991), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [43520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(2919), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3175), 1, - aux_sym_allocator_token1, - STATE(1410), 1, - sym_record_definition, - [43539] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3177), 1, - anon_sym_LPAREN, - ACTIONS(3179), 1, - anon_sym_SEMI, - STATE(1303), 1, - sym_formal_part, - STATE(1597), 1, - sym_aspect_specification, - [43558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(1151), 1, - sym_iterator_filter, - ACTIONS(3181), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [43573] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3183), 1, - aux_sym_package_specification_token3, - ACTIONS(3185), 1, - aux_sym_expression_token4, - STATE(977), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [43590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - STATE(1392), 1, - sym_formal_part, - STATE(1228), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43607] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3187), 1, - anon_sym_SEMI, - ACTIONS(3189), 1, - aux_sym_package_specification_token2, - ACTIONS(3191), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1760), 1, - sym_aspect_specification, - [43626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1909), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1156), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [43641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3193), 1, - anon_sym_SEMI, - STATE(1312), 1, - sym__assign_value, - STATE(1584), 1, - sym_aspect_specification, - [43660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3195), 1, - anon_sym_SEMI, - STATE(1130), 1, - sym__assign_value, - STATE(1578), 1, - sym_aspect_specification, - [43679] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3197), 1, - anon_sym_SEMI, - ACTIONS(3199), 1, - aux_sym_with_clause_token2, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - [43698] = 5, + [42572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, - STATE(215), 1, - sym_actual_parameter_part, - ACTIONS(3201), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [43715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3203), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - STATE(1006), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [43730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3187), 1, - anon_sym_SEMI, - ACTIONS(3191), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3208), 1, - aux_sym_package_specification_token2, - STATE(1412), 1, - sym_aspect_specification, - [43749] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - STATE(1392), 1, - sym_formal_part, - STATE(818), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2661), 1, - aux_sym_iterator_filter_token1, - STATE(1213), 1, - sym_iterator_filter, - ACTIONS(3210), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [43781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3216), 1, - aux_sym_package_specification_token2, - ACTIONS(3214), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3221), 1, - aux_sym_package_specification_token3, - STATE(1109), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [43817] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3223), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [43833] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3225), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [43849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43859] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3229), 1, - anon_sym_SEMI, - ACTIONS(3231), 1, - aux_sym_expression_token3, - STATE(1521), 1, - sym_aspect_specification, - [43875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1362), 1, - sym__assign_value, - ACTIONS(3233), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3235), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [43905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3237), 1, - aux_sym_object_renaming_declaration_token1, - STATE(215), 1, - sym_actual_parameter_part, - [43921] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3239), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3241), 1, - anon_sym_SEMI, - ACTIONS(3243), 1, - aux_sym_with_clause_token1, - ACTIONS(3245), 1, - aux_sym_expression_token3, - [43937] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3247), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [43953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3249), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [43969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [43985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3253), 1, - anon_sym_SEMI, - ACTIONS(3255), 1, - aux_sym_package_specification_token2, - STATE(1609), 1, - sym_aspect_specification, - [44001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3257), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [44017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3259), 1, - anon_sym_COMMA, - STATE(215), 1, - sym_actual_parameter_part, - [44033] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3261), 1, - anon_sym_SEMI, - ACTIONS(3263), 1, - aux_sym_package_specification_token2, - STATE(1350), 1, - sym_aspect_specification, - [44049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1328), 1, - sym__assign_value, - ACTIONS(3265), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3267), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3269), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - anon_sym_SEMI, - ACTIONS(3273), 1, - aux_sym_with_clause_token2, - ACTIONS(3276), 1, - aux_sym_expression_token1, - STATE(1366), 1, - sym_record_extension_part, - [44091] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3278), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44107] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3280), 1, - aux_sym_with_clause_token1, - STATE(1410), 1, - sym_record_definition, - [44123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3282), 1, - aux_sym_object_renaming_declaration_token1, - STATE(215), 1, - sym_actual_parameter_part, - [44139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 1, - anon_sym_COMMA, - STATE(1056), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3286), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(1378), 1, - sym_aspect_specification, - ACTIONS(3288), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44167] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3290), 1, - anon_sym_SEMI, - ACTIONS(3292), 1, - aux_sym_package_specification_token2, - STATE(1431), 1, - sym_aspect_specification, - [44183] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3294), 1, - aux_sym_object_renaming_declaration_token1, - STATE(215), 1, - sym_actual_parameter_part, - [44199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(1418), 1, - sym_aspect_specification, - ACTIONS(3296), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3298), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44229] = 4, - ACTIONS(3), 1, - sym_comment, + ACTIONS(1905), 1, + anon_sym_DOT, ACTIONS(3302), 1, - aux_sym_allocator_token1, + anon_sym_COMMA, + STATE(211), 1, + sym_actual_parameter_part, + [42591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3208), 1, + anon_sym_SEMI, + ACTIONS(3212), 1, + aux_sym_object_renaming_declaration_token1, ACTIONS(3304), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3300), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [44243] = 4, + aux_sym_package_specification_token2, + STATE(1325), 1, + sym_aspect_specification, + [42610] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3306), 1, - aux_sym_iterator_filter_token1, + sym_identifier, ACTIONS(3308), 1, - aux_sym_package_specification_token3, - STATE(1119), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [44257] = 4, + anon_sym_LT_GT, + STATE(1233), 1, + sym_discriminant_specification, + STATE(1477), 1, + sym_discriminant_specification_list, + STATE(1481), 1, + sym__defining_identifier_list, + [42629] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1924), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1926), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1159), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [42644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3310), 1, + aux_sym_package_specification_token3, ACTIONS(3312), 1, - aux_sym_expression_token3, - STATE(1042), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3310), 2, - aux_sym_package_specification_token3, aux_sym_expression_token4, - [44271] = 5, + STATE(976), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - ACTIONS(3315), 1, - anon_sym_SEMI, - ACTIONS(3317), 1, - aux_sym_accept_statement_token2, - STATE(1332), 1, - sym_formal_part, - [44287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3319), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3323), 1, - anon_sym_RPAREN, - STATE(215), 1, - sym_actual_parameter_part, - [44323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 1, + ACTIONS(3314), 5, anon_sym_COMMA, - ACTIONS(2645), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3325), 1, - anon_sym_COLON, - STATE(1255), 1, - aux_sym__defining_identifier_list_repeat1, - [44339] = 5, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, + ACTIONS(3316), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42683] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3318), 1, + anon_sym_SEMI, + STATE(1196), 1, + sym__assign_value, + STATE(1858), 1, + sym_aspect_specification, + [42702] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2605), 1, anon_sym_LPAREN, + ACTIONS(3320), 1, + anon_sym_SEMI, + STATE(1168), 1, + sym_formal_part, + STATE(1574), 1, + sym_aspect_specification, + [42721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3028), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3322), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3324), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3326), 1, + aux_sym_object_renaming_declaration_token1, + STATE(211), 1, + sym_actual_parameter_part, + [42789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, ACTIONS(3328), 1, anon_sym_SEMI, - STATE(215), 1, + STATE(211), 1, sym_actual_parameter_part, - [44355] = 5, + [42808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3145), 1, - aux_sym_compilation_unit_token1, - STATE(1462), 1, - sym_record_definition, - [44371] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3030), 1, - anon_sym_SEMI, - STATE(1093), 1, - sym_actual_parameter_part, - [44387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1033), 1, + ACTIONS(957), 1, anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, ACTIONS(3330), 1, - sym_tick, + anon_sym_RPAREN, + STATE(211), 1, + sym_actual_parameter_part, + [42827] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(3332), 1, - aux_sym_iterated_element_association_token2, - STATE(215), 1, - sym_actual_parameter_part, - [44403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3334), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44419] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1342), 1, - sym__assign_value, - ACTIONS(3336), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44433] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3187), 1, - anon_sym_SEMI, - ACTIONS(3189), 1, aux_sym_package_specification_token2, - STATE(1760), 1, - sym_aspect_specification, - [44449] = 4, + ACTIONS(1860), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [42840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1344), 1, - sym__assign_value, - ACTIONS(3336), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 1, + ACTIONS(3335), 5, anon_sym_COMMA, - STATE(1069), 1, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42851] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(905), 1, + sym_tick, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + ACTIONS(3337), 1, + anon_sym_SEMI, + STATE(211), 1, + sym_actual_parameter_part, + [42870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(857), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [42882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3342), 1, + anon_sym_SEMI, + ACTIONS(3344), 1, + aux_sym_package_specification_token2, + STATE(1415), 1, + sym_aspect_specification, + [42898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3346), 1, + anon_sym_COMMA, + STATE(1095), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3338), 2, + ACTIONS(3348), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [44477] = 5, + [42912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3350), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3352), 1, aux_sym_package_specification_token3, - ACTIONS(3342), 1, - aux_sym_expression_token3, - ACTIONS(3344), 1, - aux_sym_expression_token4, - STATE(1042), 1, - aux_sym_selective_accept_repeat1, - [44493] = 5, + STATE(1099), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [42926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1870), 1, - anon_sym_COMMA, - ACTIONS(2645), 1, + ACTIONS(3008), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(1860), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [42938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3356), 1, + aux_sym_package_specification_token2, + ACTIONS(3354), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - ACTIONS(3346), 1, - anon_sym_COLON, - STATE(1255), 1, - aux_sym__defining_identifier_list_repeat1, - [44509] = 5, + [42950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3349), 1, - aux_sym_range_attribute_designator_token1, - STATE(215), 1, - sym_actual_parameter_part, - [44525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3351), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3353), 4, - anon_sym_RPAREN, + ACTIONS(3359), 4, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [44551] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3088), 1, - sym_identifier, - STATE(1182), 1, - sym_discriminant_specification, - STATE(1494), 1, - sym_discriminant_specification_list, - STATE(1511), 1, - sym__defining_identifier_list, - [44567] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3342), 1, aux_sym_expression_token3, - ACTIONS(3355), 1, - aux_sym_package_specification_token3, - ACTIONS(3357), 1, - aux_sym_expression_token4, - STATE(1057), 1, - aux_sym_selective_accept_repeat1, - [44583] = 5, + anon_sym_COLON_EQ, + [42960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3115), 1, - anon_sym_SEMI, - ACTIONS(3158), 1, - aux_sym_package_specification_token2, - STATE(1752), 1, - sym_aspect_specification, - [44599] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3359), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44615] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(3361), 1, - anon_sym_LPAREN, + anon_sym_SEMI, ACTIONS(3363), 1, - anon_sym_SEMI, - ACTIONS(3365), 1, - aux_sym_accept_statement_token2, - STATE(1349), 1, - sym_formal_part, - [44631] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3115), 1, - anon_sym_SEMI, - ACTIONS(3367), 1, aux_sym_package_specification_token2, - STATE(1451), 1, + STATE(1329), 1, sym_aspect_specification, - [44647] = 5, + [42976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(1348), 1, + sym__assign_value, + ACTIONS(3365), 2, anon_sym_SEMI, - ACTIONS(3371), 1, + aux_sym_accept_statement_token2, + [42990] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3374), 1, - aux_sym_expression_token1, - STATE(1468), 1, - sym_record_extension_part, - [44663] = 4, + ACTIONS(3208), 1, + anon_sym_SEMI, + ACTIONS(3210), 1, + aux_sym_package_specification_token2, + STATE(1632), 1, + sym_aspect_specification, + [43006] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 1, + anon_sym_COMMA, + ACTIONS(2745), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3367), 1, + anon_sym_COLON, + STATE(1261), 1, + aux_sym__defining_identifier_list_repeat1, + [43022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3372), 1, + aux_sym_compilation_unit_token1, + STATE(1402), 1, + sym_record_definition, + [43048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(1466), 1, + sym__assign_value, + ACTIONS(3374), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [43062] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3376), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3379), 1, + aux_sym_package_specification_token3, + STATE(1057), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3381), 1, + aux_sym_package_specification_token2, + ACTIONS(3354), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [43088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3384), 1, + sym_identifier, + STATE(952), 1, + sym_aspect_association, + STATE(953), 1, + sym__aspect_mark, + STATE(1096), 1, + sym_aspect_mark_list, + [43104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, + sym_identifier, + STATE(1233), 1, + sym_discriminant_specification, + STATE(1477), 1, + sym_discriminant_specification_list, + STATE(1481), 1, + sym__defining_identifier_list, + [43120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 1, + aux_sym_range_attribute_designator_token1, + STATE(1434), 1, + sym_real_range_specification, + ACTIONS(3386), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [43134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3172), 1, + anon_sym_SEMI, + ACTIONS(3174), 1, + aux_sym_package_specification_token2, + STATE(1581), 1, + sym_aspect_specification, + [43150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, anon_sym_COMMA, - STATE(1069), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3379), 2, + STATE(1063), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3393), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [44677] = 5, + [43164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3381), 1, - anon_sym_SEMI, - ACTIONS(3383), 1, - aux_sym_expression_token3, - STATE(1621), 1, - sym_aspect_specification, - [44693] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3387), 1, - anon_sym_RPAREN, - STATE(215), 1, - sym_actual_parameter_part, - [44725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3389), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44741] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3391), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44757] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3393), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, ACTIONS(3395), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [44789] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3239), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3243), 1, - aux_sym_with_clause_token1, - ACTIONS(3397), 1, - anon_sym_SEMI, - ACTIONS(3399), 1, - aux_sym_expression_token3, - [44805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3403), 1, - aux_sym_expression_token1, - ACTIONS(3401), 3, + aux_sym_package_specification_token2, + ACTIONS(3354), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44817] = 4, + aux_sym_object_renaming_declaration_token1, + [43176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - aux_sym_allocator_token1, - ACTIONS(3409), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3405), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [44831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(1334), 1, - sym_aspect_specification, - ACTIONS(3411), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3415), 1, - aux_sym_expression_token1, - ACTIONS(3413), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 1, - anon_sym_DOT, - ACTIONS(2859), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(781), 2, - sym_tick, - anon_sym_LPAREN, - [44871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 1, - aux_sym_range_attribute_designator_token1, - STATE(1471), 1, - sym_real_range_specification, - ACTIONS(3417), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [44885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 1, - aux_sym_range_attribute_designator_token1, - STATE(1348), 1, - sym_real_range_specification, - ACTIONS(3421), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [44899] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, + ACTIONS(1759), 1, aux_sym_primary_null_token1, - ACTIONS(1763), 1, + ACTIONS(1765), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3423), 1, + ACTIONS(3398), 1, aux_sym_compilation_unit_token1, - STATE(1403), 1, + STATE(1402), 1, sym_record_definition, - [44915] = 2, + [43192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 4, + ACTIONS(3400), 1, + aux_sym_iterator_filter_token1, + STATE(1611), 1, + sym_variant_list, + STATE(1120), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3402), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44925] = 3, + [43216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3404), 1, + aux_sym_with_clause_token1, + STATE(1418), 1, + sym_record_definition, + [43232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3410), 1, + aux_sym_expression_token3, + STATE(1070), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3408), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + [43256] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3413), 1, + anon_sym_SEMI, + ACTIONS(3415), 1, + aux_sym_expression_token3, + STATE(1524), 1, + sym_aspect_specification, + [43272] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3419), 1, + anon_sym_SEMI, + ACTIONS(3421), 1, + aux_sym_with_clause_token1, + ACTIONS(3423), 1, + aux_sym_expression_token3, + [43288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3425), 1, aux_sym_package_specification_token2, - ACTIONS(3214), 3, + ACTIONS(3354), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44937] = 4, + [43300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, - aux_sym_iterator_filter_token1, - STATE(1612), 1, - sym_variant_list, - STATE(1012), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44951] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3187), 1, + ACTIONS(3428), 1, anon_sym_SEMI, ACTIONS(3430), 1, - aux_sym_package_specification_token2, - STATE(1412), 1, - sym_aspect_specification, - [44967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 4, - anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [44977] = 5, + ACTIONS(3433), 1, + aux_sym_expression_token1, + STATE(1421), 1, + sym_record_extension_part, + [43316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - aux_sym_allocator_token1, - ACTIONS(3078), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3434), 1, - aux_sym_with_clause_token1, - ACTIONS(3436), 1, - aux_sym_private_type_declaration_token2, - [44993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3438), 1, + ACTIONS(3435), 1, anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45009] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(3437), 1, + aux_sym_with_clause_token2, ACTIONS(3440), 1, - anon_sym_SEMI, - ACTIONS(839), 3, - sym_tick, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [45021] = 2, + aux_sym_expression_token1, + STATE(1398), 1, + sym_record_extension_part, + [43332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 4, + ACTIONS(3442), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3444), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - anon_sym_COLON_EQ, - [45031] = 5, + [43344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3445), 1, - aux_sym_object_renaming_declaration_token1, - STATE(215), 1, - sym_actual_parameter_part, - [45047] = 2, + ACTIONS(3448), 1, + aux_sym_allocator_token1, + ACTIONS(3450), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3446), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [43358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 4, + ACTIONS(3454), 1, + aux_sym_expression_token1, + ACTIONS(3452), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - anon_sym_COLON_EQ, - [45057] = 5, + [43370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45089] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - anon_sym_SEMI, - ACTIONS(3453), 1, - aux_sym_with_clause_token2, + ACTIONS(3108), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3130), 1, + aux_sym_allocator_token1, ACTIONS(3456), 1, - aux_sym_expression_token1, - STATE(1366), 1, - sym_record_extension_part, - [45105] = 5, - ACTIONS(3), 1, - sym_comment, + aux_sym_with_clause_token1, ACTIONS(3458), 1, + aux_sym_private_type_declaration_token2, + [43386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 4, anon_sym_SEMI, - ACTIONS(3460), 1, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - ACTIONS(3463), 1, - aux_sym_expression_token1, - STATE(1325), 1, - sym_record_extension_part, - [45121] = 5, + aux_sym_object_renaming_declaration_token1, + [43396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, - sym_identifier, - STATE(1283), 1, - sym_parameter_specification, - STATE(1549), 1, - sym__defining_identifier_list, - STATE(1554), 1, - sym__parameter_specification_list, - [45137] = 4, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(2984), 1, + aux_sym_iterator_filter_token1, + STATE(1410), 1, + sym_aspect_specification, + STATE(1646), 1, + sym_entry_barrier, + [43412] = 5, ACTIONS(3), 1, sym_comment, - STATE(1181), 1, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3286), 1, + aux_sym_compilation_unit_token1, + STATE(1439), 1, + sym_record_definition, + [43428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3464), 1, + aux_sym_allocator_token1, + ACTIONS(3466), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3462), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [43442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3421), 1, + aux_sym_with_clause_token1, + ACTIONS(3468), 1, + anon_sym_SEMI, + ACTIONS(3470), 1, + aux_sym_expression_token3, + [43458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [43468] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1350), 1, + sym_aspect_specification, + ACTIONS(3474), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43482] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1148), 1, sym__enumeration_literal_specification, - STATE(1766), 1, + STATE(1595), 1, sym__enumeration_literal_list, - ACTIONS(3465), 2, + ACTIONS(3476), 2, sym_identifier, sym_character_literal, - [45151] = 2, + [43496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 4, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3172), 1, anon_sym_SEMI, + ACTIONS(3478), 1, aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3469), 1, - anon_sym_COMMA, - ACTIONS(3471), 1, - anon_sym_RPAREN, - STATE(1211), 1, - aux_sym_record_component_association_list_repeat1, - STATE(1212), 1, - aux_sym_positional_array_aggregate_repeat1, - [45177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(2874), 1, - aux_sym_iterator_filter_token1, - STATE(1401), 1, - sym_aspect_specification, - STATE(1647), 1, - sym_entry_barrier, - [45193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3474), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym__name_list_repeat1, - ACTIONS(2977), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [45207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_COLON_EQ, - STATE(1389), 1, - sym__assign_value, - ACTIONS(3477), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [45221] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3479), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3484), 1, - aux_sym_package_specification_token3, - STATE(1109), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [45251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3486), 1, - aux_sym_with_clause_token1, - STATE(1462), 1, - sym_record_definition, - [45267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3488), 1, - aux_sym_package_specification_token2, - ACTIONS(3214), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [45279] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 1, - sym_identifier, - STATE(899), 1, - sym_aspect_association, - STATE(901), 1, - sym__aspect_mark, - STATE(1120), 1, - sym_aspect_mark_list, - [45295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, STATE(1376), 1, sym_aspect_specification, + [43512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1407), 1, + sym_aspect_specification, + ACTIONS(3480), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1406), 1, + sym_aspect_specification, + ACTIONS(3482), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3484), 1, + anon_sym_COMMA, + STATE(1091), 1, + aux_sym__name_list_repeat1, + ACTIONS(2948), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43554] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3487), 1, + anon_sym_SEMI, + ACTIONS(3489), 1, + aux_sym_expression_token3, + STATE(1649), 1, + sym_aspect_specification, + [43570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + STATE(1367), 1, + sym_aspect_specification, + ACTIONS(3491), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3346), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym__array_component_association_list_repeat1, ACTIONS(3493), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [45309] = 4, + anon_sym_RBRACK, + [43598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - STATE(1379), 1, - sym_aspect_specification, - ACTIONS(3495), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [45323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, + ACTIONS(3495), 1, anon_sym_COMMA, - STATE(1115), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3500), 2, + STATE(1095), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3498), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [45337] = 5, + [43612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3502), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3504), 1, - aux_sym_compilation_unit_token1, - STATE(1414), 1, - sym_record_definition, - [45369] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - aux_sym_object_renaming_declaration_token1, - STATE(215), 1, - sym_actual_parameter_part, - [45385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3511), 1, - aux_sym_package_specification_token3, - STATE(1119), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [45399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 4, + ACTIONS(3500), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [45409] = 4, + [43622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(1888), 1, anon_sym_COMMA, - STATE(1335), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [45423] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, - anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3519), 1, - aux_sym_package_specification_token2, - ACTIONS(3214), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, + ACTIONS(2745), 1, aux_sym_object_renaming_declaration_token1, - [45451] = 5, + ACTIONS(3502), 1, + anon_sym_COLON, + STATE(1261), 1, + aux_sym__defining_identifier_list_repeat1, + [43638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, + ACTIONS(3505), 1, + anon_sym_SEMI, + ACTIONS(3507), 1, + aux_sym_with_clause_token2, + ACTIONS(3510), 1, + aux_sym_expression_token1, + STATE(1428), 1, + sym_record_extension_part, + [43654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3515), 1, + aux_sym_package_specification_token3, + STATE(1099), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [43668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3428), 1, + anon_sym_SEMI, + ACTIONS(3517), 1, + aux_sym_with_clause_token2, + ACTIONS(3520), 1, + aux_sym_expression_token1, + STATE(1421), 1, + sym_record_extension_part, + [43684] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, + sym_identifier, + STATE(1293), 1, + sym_parameter_specification, + STATE(1725), 1, + sym__defining_identifier_list, + STATE(1741), 1, + sym__parameter_specification_list, + [43700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3208), 1, anon_sym_SEMI, ACTIONS(3522), 1, - aux_sym_with_clause_token2, - ACTIONS(3525), 1, - aux_sym_expression_token1, + aux_sym_package_specification_token2, STATE(1325), 1, - sym_record_extension_part, - [45467] = 5, + sym_aspect_specification, + [43716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3524), 1, + anon_sym_COMMA, + STATE(1352), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3046), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [43730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 4, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3527), 1, aux_sym_with_clause_token2, + aux_sym_accept_statement_token2, + [43740] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(3530), 1, aux_sym_expression_token1, - STATE(1468), 1, - sym_record_extension_part, - [45483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(3532), 1, + ACTIONS(3528), 3, anon_sym_SEMI, - STATE(215), 1, - sym_actual_parameter_part, - [45499] = 5, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(1388), 1, + sym__assign_value, + ACTIONS(3532), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3534), 1, - aux_sym_compilation_unit_token1, - STATE(1403), 1, - sym_record_definition, - [45515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - sym_tick, - ACTIONS(1033), 1, - anon_sym_LPAREN, + anon_sym_SEMI, ACTIONS(3536), 1, - aux_sym_at_clause_token1, - STATE(215), 1, - sym_actual_parameter_part, - [45531] = 5, + aux_sym_package_specification_token2, + STATE(1624), 1, + sym_aspect_specification, + [43782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1759), 1, aux_sym_primary_null_token1, - ACTIONS(1763), 1, + ACTIONS(1765), 1, aux_sym_record_component_association_list_token1, ACTIONS(3538), 1, aux_sym_compilation_unit_token1, - STATE(1403), 1, + STATE(1402), 1, sym_record_definition, - [45547] = 4, + [43798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, ACTIONS(3540), 1, - anon_sym_SEMI, - STATE(1564), 1, - sym_aspect_specification, - [45560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1741), 1, - aux_sym_attribute_designator_token1, - STATE(1230), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [45571] = 4, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3542), 1, anon_sym_RPAREN, - ACTIONS(3544), 1, - anon_sym_SEMI, - STATE(1132), 1, - aux_sym_discriminant_specification_list_repeat1, - [45584] = 4, + STATE(1210), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1211), 1, + aux_sym_positional_array_aggregate_repeat1, + [43814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(3545), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43824] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(3547), 1, - anon_sym_SEMI, - STATE(1718), 1, - sym_aspect_specification, - [45597] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1391), 1, - sym__enumeration_literal_specification, - ACTIONS(3549), 2, - sym_identifier, - sym_character_literal, - [45608] = 4, - ACTIONS(3), 1, - sym_comment, + aux_sym_package_specification_token3, + ACTIONS(3549), 1, + aux_sym_expression_token3, ACTIONS(3551), 1, - anon_sym_COMMA, + aux_sym_expression_token4, + STATE(1070), 1, + aux_sym_selective_accept_repeat1, + [43840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, ACTIONS(3553), 1, - anon_sym_RPAREN, - STATE(1231), 1, - aux_sym__enumeration_literal_list_repeat1, - [45621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 3, anon_sym_SEMI, + ACTIONS(3555), 1, + aux_sym_accept_statement_token2, + STATE(1344), 1, + sym_formal_part, + [43856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3557), 1, - anon_sym_EQ_GT, - ACTIONS(3559), 1, - anon_sym_PIPE, - STATE(1138), 1, - aux_sym_discrete_choice_list_repeat1, - [45652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3564), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3566), 1, - anon_sym_SEMI, - STATE(1774), 1, + STATE(1334), 1, sym_aspect_specification, - [45683] = 4, + ACTIONS(3557), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [43870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 1, - aux_sym_allocator_token1, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3559), 1, + aux_sym_compilation_unit_token1, + STATE(1413), 1, + sym_record_definition, + [43886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3505), 1, + anon_sym_SEMI, + ACTIONS(3561), 1, + aux_sym_with_clause_token2, + ACTIONS(3564), 1, + aux_sym_expression_token1, + STATE(1428), 1, + sym_record_extension_part, + [43902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(1370), 1, + sym__assign_value, + ACTIONS(3566), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [43916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, ACTIONS(3568), 1, aux_sym_with_clause_token1, - ACTIONS(3570), 1, - aux_sym_private_type_declaration_token2, - [45696] = 3, + STATE(1439), 1, + sym_record_definition, + [43932] = 2, ACTIONS(3), 1, sym_comment, - STATE(1106), 1, - aux_sym__name_list_repeat1, - ACTIONS(3572), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(3570), 4, + anon_sym_SEMI, aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3400), 1, + aux_sym_iterator_filter_token1, ACTIONS(3574), 1, + aux_sym_package_specification_token3, + STATE(1057), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 1, + aux_sym_range_attribute_designator_token1, + STATE(1427), 1, + sym_real_range_specification, + ACTIONS(3576), 2, anon_sym_SEMI, - STATE(1818), 1, - sym_aspect_specification, - [45720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3379), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45729] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3576), 1, - anon_sym_SEMI, - STATE(1518), 1, - sym_aspect_specification, - [45742] = 4, + [43980] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3578), 1, - anon_sym_COMMA, - ACTIONS(3581), 1, - anon_sym_RPAREN, - STATE(1147), 1, - aux_sym_record_component_association_list_repeat2, - [45755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_EQ_GT, - ACTIONS(1864), 1, - anon_sym_PIPE, - STATE(1289), 1, - aux_sym_component_choice_list_repeat1, - [45768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(851), 2, - sym_tick, anon_sym_LPAREN, - [45788] = 2, + ACTIONS(3580), 1, + anon_sym_SEMI, + ACTIONS(3582), 1, + aux_sym_accept_statement_token2, + STATE(1446), 1, + sym_formal_part, + [43996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - anon_sym_COMMA, - ACTIONS(3593), 1, - anon_sym_RPAREN, - STATE(1152), 1, - aux_sym_record_component_association_list_repeat1, - [45810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3595), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [45819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - STATE(1462), 1, - sym_record_definition, - [45832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_RPAREN, - STATE(1155), 1, - aux_sym_index_constraint_repeat1, - [45845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(3435), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, aux_sym_with_clause_token2, - ACTIONS(3602), 1, - aux_sym_package_specification_token2, - STATE(1485), 1, - sym_aspect_specification, - [45858] = 2, + ACTIONS(3587), 1, + aux_sym_expression_token1, + STATE(1398), 1, + sym_record_extension_part, + [44012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3604), 3, + ACTIONS(2115), 1, + anon_sym_COLON_EQ, + STATE(1369), 1, + sym__assign_value, + ACTIONS(3566), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3589), 1, + aux_sym_compilation_unit_token1, + STATE(1402), 1, + sym_record_definition, + [44042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3591), 1, + aux_sym_compilation_unit_token1, + STATE(1402), 1, + sym_record_definition, + [44058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + aux_sym_expression_token3, + ACTIONS(3593), 1, + aux_sym_package_specification_token3, + ACTIONS(3595), 1, + aux_sym_expression_token4, + STATE(1111), 1, + aux_sym_selective_accept_repeat1, + [44074] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3597), 1, + aux_sym_compilation_unit_token1, + STATE(1402), 1, + sym_record_definition, + [44090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3599), 1, anon_sym_COMMA, + ACTIONS(3601), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [45867] = 4, + STATE(1210), 1, + aux_sym_record_component_association_list_repeat1, + [44103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3603), 1, anon_sym_COMMA, + ACTIONS(3606), 1, + anon_sym_RPAREN, + STATE(1130), 1, + aux_sym_index_constraint_repeat1, + [44116] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(3608), 1, anon_sym_RPAREN, - STATE(1234), 1, - aux_sym_case_expression_repeat1, - [45880] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(3610), 1, - sym_identifier, - ACTIONS(3612), 1, - aux_sym_use_clause_token2, - ACTIONS(3614), 1, - aux_sym_package_body_token1, - [45893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 1, - anon_sym_COMMA, - ACTIONS(3618), 1, - anon_sym_RPAREN, - STATE(1211), 1, - aux_sym_record_component_association_list_repeat1, - [45906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3622), 1, - anon_sym_EQ_GT, - ACTIONS(3624), 1, - anon_sym_PIPE, - STATE(1173), 1, - aux_sym_exception_choice_list_repeat1, - [45928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_COMMA, - ACTIONS(3629), 1, - anon_sym_RPAREN, - STATE(1163), 1, - aux_sym_global_aspect_definition_repeat1, - [45941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - aux_sym_use_clause_token2, - ACTIONS(3635), 1, - aux_sym_package_body_token1, - [45954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3637), 1, anon_sym_SEMI, - STATE(1823), 1, - sym_aspect_specification, - [45967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [45976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3641), 1, - anon_sym_SEMI, - STATE(1827), 1, - sym_aspect_specification, - [45989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_expression_token3, - [45998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3645), 1, - anon_sym_SEMI, - STATE(1515), 1, - sym_aspect_specification, - [46011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 1, - anon_sym_COMMA, - ACTIONS(3649), 1, - anon_sym_RPAREN, - STATE(1205), 1, - aux_sym_index_constraint_repeat1, - [46024] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [46033] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3653), 1, - anon_sym_SEMI, - STATE(1657), 1, - sym_aspect_specification, - [46046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, - anon_sym_EQ_GT, - ACTIONS(3657), 1, - anon_sym_PIPE, - STATE(1173), 1, - aux_sym_exception_choice_list_repeat1, - [46059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3660), 1, - anon_sym_RPAREN, - ACTIONS(3662), 1, - anon_sym_SEMI, - STATE(1132), 1, + STATE(1131), 1, aux_sym_discriminant_specification_list_repeat1, - [46072] = 2, + [44129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [46081] = 4, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3613), 1, + anon_sym_SEMI, + STATE(1747), 1, + sym_aspect_specification, + [44142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + STATE(1390), 1, + sym__enumeration_literal_specification, + ACTIONS(3615), 2, sym_identifier, - STATE(901), 1, - sym__aspect_mark, - STATE(980), 1, - sym_aspect_association, - [46094] = 4, + sym_character_literal, + [44153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3666), 1, - aux_sym_package_specification_token2, - STATE(1589), 1, - sym_aspect_specification, - [46107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3668), 1, + ACTIONS(3617), 1, anon_sym_COMMA, - ACTIONS(3671), 1, - anon_sym_COLON, - STATE(1178), 1, - aux_sym__defining_identifier_list_repeat1, - [46120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2862), 1, - anon_sym_COLON, - ACTIONS(2864), 1, - aux_sym_iterator_specification_token1, - [46133] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3673), 1, - aux_sym_package_specification_token2, - STATE(1601), 1, - sym_aspect_specification, - [46146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(3675), 1, + ACTIONS(3619), 1, anon_sym_RPAREN, - STATE(1135), 1, + STATE(1287), 1, aux_sym__enumeration_literal_list_repeat1, - [46159] = 4, + [44166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_SEMI, - ACTIONS(3677), 1, - anon_sym_RPAREN, - STATE(1174), 1, - aux_sym_discriminant_specification_list_repeat1, - [46172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - STATE(1414), 1, - sym_record_definition, - [46185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3679), 1, - anon_sym_SEMI, - STATE(1778), 1, - sym_aspect_specification, - [46198] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 1, - aux_sym_primary_null_token1, - ACTIONS(1763), 1, - aux_sym_record_component_association_list_token1, - STATE(1403), 1, - sym_record_definition, - [46211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 3, + ACTIONS(3621), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46220] = 4, + [44175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, + ACTIONS(3623), 1, anon_sym_COMMA, - ACTIONS(3572), 1, - anon_sym_SEMI, - STATE(1106), 1, - aux_sym__name_list_repeat1, - [46233] = 4, + ACTIONS(3626), 1, + anon_sym_RPAREN, + STATE(1136), 1, + aux_sym_actual_parameter_part_repeat1, + [44188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3683), 1, - anon_sym_SEMI, - STATE(1806), 1, - sym_aspect_specification, - [46246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 3, + ACTIONS(3255), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46255] = 4, + [44197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(3628), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3687), 1, - anon_sym_SEMI, - STATE(1809), 1, - sym_aspect_specification, - [46268] = 4, + aux_sym_expression_token3, + [44206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3689), 1, + ACTIONS(3630), 1, anon_sym_SEMI, - STATE(1811), 1, + STATE(1918), 1, sym_aspect_specification, - [46281] = 4, + [44219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3691), 1, - anon_sym_SEMI, - STATE(1711), 1, - sym_aspect_specification, - [46294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 1, - anon_sym_RPAREN, - ACTIONS(3695), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym__parameter_specification_list_repeat1, - [46307] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3698), 1, - anon_sym_SEMI, - STATE(1812), 1, - sym_aspect_specification, - [46320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 1, + ACTIONS(3388), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(3700), 1, + ACTIONS(3632), 1, aux_sym_attribute_designator_token3, - STATE(1472), 1, + STATE(1426), 1, sym_real_range_specification, - [46333] = 4, + [44232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3702), 1, + ACTIONS(3634), 3, anon_sym_SEMI, - STATE(1805), 1, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3636), 1, + anon_sym_SEMI, + STATE(1738), 1, sym_aspect_specification, - [46346] = 2, + [44254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [46355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3706), 1, - anon_sym_SEMI, - STATE(1710), 1, - sym_aspect_specification, - [46368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3708), 1, - anon_sym_SEMI, - STATE(1624), 1, - sym_aspect_specification, - [46381] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3606), 1, - anon_sym_COMMA, - ACTIONS(3710), 1, - anon_sym_RPAREN, - STATE(1158), 1, - aux_sym_case_expression_repeat1, - [46394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3712), 1, - anon_sym_SEMI, - STATE(1749), 1, - sym_aspect_specification, - [46407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(3716), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3718), 1, - anon_sym_SEMI, - STATE(1911), 1, - sym_aspect_specification, - [46431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3720), 1, - anon_sym_SEMI, - STATE(1632), 1, - sym_aspect_specification, - [46444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 1, - anon_sym_COMMA, - ACTIONS(3722), 1, - anon_sym_RPAREN, - STATE(1155), 1, - aux_sym_index_constraint_repeat1, - [46457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(1838), 1, - sym_aspect_specification, - [46470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 1, + ACTIONS(3638), 1, anon_sym_EQ_GT, - ACTIONS(3726), 1, + ACTIONS(3640), 1, anon_sym_PIPE, - STATE(1207), 1, + STATE(1143), 1, aux_sym_component_choice_list_repeat1, - [46483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3729), 1, - anon_sym_SEMI, - STATE(1825), 1, - sym_aspect_specification, - [46496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3731), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 1, - anon_sym_COMMA, - ACTIONS(3735), 1, - anon_sym_RPAREN, - STATE(1152), 1, - aux_sym_record_component_association_list_repeat1, - [46527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3739), 1, - anon_sym_RPAREN, - STATE(1115), 1, - aux_sym_positional_array_aggregate_repeat1, - [46540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, - anon_sym_COMMA, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [46560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3749), 1, - anon_sym_SEMI, - STATE(1736), 1, - sym_aspect_specification, - [46591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3751), 1, - anon_sym_SEMI, - STATE(1608), 1, - sym_aspect_specification, - [46604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3753), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46613] = 4, + [44267] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, aux_sym_accept_statement_token1, - STATE(30), 1, + STATE(29), 1, sym_accept_statement, - STATE(1307), 1, + STATE(1151), 1, sym__select_alternative, - [46626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 1, - anon_sym_COMMA, - ACTIONS(3757), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_actual_parameter_part_repeat1, - [46639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3761), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3239), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3407), 1, - aux_sym_allocator_token1, - [46679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3765), 1, - anon_sym_SEMI, - STATE(1845), 1, - sym_aspect_specification, - [46692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3769), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3771), 1, - aux_sym_package_specification_token2, - STATE(1601), 1, - sym_aspect_specification, - [46723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 1, - anon_sym_COMMA, - ACTIONS(3778), 1, - anon_sym_RPAREN, - STATE(1231), 1, - aux_sym__enumeration_literal_list_repeat1, - [46745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3780), 1, - anon_sym_SEMI, - STATE(1730), 1, - sym_aspect_specification, - [46758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_COMMA, - ACTIONS(3787), 1, - anon_sym_RPAREN, - STATE(1234), 1, - aux_sym_case_expression_repeat1, - [46780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3789), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3791), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 1, - anon_sym_COMMA, - ACTIONS(3793), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_actual_parameter_part_repeat1, - [46811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_RPAREN, - ACTIONS(3797), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym__parameter_specification_list_repeat1, - [46824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3799), 1, - anon_sym_SEMI, - STATE(1694), 1, - sym_aspect_specification, - [46837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46855] = 4, + [44280] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, ACTIONS(501), 1, aux_sym_value_sequence_token1, - STATE(1871), 1, + STATE(1874), 1, sym_iterated_element_association, - [46868] = 4, + [44293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3803), 1, + ACTIONS(3643), 1, anon_sym_SEMI, - STATE(1700), 1, + STATE(1648), 1, sym_aspect_specification, - [46881] = 4, + [44306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, - sym_identifier, - STATE(1417), 1, - sym_parameter_specification, - STATE(1549), 1, - sym__defining_identifier_list, - [46894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3805), 1, + ACTIONS(3645), 1, anon_sym_SEMI, - STATE(1500), 1, + STATE(1866), 1, sym_aspect_specification, - [46907] = 4, + [44319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3807), 1, - anon_sym_SEMI, - STATE(1614), 1, - sym_aspect_specification, - [46920] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3809), 1, - anon_sym_SEMI, - ACTIONS(3811), 1, - aux_sym_with_clause_token1, - [46933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, + ACTIONS(3617), 1, anon_sym_COMMA, - ACTIONS(3815), 1, + ACTIONS(3647), 1, anon_sym_RPAREN, - STATE(1310), 1, - aux_sym_record_component_association_list_repeat2, - [46946] = 4, + STATE(1134), 1, + aux_sym__enumeration_literal_list_repeat1, + [44332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1870), 1, + ACTIONS(1888), 1, anon_sym_COMMA, - ACTIONS(1872), 1, + ACTIONS(1890), 1, anon_sym_COLON, - STATE(1255), 1, + STATE(1261), 1, aux_sym__defining_identifier_list_repeat1, - [46959] = 4, + [44345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3649), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [44363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3653), 1, + anon_sym_SEMI, + STATE(1875), 1, + sym_aspect_specification, + [44376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, + aux_sym_iterator_filter_token1, + STATE(1144), 1, + sym_guard, + STATE(1277), 1, + sym__guard_select, + [44389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, sym_identifier, - STATE(1387), 1, + STATE(1420), 1, sym_discriminant_specification, - STATE(1511), 1, + STATE(1481), 1, sym__defining_identifier_list, - [46972] = 4, + [44402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3817), 1, - anon_sym_SEMI, - STATE(1504), 1, - sym_aspect_specification, - [46985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3123), 1, - anon_sym_SEMI, - STATE(1613), 1, - sym_aspect_specification, - [46998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3819), 1, - anon_sym_SEMI, - STATE(1759), 1, - sym_aspect_specification, - [47011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RPAREN, - STATE(1212), 1, - aux_sym_positional_array_aggregate_repeat1, - [47024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_COLON, - STATE(1178), 1, - aux_sym__defining_identifier_list_repeat1, - [47037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3827), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3829), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3831), 1, - anon_sym_SEMI, - STATE(1755), 1, - sym_aspect_specification, - [47077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47086] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3835), 1, - anon_sym_SEMI, - STATE(1867), 1, - sym_aspect_specification, - [47099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3837), 1, - anon_sym_EQ_GT, - ACTIONS(3839), 1, - anon_sym_PIPE, - STATE(1319), 1, - aux_sym_discrete_choice_list_repeat1, - [47112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3841), 3, + ACTIONS(3655), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [47121] = 2, + [44411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + STATE(1439), 1, + sym_record_definition, + [44424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3655), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [44433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_COMMA, + ACTIONS(3659), 1, + anon_sym_RPAREN, + STATE(1317), 1, + aux_sym_global_aspect_definition_repeat1, + [44446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3661), 1, + aux_sym_package_specification_token2, + STATE(1614), 1, + sym_aspect_specification, + [44459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [44468] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3665), 1, + anon_sym_SEMI, + STATE(1877), 1, + sym_aspect_specification, + [44481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3667), 1, + aux_sym_package_specification_token2, + STATE(1693), 1, + sym_aspect_specification, + [44494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 1, + aux_sym_expression_token2, + ACTIONS(3671), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [44505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [44514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3675), 1, + anon_sym_EQ_GT, + ACTIONS(3677), 1, + anon_sym_PIPE, + STATE(1252), 1, + aux_sym_exception_choice_list_repeat1, + [44527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2992), 1, + anon_sym_COMMA, + ACTIONS(3679), 1, + anon_sym_SEMI, + STATE(1091), 1, + aux_sym__name_list_repeat1, + [44540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + anon_sym_COMMA, + ACTIONS(3683), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_index_constraint_repeat1, + [44553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3685), 1, + anon_sym_SEMI, + STATE(1719), 1, + sym_aspect_specification, + [44566] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3687), 1, + anon_sym_SEMI, + STATE(1665), 1, + sym_aspect_specification, + [44579] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1300), 1, + sym_quantifier, + ACTIONS(3021), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [44590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3689), 3, + anon_sym_RPAREN, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [44599] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3691), 1, + anon_sym_COMMA, + ACTIONS(3694), 1, + anon_sym_RPAREN, + STATE(1172), 1, + aux_sym__index_subtype_definition_list_repeat1, + [44612] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3696), 1, + anon_sym_COMMA, + ACTIONS(3698), 1, + anon_sym_RPAREN, + STATE(1245), 1, + aux_sym_actual_parameter_part_repeat1, + [44625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3700), 1, + anon_sym_COMMA, + ACTIONS(3703), 1, + anon_sym_RPAREN, + STATE(1174), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [44638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3705), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [44647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3350), 1, + aux_sym_iterator_filter_token1, + STATE(1046), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [44658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3707), 1, + aux_sym_package_specification_token2, + STATE(1893), 1, + sym_aspect_specification, + [44671] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3709), 1, + anon_sym_SEMI, + STATE(1700), 1, + sym_aspect_specification, + [44684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3711), 1, + anon_sym_COMMA, + ACTIONS(3713), 1, + anon_sym_RPAREN, + STATE(1290), 1, + aux_sym_pragma_g_repeat1, + [44697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [44706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3717), 1, + anon_sym_SEMI, + STATE(1871), 1, + sym_aspect_specification, + [44719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3719), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [44728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3721), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3011), 1, + anon_sym_COLON, + ACTIONS(3013), 1, + aux_sym_iterator_specification_token1, + [44750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3723), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3725), 1, + anon_sym_SEMI, + STATE(1488), 1, + sym_aspect_specification, + [44772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 1, + sym_identifier, + STATE(1870), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [44801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3733), 1, + anon_sym_SEMI, + STATE(1754), 1, + sym_aspect_specification, + [44814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3735), 1, + anon_sym_SEMI, + STATE(1699), 1, + sym_aspect_specification, + [44827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + anon_sym_RPAREN, + ACTIONS(3739), 1, + anon_sym_SEMI, + STATE(1192), 1, + aux_sym__parameter_specification_list_repeat1, + [44840] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3742), 1, + anon_sym_SEMI, + STATE(1758), 1, + sym_aspect_specification, + [44853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3744), 1, + anon_sym_SEMI, + STATE(1520), 1, + sym_aspect_specification, + [44866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3746), 1, + anon_sym_SEMI, + STATE(1521), 1, + sym_aspect_specification, + [44879] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3182), 1, + anon_sym_SEMI, + STATE(1682), 1, + sym_aspect_specification, + [44892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3748), 1, + anon_sym_SEMI, + STATE(1526), 1, + sym_aspect_specification, + [44905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3384), 1, + sym_identifier, + STATE(953), 1, + sym__aspect_mark, + STATE(1034), 1, + sym_aspect_association, + [44918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_COMMA, + ACTIONS(3752), 1, + anon_sym_RPAREN, + STATE(1229), 1, + aux_sym_case_expression_repeat1, + [44931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3754), 1, + anon_sym_SEMI, + STATE(1551), 1, + sym_aspect_specification, + [44944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 1, + anon_sym_EQ_GT, + ACTIONS(1870), 1, + anon_sym_PIPE, + STATE(1295), 1, + aux_sym_component_choice_list_repeat1, + [44957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3677), 1, + anon_sym_PIPE, + ACTIONS(3756), 1, + anon_sym_EQ_GT, + STATE(1165), 1, + aux_sym_exception_choice_list_repeat1, + [44970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 1, + anon_sym_COMMA, + ACTIONS(3761), 1, + anon_sym_RPAREN, + STATE(1203), 1, + aux_sym_record_component_association_list_repeat2, + [44983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + anon_sym_COMMA, + ACTIONS(3763), 1, + anon_sym_RPAREN, + STATE(1130), 1, + aux_sym_index_constraint_repeat1, + [44996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3765), 1, + anon_sym_RPAREN, + ACTIONS(3767), 1, + anon_sym_SEMI, + STATE(1192), 1, + aux_sym__parameter_specification_list_repeat1, + [45009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3498), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45018] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3769), 1, + anon_sym_SEMI, + STATE(1895), 1, + sym_aspect_specification, + [45031] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3771), 1, + anon_sym_SEMI, + STATE(1722), 1, + sym_aspect_specification, + [45044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3773), 1, + anon_sym_SEMI, + STATE(1728), 1, + sym_aspect_specification, + [45057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3599), 1, + anon_sym_COMMA, + ACTIONS(3775), 1, + anon_sym_RPAREN, + STATE(1225), 1, + aux_sym_record_component_association_list_repeat1, + [45070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 1, + anon_sym_COMMA, + ACTIONS(3779), 1, + anon_sym_RPAREN, + STATE(1063), 1, + aux_sym_positional_array_aggregate_repeat1, + [45083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3781), 1, + anon_sym_SEMI, + STATE(1731), 1, + sym_aspect_specification, + [45096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3783), 1, + anon_sym_COMMA, + ACTIONS(3046), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3787), 3, + sym_identifier, + sym_string_literal, + sym_character_literal, + [45125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3789), 1, + anon_sym_SEMI, + STATE(1735), 1, + sym_aspect_specification, + [45138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3791), 1, + anon_sym_SEMI, + STATE(1739), 1, + sym_aspect_specification, + [45151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3795), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_PIPE, + STATE(1320), 1, + aux_sym_discrete_choice_list_repeat1, + [45182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3803), 1, + anon_sym_COMMA, + ACTIONS(3805), 1, + anon_sym_RPAREN, + STATE(1322), 1, + aux_sym_record_component_association_list_repeat2, + [45204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3807), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3809), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3811), 1, + anon_sym_COMMA, + ACTIONS(3814), 1, + anon_sym_RPAREN, + STATE(1225), 1, + aux_sym_record_component_association_list_repeat1, + [45235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3816), 1, + anon_sym_SEMI, + STATE(1612), 1, + sym_aspect_specification, + [45248] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(1785), 1, + sym_aspect_specification, + [45261] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3818), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_aspect_specification, + [45274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_COMMA, + ACTIONS(3820), 1, + anon_sym_RPAREN, + STATE(1232), 1, + aux_sym_case_expression_repeat1, + [45287] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3294), 1, + anon_sym_SEMI, + STATE(1869), 1, + sym_aspect_specification, + [45300] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3822), 1, + anon_sym_SEMI, + STATE(1760), 1, + sym_aspect_specification, + [45313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_RPAREN, + STATE(1232), 1, + aux_sym_case_expression_repeat1, + [45326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3829), 1, + anon_sym_RPAREN, + ACTIONS(3831), 1, + anon_sym_SEMI, + STATE(1305), 1, + aux_sym_discriminant_specification_list_repeat1, + [45339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, + sym_identifier, + STATE(1462), 1, + sym_parameter_specification, + STATE(1725), 1, + sym__defining_identifier_list, + [45352] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3833), 1, + anon_sym_SEMI, + STATE(1617), 1, + sym_aspect_specification, + [45365] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_COMMA, + ACTIONS(3837), 1, + anon_sym_RPAREN, + STATE(1311), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [45378] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_COMMA, + ACTIONS(3841), 1, + anon_sym_RPAREN, + STATE(1312), 1, + aux_sym__index_subtype_definition_list_repeat1, + [45391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3843), 3, anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [47130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3845), 1, - anon_sym_SEMI, - STATE(1716), 1, - sym_aspect_specification, - [47143] = 2, + aux_sym_expression_token3, + [45400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 3, - aux_sym_iterated_element_association_token2, + ACTIONS(3845), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3847), 1, anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - anon_sym_COMMA, ACTIONS(3849), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym_pragma_g_repeat1, - [47165] = 4, + anon_sym_PIPE, + STATE(1240), 1, + aux_sym_discrete_choice_list_repeat1, + [45422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3851), 1, - aux_sym_package_specification_token2, - STATE(1875), 1, - sym_aspect_specification, - [47178] = 4, + ACTIONS(3731), 1, + sym_identifier, + STATE(1383), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [45433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3853), 1, + ACTIONS(3132), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3417), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3464), 1, + aux_sym_allocator_token1, + [45446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 3, anon_sym_SEMI, - STATE(1876), 1, - sym_aspect_specification, - [47191] = 4, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3855), 1, + ACTIONS(3854), 1, anon_sym_SEMI, - STATE(1878), 1, + STATE(1504), 1, sym_aspect_specification, - [47204] = 4, + [45468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3857), 1, - anon_sym_SEMI, - STATE(1576), 1, - sym_aspect_specification, - [47217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3859), 1, - aux_sym_package_specification_token2, - STATE(1680), 1, - sym_aspect_specification, - [47230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, + ACTIONS(3696), 1, anon_sym_COMMA, - ACTIONS(3861), 1, + ACTIONS(3856), 1, anon_sym_RPAREN, - STATE(1267), 1, - aux_sym_pragma_g_repeat1, - [47243] = 2, + STATE(1136), 1, + aux_sym_actual_parameter_part_repeat1, + [45481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47252] = 4, + ACTIONS(1743), 1, + aux_sym_attribute_designator_token1, + STATE(1239), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [45492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3865), 1, + ACTIONS(3858), 3, anon_sym_SEMI, - STATE(1748), 1, - sym_aspect_specification, - [47265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 1, - anon_sym_COMMA, - ACTIONS(3869), 1, - anon_sym_RPAREN, - STATE(1316), 1, - aux_sym__index_subtype_definition_list_repeat1, - [47278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, aux_sym_with_clause_token2, - ACTIONS(3871), 1, + aux_sym_expression_token3, + [45501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3860), 1, anon_sym_SEMI, - STATE(1691), 1, + STATE(1798), 1, sym_aspect_specification, - [47291] = 4, + [45514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3862), 1, + anon_sym_SEMI, + STATE(1689), 1, + sym_aspect_specification, + [45527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3864), 1, + anon_sym_SEMI, + STATE(1508), 1, + sym_aspect_specification, + [45540] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - ACTIONS(3873), 1, + ACTIONS(3866), 1, anon_sym_LPAREN, - STATE(1717), 1, + STATE(1723), 1, sym_iterated_element_association, - [47304] = 4, + [45553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RPAREN, - STATE(1323), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [47317] = 4, + ACTIONS(3868), 1, + anon_sym_EQ_GT, + ACTIONS(3870), 1, + anon_sym_PIPE, + STATE(1252), 1, + aux_sym_exception_choice_list_repeat1, + [45566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3879), 1, - aux_sym_package_specification_token2, - STATE(1732), 1, - sym_aspect_specification, - [47330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 1, + ACTIONS(3873), 3, aux_sym_iterator_filter_token1, - STATE(1041), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [47341] = 4, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [45575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3875), 3, anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3883), 1, aux_sym_package_specification_token2, - ACTIONS(3885), 1, + STATE(1893), 1, + sym_aspect_specification, + [45624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, aux_sym_expression_token3, - [47354] = 4, + [45633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, - anon_sym_SEMI, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3887), 1, - anon_sym_RPAREN, - STATE(1238), 1, - aux_sym__parameter_specification_list_repeat1, - [47367] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3889), 1, - anon_sym_SEMI, - STATE(1528), 1, + aux_sym_package_specification_token2, + STATE(1769), 1, sym_aspect_specification, - [47380] = 4, + [45646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3891), 1, - anon_sym_SEMI, - STATE(1529), 1, - sym_aspect_specification, - [47393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3193), 1, - anon_sym_SEMI, - STATE(1584), 1, - sym_aspect_specification, - [47406] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1293), 1, - sym_quantifier, - ACTIONS(2985), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [47417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, + ACTIONS(1888), 1, anon_sym_COMMA, + ACTIONS(3889), 1, + anon_sym_COLON, + STATE(1315), 1, + aux_sym__defining_identifier_list_repeat1, + [45659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + STATE(1413), 1, + sym_record_definition, + [45672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + aux_sym_primary_null_token1, + ACTIONS(1765), 1, + aux_sym_record_component_association_list_token1, + STATE(1402), 1, + sym_record_definition, + [45694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3286), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3893), 1, + anon_sym_SEMI, ACTIONS(3895), 1, - anon_sym_RPAREN, - STATE(1318), 1, - aux_sym_global_aspect_definition_repeat1, - [47430] = 4, + aux_sym_with_clause_token1, + [45707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1864), 1, - anon_sym_PIPE, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3897), 1, - anon_sym_EQ_GT, - STATE(1207), 1, - aux_sym_component_choice_list_repeat1, - [47443] = 4, + anon_sym_SEMI, + STATE(1623), 1, + sym_aspect_specification, + [45720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3899), 1, anon_sym_SEMI, - STATE(1739), 1, + STATE(1630), 1, sym_aspect_specification, - [47456] = 4, + [45733] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3901), 1, - anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym_pragma_g_repeat1, - [47469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3906), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RPAREN, - STATE(1292), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [47482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, sym_identifier, - STATE(1901), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [47493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3913), 1, + ACTIONS(3903), 2, anon_sym_SEMI, - STATE(1898), 1, + aux_sym_with_clause_token2, + [45744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 1, + aux_sym_allocator_token1, + ACTIONS(3911), 1, + aux_sym_with_clause_token1, + ACTIONS(3913), 1, + aux_sym_private_type_declaration_token2, + [45784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3915), 1, + anon_sym_SEMI, + STATE(1605), 1, sym_aspect_specification, - [47506] = 2, + [45797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3915), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [47515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3500), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47524] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3917), 1, anon_sym_SEMI, - STATE(1585), 1, + STATE(1901), 1, sym_aspect_specification, - [47537] = 4, + [45810] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3919), 1, - anon_sym_COMMA, - ACTIONS(3922), 1, - anon_sym_RPAREN, - STATE(1298), 1, - aux_sym__index_subtype_definition_list_repeat1, - [47550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, - sym_identifier, - STATE(1424), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [47561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3924), 1, - anon_sym_SEMI, - STATE(1896), 1, - sym_aspect_specification, - [47574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - aux_sym_with_clause_token2, - ACTIONS(3926), 1, aux_sym_package_specification_token2, - STATE(1589), 1, + STATE(1769), 1, sym_aspect_specification, - [47587] = 4, + [45823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_COMMA, - ACTIONS(3928), 1, - anon_sym_SEMI, - STATE(1106), 1, - aux_sym__name_list_repeat1, - [47600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3930), 1, + ACTIONS(3921), 1, anon_sym_SEMI, - STATE(1593), 1, + STATE(1587), 1, sym_aspect_specification, - [47613] = 4, + [45836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_COMMA, - ACTIONS(3935), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_actual_parameter_part_repeat1, - [47626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - aux_sym_expression_token2, - ACTIONS(3939), 2, - aux_sym_expression_token3, - aux_sym_expression_token4, - [47637] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2114), 1, - aux_sym_iterator_filter_token1, - STATE(1220), 1, - sym_guard, - STATE(1241), 1, - sym__guard_select, - [47650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3941), 3, + ACTIONS(3408), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [47659] = 4, + [45845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, - sym_identifier, - STATE(1460), 1, - sym__named_record_component_association, - STATE(1641), 1, - sym_component_choice_list, - [47672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3947), 1, - anon_sym_RPAREN, - STATE(1147), 1, - aux_sym_record_component_association_list_repeat2, - [47694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [47703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, - ACTIONS(3949), 1, + ACTIONS(3923), 1, anon_sym_SEMI, - STATE(1565), 1, + STATE(1607), 1, sym_aspect_specification, - [47716] = 2, + [45858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 3, + ACTIONS(3925), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47725] = 4, + [45867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, - anon_sym_PIPE, + ACTIONS(3393), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [45885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3929), 1, + anon_sym_SEMI, + STATE(1548), 1, + sym_aspect_specification, + [45898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3931), 1, + anon_sym_SEMI, + STATE(1531), 1, + sym_aspect_specification, + [45911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3933), 1, + anon_sym_SEMI, + STATE(1532), 1, + sym_aspect_specification, + [45924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3935), 1, + anon_sym_SEMI, + STATE(1826), 1, + sym_aspect_specification, + [45937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_RPAREN, + STATE(1287), 1, + aux_sym__enumeration_literal_list_repeat1, + [45959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3944), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [45968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3946), 1, + aux_sym_package_specification_token2, + STATE(1753), 1, + sym_aspect_specification, + [45981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + anon_sym_COMMA, + ACTIONS(3951), 1, + anon_sym_RPAREN, + STATE(1290), 1, + aux_sym_pragma_g_repeat1, + [45994] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(3953), 1, - anon_sym_EQ_GT, - STATE(1162), 1, - aux_sym_exception_choice_list_repeat1, - [47738] = 4, + anon_sym_SEMI, + STATE(1822), 1, + sym_aspect_specification, + [46007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2210), 1, aux_sym_with_clause_token2, ACTIONS(3955), 1, anon_sym_SEMI, - STATE(1720), 1, + STATE(1910), 1, sym_aspect_specification, - [47751] = 4, + [46020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, - anon_sym_COMMA, + ACTIONS(3767), 1, + anon_sym_SEMI, ACTIONS(3957), 1, anon_sym_RPAREN, - STATE(1298), 1, - aux_sym__index_subtype_definition_list_repeat1, - [47764] = 2, + STATE(1205), 1, + aux_sym__parameter_specification_list_repeat1, + [46033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3959), 3, - anon_sym_RPAREN, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [47773] = 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, - anon_sym_RPAREN, - STATE(1163), 1, - aux_sym_global_aspect_definition_repeat1, - [47786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 1, + ACTIONS(1870), 1, anon_sym_PIPE, - ACTIONS(3963), 1, + ACTIONS(3961), 1, anon_sym_EQ_GT, - STATE(1138), 1, - aux_sym_discrete_choice_list_repeat1, - [47799] = 3, + STATE(1143), 1, + aux_sym_component_choice_list_repeat1, + [46055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, - sym_identifier, - STATE(1866), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [47810] = 4, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3963), 1, + anon_sym_SEMI, + STATE(1559), 1, + sym_aspect_specification, + [46068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3965), 1, + ACTIONS(3777), 1, anon_sym_COMMA, - ACTIONS(3967), 1, - anon_sym_RBRACK, - STATE(1115), 1, + ACTIONS(3965), 1, + anon_sym_RPAREN, + STATE(1211), 1, aux_sym_positional_array_aggregate_repeat1, - [47823] = 2, + [46081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3967), 1, + aux_sym_package_specification_token2, + STATE(1583), 1, + sym_aspect_specification, + [46094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3969), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(3971), 1, - anon_sym_RPAREN, - STATE(1292), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [47845] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3973), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 2, + aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, - anon_sym_PIPE, - [47870] = 2, + aux_sym_loop_statement_token1, + [46103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3977), 2, + ACTIONS(3731), 1, + sym_identifier, + STATE(1803), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [46114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 3, anon_sym_COMMA, anon_sym_RPAREN, - [47878] = 2, + anon_sym_RBRACK, + [46132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3979), 2, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, + ACTIONS(3973), 1, anon_sym_SEMI, + STATE(1817), 1, + sym_aspect_specification, + [46145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, + anon_sym_RPAREN, + STATE(1158), 1, + aux_sym_global_aspect_definition_repeat1, + [46158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3831), 1, + anon_sym_SEMI, + ACTIONS(3977), 1, + anon_sym_RPAREN, + STATE(1131), 1, + aux_sym_discriminant_specification_list_repeat1, + [46171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 3, + anon_sym_SEMI, + anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - [47886] = 3, + [46180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, - sym_identifier, + ACTIONS(3981), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [46189] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3711), 1, + anon_sym_COMMA, ACTIONS(3983), 1, - anon_sym_SEMI, - [47896] = 3, + anon_sym_RPAREN, + STATE(1179), 1, + aux_sym_pragma_g_repeat1, + [46202] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3985), 1, sym_identifier, ACTIONS(3987), 1, - anon_sym_SEMI, - [47906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3290), 1, - anon_sym_SEMI, - ACTIONS(3292), 1, - aux_sym_package_specification_token2, - [47916] = 3, - ACTIONS(3), 1, - sym_comment, + aux_sym_use_clause_token2, ACTIONS(3989), 1, - anon_sym_SEMI, + aux_sym_package_body_token1, + [46215] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(3991), 1, - aux_sym_accept_statement_token2, - [47926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [47934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3993), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47942] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(3993), 1, + aux_sym_package_specification_token2, ACTIONS(3995), 1, - anon_sym_COMMA, - STATE(1115), 1, - aux_sym_positional_array_aggregate_repeat1, - [47952] = 2, + aux_sym_expression_token3, + [46228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 2, + ACTIONS(3835), 1, anon_sym_COMMA, + ACTIONS(3997), 1, anon_sym_RPAREN, - [47960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3997), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47968] = 3, + STATE(1174), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [46241] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3839), 1, + anon_sym_COMMA, ACTIONS(3999), 1, - sym_identifier, + anon_sym_RPAREN, + STATE(1172), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(4001), 1, anon_sym_SEMI, - [47978] = 3, + STATE(1563), 1, + sym_aspect_specification, + [46267] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2210), 1, + aux_sym_with_clause_token2, ACTIONS(4003), 1, - aux_sym_package_specification_token3, + anon_sym_SEMI, + STATE(1564), 1, + sym_aspect_specification, + [46280] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(4005), 1, - aux_sym_exception_declaration_token1, - [47988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [47996] = 3, + ACTIONS(4008), 1, + anon_sym_COLON, + STATE(1315), 1, + aux_sym__defining_identifier_list_repeat1, + [46293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(4011), 1, - anon_sym_SEMI, - [48006] = 2, + ACTIONS(4012), 1, + aux_sym_use_clause_token2, + ACTIONS(4014), 1, + aux_sym_package_body_token1, + [46306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [48014] = 2, + ACTIONS(4016), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RPAREN, + STATE(1317), 1, + aux_sym_global_aspect_definition_repeat1, + [46319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [48022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4013), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [48030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 2, + STATE(1091), 1, + aux_sym__name_list_repeat1, + ACTIONS(4021), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4017), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4019), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4021), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48062] = 3, + [46330] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4023), 1, - anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(4025), 1, - aux_sym_accept_statement_token2, - [48072] = 3, + anon_sym_RBRACK, + STATE(1063), 1, + aux_sym_positional_array_aggregate_repeat1, + [46343] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3799), 1, + anon_sym_PIPE, ACTIONS(4027), 1, + anon_sym_EQ_GT, + STATE(1240), 1, + aux_sym_discrete_choice_list_repeat1, + [46356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2992), 1, + anon_sym_COMMA, + ACTIONS(4021), 1, anon_sym_SEMI, + STATE(1091), 1, + aux_sym__name_list_repeat1, + [46369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3803), 1, + anon_sym_COMMA, ACTIONS(4029), 1, - aux_sym_package_specification_token2, - [48082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_COMMA, anon_sym_RPAREN, - [48090] = 2, + STATE(1203), 1, + aux_sym_record_component_association_list_repeat2, + [46382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4033), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, + ACTIONS(4031), 1, sym_identifier, + STATE(1341), 1, + sym__named_record_component_association, + STATE(1662), 1, + sym_component_choice_list, + [46395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 1, + aux_sym_expression_token3, + ACTIONS(4035), 1, + aux_sym_expression_token4, + [46405] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4037), 1, anon_sym_SEMI, - [48116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4039), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48124] = 3, + ACTIONS(4039), 1, + aux_sym_package_specification_token2, + [46415] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4041), 1, sym_identifier, ACTIONS(4043), 1, anon_sym_SEMI, - [48134] = 3, + [46425] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4045), 1, - aux_sym_with_clause_token2, - STATE(1464), 1, - sym_record_extension_part, - [48144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4049), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2953), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [48184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4055), 1, - aux_sym_with_clause_token2, - STATE(1365), 1, - sym_record_extension_part, - [48194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(4063), 1, - anon_sym_RBRACK, - [48228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 1, aux_sym_compilation_unit_token1, - ACTIONS(4068), 1, - aux_sym_with_clause_token1, - [48238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_SEMI, - [48248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 1, + ACTIONS(4047), 1, aux_sym_with_clause_token2, - ACTIONS(4076), 1, - aux_sym_expression_token1, - [48258] = 3, + [46435] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4049), 1, + sym_identifier, + ACTIONS(4051), 1, + anon_sym_SEMI, + [46445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_SEMI, ACTIONS(4055), 1, - aux_sym_with_clause_token2, - STATE(1358), 1, - sym_record_extension_part, - [48268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4082), 1, - anon_sym_SEMI, - [48286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 1, - sym_identifier, - ACTIONS(4090), 1, - anon_sym_SEMI, - [48320] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4096), 1, - anon_sym_LPAREN, - ACTIONS(4098), 1, - anon_sym_SEMI, - [48346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_SEMI, - [48356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3302), 1, - aux_sym_allocator_token1, - [48374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 1, - sym_identifier, - ACTIONS(4106), 1, - anon_sym_SEMI, - [48384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4110), 1, - anon_sym_SEMI, - ACTIONS(4112), 1, - aux_sym_accept_statement_token2, - [48402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3542), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4114), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3407), 1, - aux_sym_allocator_token1, - [48436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2743), 1, - aux_sym_result_profile_token1, - STATE(816), 1, - sym_result_profile, - [48454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - aux_sym_expression_token3, - ACTIONS(4120), 1, - aux_sym_expression_token4, - [48464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4124), 1, - anon_sym_SEMI, - [48474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4126), 1, - sym_identifier, - ACTIONS(4128), 1, - anon_sym_SEMI, - [48484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3072), 1, - aux_sym_allocator_token1, - [48494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_SEMI, - [48504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2345), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4134), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, - sym_identifier, - ACTIONS(4138), 1, - anon_sym_SEMI, - [48530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2874), 1, - aux_sym_iterator_filter_token1, - STATE(1772), 1, - sym_entry_barrier, - [48540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4140), 1, - sym_identifier, - ACTIONS(4142), 1, - anon_sym_SEMI, - [48550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - aux_sym_with_clause_token2, - STATE(1358), 1, - sym_record_extension_part, - [48568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4150), 1, - anon_sym_SEMI, - ACTIONS(4152), 1, aux_sym_package_specification_token2, - [48586] = 2, + [46455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 2, + ACTIONS(4057), 1, + sym_identifier, + ACTIONS(4059), 1, + anon_sym_SEMI, + [46465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 1, + sym_identifier, + ACTIONS(4063), 1, + anon_sym_SEMI, + [46475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + sym_identifier, + ACTIONS(4067), 1, + anon_sym_SEMI, + [46485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48594] = 3, + [46493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_SEMI, + ACTIONS(3363), 1, + aux_sym_package_specification_token2, + [46511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 1, + sym_identifier, + ACTIONS(4075), 1, + anon_sym_SEMI, + [46521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 1, + sym_identifier, + ACTIONS(4079), 1, + anon_sym_SEMI, + [46531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3464), 1, + aux_sym_allocator_token1, + [46541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3847), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, + sym_identifier, + ACTIONS(4083), 1, + anon_sym_SEMI, + [46559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4087), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [46583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_SEMI, + ACTIONS(4091), 1, + aux_sym_accept_statement_token2, + [46593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [46601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_package_specification_token3, + ACTIONS(4099), 1, + aux_sym_exception_declaration_token1, + [46619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [46651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 1, + anon_sym_COMMA, + STATE(1063), 1, + aux_sym_positional_array_aggregate_repeat1, + [46661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + aux_sym_with_clause_token2, + STATE(1355), 1, + sym_record_extension_part, + [46671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4111), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 1, + aux_sym_iterator_filter_token1, + STATE(1199), 1, + sym_case_expression_alternative, + [46697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 1, + sym_identifier, + ACTIONS(4119), 1, + anon_sym_SEMI, + [46707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 1, + anon_sym_SEMI, + ACTIONS(4123), 1, + aux_sym_accept_statement_token2, + [46717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + sym_identifier, + ACTIONS(4127), 1, + anon_sym_SEMI, + [46727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 1, + anon_sym_LPAREN, + ACTIONS(4131), 1, + anon_sym_SEMI, + [46737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3626), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4133), 1, + sym_identifier, + ACTIONS(4135), 1, + anon_sym_SEMI, + [46755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 1, + sym_identifier, + ACTIONS(4141), 1, + anon_sym_SEMI, + [46773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + sym_identifier, + STATE(207), 1, + sym_reduction_attribute_designator, + [46807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_formal_part, + [46833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + sym_identifier, + ACTIONS(4153), 1, + anon_sym_SEMI, + [46843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + aux_sym_with_clause_token2, + STATE(1378), 1, + sym_record_extension_part, + [46853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + aux_sym_with_clause_token2, + STATE(1355), 1, + sym_record_extension_part, + [46863] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4157), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(4159), 1, + anon_sym_SEMI, + [46873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 1, + anon_sym_SEMI, + ACTIONS(3661), 1, aux_sym_package_specification_token2, - [48604] = 3, + [46883] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4161), 1, sym_identifier, ACTIONS(4163), 1, anon_sym_SEMI, - [48614] = 2, + [46893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4165), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48622] = 3, + [46901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, - aux_sym_iterator_filter_token1, - STATE(1200), 1, - sym_case_expression_alternative, - [48632] = 3, + ACTIONS(4008), 2, + anon_sym_COMMA, + anon_sym_COLON, + [46909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [46917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4169), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(4171), 1, - aux_sym_package_specification_token2, - [48642] = 2, + anon_sym_SEMI, + [46927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 2, + ACTIONS(4019), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [48650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4173), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48658] = 3, + [46935] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4173), 1, + aux_sym_iterated_element_association_token2, ACTIONS(4175), 1, - aux_sym_with_clause_token2, + anon_sym_EQ_GT, + [46945] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4177), 1, - aux_sym_expression_token1, - [48668] = 2, + sym_identifier, + ACTIONS(4179), 1, + anon_sym_SEMI, + [46955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48684] = 2, + ACTIONS(3638), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4181), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48692] = 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4183), 1, - sym_identifier, - ACTIONS(4185), 1, + ACTIONS(4183), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [48702] = 3, + [46979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4185), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [46987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4187), 1, sym_identifier, ACTIONS(4189), 1, anon_sym_SEMI, - [48712] = 2, + [46997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3951), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48720] = 3, + [47021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4193), 1, - aux_sym_access_to_subprogram_definition_token2, + anon_sym_SEMI, ACTIONS(4195), 1, - aux_sym_access_to_subprogram_definition_token3, - [48730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(1343), 1, - sym_formal_part, - [48740] = 3, + aux_sym_package_specification_token2, + [47031] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4197), 1, - aux_sym_iterated_element_association_token2, + anon_sym_SEMI, ACTIONS(4199), 1, - anon_sym_EQ_GT, - [48750] = 3, + aux_sym_package_specification_token2, + [47041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(4202), 1, sym_identifier, - STATE(206), 1, - sym_reduction_attribute_designator, - [48760] = 3, + ACTIONS(4204), 1, + anon_sym_SEMI, + [47051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, - aux_sym_package_specification_token3, - ACTIONS(4205), 1, - aux_sym_subprogram_body_token1, - [48770] = 2, + ACTIONS(3286), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3448), 1, + aux_sym_allocator_token1, + [47061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 2, + ACTIONS(2734), 1, + aux_sym_result_profile_token1, + STATE(818), 1, + sym_result_profile, + [47071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4208), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_SEMI, + [47089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4212), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [48778] = 3, + [47105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4209), 1, - aux_sym_access_to_subprogram_definition_token3, - [48788] = 2, + ACTIONS(4214), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 2, + ACTIONS(4216), 1, + aux_sym_with_clause_token2, + STATE(1429), 1, + sym_record_extension_part, + [47123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4218), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48796] = 3, + [47139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, - sym_identifier, - ACTIONS(4213), 1, + ACTIONS(4220), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [48806] = 3, + [47147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(4222), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(4217), 1, - aux_sym_package_specification_token2, - [48816] = 3, + [47155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - aux_sym_with_clause_token2, - STATE(1464), 1, - sym_record_extension_part, - [48826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4219), 1, - aux_sym_with_clause_token2, - STATE(1365), 1, - sym_record_extension_part, - [48836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - sym_identifier, - ACTIONS(4223), 1, + ACTIONS(3491), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [48846] = 3, + [47163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - aux_sym_use_clause_token2, - [48856] = 3, + ACTIONS(4224), 1, + aux_sym_package_specification_token3, + ACTIONS(4226), 1, + aux_sym_subprogram_body_token1, + [47173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2984), 1, aux_sym_iterator_filter_token1, - STATE(1647), 1, + STATE(1771), 1, sym_entry_barrier, - [48866] = 2, + [47183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 2, - aux_sym_iterator_filter_token1, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(4228), 1, + anon_sym_RBRACK, + [47193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, aux_sym_with_clause_token2, - [48874] = 3, + STATE(1429), 1, + sym_record_extension_part, + [47203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, - sym_identifier, - ACTIONS(4229), 1, + ACTIONS(4231), 2, anon_sym_SEMI, - [48884] = 3, + aux_sym_with_clause_token2, + [47211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, - sym_identifier, - ACTIONS(3612), 1, - aux_sym_use_clause_token2, - [48894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, - sym_identifier, ACTIONS(4233), 1, + aux_sym_with_clause_token2, + ACTIONS(4235), 1, + aux_sym_expression_token1, + [47221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, anon_sym_SEMI, - [48904] = 3, + ACTIONS(4239), 1, + aux_sym_package_specification_token2, + [47231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, + aux_sym_with_clause_token2, + ACTIONS(4245), 1, + aux_sym_expression_token1, + [47249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(497), 1, aux_sym_iterated_element_association_token1, - STATE(1781), 1, + STATE(1691), 1, sym_iterated_element_association, - [48914] = 2, + [47267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 2, + ACTIONS(3608), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - sym_identifier, - ACTIONS(4237), 1, - anon_sym_SEMI, - [48932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4239), 1, - sym_identifier, - ACTIONS(4241), 1, - anon_sym_SEMI, - [48950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 2, - anon_sym_COMMA, - anon_sym_COLON, - [48958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - aux_sym_iterator_filter_token1, - STATE(1382), 1, - sym_case_expression_alternative, - [48968] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4243), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_SEMI, - ACTIONS(3602), 1, - aux_sym_package_specification_token2, - [49002] = 2, + [47275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4249), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3593), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4252), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49026] = 3, + [47283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(4251), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4253), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, aux_sym_compilation_unit_token1, - ACTIONS(4254), 1, + ACTIONS(4257), 1, aux_sym_with_clause_token1, - [49036] = 2, + [47309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 2, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - [49044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4260), 1, - aux_sym_iterator_specification_token1, - [49054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 1, - aux_sym_with_clause_token2, - ACTIONS(4264), 1, - aux_sym_expression_token1, - [49064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [49072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3581), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4268), 1, - sym_identifier, - ACTIONS(4270), 1, - anon_sym_SEMI, - [49090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 2, + ACTIONS(4259), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49098] = 3, + [47317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_SEMI, - [49108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 2, + ACTIONS(4261), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49116] = 2, + [47325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [49124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2250), 1, - aux_sym_access_to_subprogram_definition_token3, - [49134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4284), 1, - aux_sym_with_clause_token2, - [49144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 2, + ACTIONS(4263), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49152] = 3, + [47333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(217), 1, - aux_sym_package_specification_token3, - ACTIONS(219), 1, - aux_sym_subprogram_body_token1, - [49162] = 2, + ACTIONS(4265), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 2, + ACTIONS(4267), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3868), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [49170] = 2, + [47357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4269), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + aux_sym_with_clause_token2, + STATE(1378), 1, + sym_record_extension_part, + [47375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49178] = 2, + [47383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 2, + ACTIONS(4275), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49186] = 2, + [47391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 2, + ACTIONS(4277), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_with_clause_token2, - [49194] = 2, + [47399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4279), 1, sym_identifier, - [49201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_RPAREN, - [49208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4233), 1, + ACTIONS(4281), 1, anon_sym_SEMI, - [49215] = 2, + [47409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_SEMI, + [47419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4289), 1, + aux_sym_access_to_subprogram_definition_token3, + [47429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4291), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - [49222] = 2, + [47437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - aux_sym_package_specification_token2, - [49229] = 2, + ACTIONS(4293), 1, + aux_sym_with_clause_token2, + ACTIONS(4295), 1, + aux_sym_expression_token1, + [47447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, - aux_sym_subunit_token1, - [49236] = 2, + ACTIONS(3102), 1, + aux_sym_allocator_token1, + ACTIONS(3132), 1, + aux_sym_interface_type_definition_token2, + [47457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_SEMI, - [49243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DOT_DOT, - [49250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4306), 1, - anon_sym_RBRACK, - [49257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4308), 1, + ACTIONS(3559), 1, aux_sym_compilation_unit_token1, - [49264] = 2, + ACTIONS(4297), 1, + aux_sym_with_clause_token1, + [47467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, - anon_sym_SEMI, - [49271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 1, - aux_sym_package_specification_token2, - [49278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4312), 1, - anon_sym_SEMI, - [49285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 1, - anon_sym_SEMI, - [49292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 1, - sym_tick, - [49299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 1, + ACTIONS(4299), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [49306] = 2, + [47475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, + ACTIONS(4301), 1, + sym_identifier, + ACTIONS(4303), 1, + anon_sym_SEMI, + [47485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 1, + aux_sym_package_specification_token3, + ACTIONS(267), 1, + aux_sym_subprogram_body_token1, + [47495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, + anon_sym_SEMI, + ACTIONS(4307), 1, + aux_sym_accept_statement_token2, + [47505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 1, + aux_sym_iterator_filter_token1, + STATE(1646), 1, + sym_entry_barrier, + [47515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 2, + aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - [49313] = 2, + [47531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, + ACTIONS(3694), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [49320] = 2, + [47539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, + ACTIONS(4313), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4319), 1, anon_sym_SEMI, - [49327] = 2, + [47565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(2463), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, + sym_identifier, + ACTIONS(4323), 1, anon_sym_SEMI, - [49334] = 2, + [47583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(4325), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [49341] = 2, + [47591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 1, + ACTIONS(3480), 2, anon_sym_RPAREN, - [49348] = 2, + anon_sym_SEMI, + [47599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [47623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4330), 1, - aux_sym_package_specification_token3, - [49355] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_chunk_specification_token1, ACTIONS(4332), 1, - anon_sym_EQ_GT, - [49362] = 2, + aux_sym_iterator_specification_token1, + [47633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_EQ_GT, - [49369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 1, + ACTIONS(3737), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [49376] = 2, + [47641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + sym_identifier, + ACTIONS(3987), 1, + aux_sym_use_clause_token2, + [47651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 1, + aux_sym_iterator_filter_token1, + STATE(1405), 1, + sym_case_expression_alternative, + [47661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 1, + sym_identifier, + ACTIONS(4012), 1, + aux_sym_use_clause_token2, + [47671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2266), 1, + aux_sym_access_to_subprogram_definition_token3, + [47689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47697] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4338), 1, - anon_sym_SEMI, - [49383] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_access_to_subprogram_definition_token2, ACTIONS(4340), 1, - anon_sym_SEMI, - [49390] = 2, + aux_sym_access_to_subprogram_definition_token3, + [47707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, - anon_sym_SEMI, - [49397] = 2, + ACTIONS(4342), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47715] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4344), 1, - aux_sym_package_specification_token2, - [49404] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4346), 1, anon_sym_SEMI, - [49411] = 2, + [47725] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4348), 1, - anon_sym_RPAREN, - [49418] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4350), 1, - aux_sym_record_component_association_list_token1, - [49425] = 2, + anon_sym_SEMI, + [47735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4352), 1, - anon_sym_LT_GT, - [49432] = 2, + aux_sym_compilation_unit_token1, + [47742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4354), 1, anon_sym_SEMI, - [49439] = 2, + [47749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4356), 1, - aux_sym_compilation_unit_token1, - [49446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(213), 1, - aux_sym_subprogram_body_token1, - [49453] = 2, + anon_sym_SEMI, + [47756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4358), 1, - anon_sym_COLON, - [49460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4306), 1, - anon_sym_RPAREN, - [49467] = 2, + aux_sym_with_clause_token2, + [47763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4360), 1, - aux_sym_compilation_unit_token1, - [49474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - aux_sym_package_specification_token2, - [49481] = 2, + anon_sym_RPAREN, + [47770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4362), 1, - anon_sym_SEMI, - [49488] = 2, + anon_sym_RPAREN, + [47777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4364), 1, - aux_sym_compilation_unit_token1, - [49495] = 2, + anon_sym_EQ_GT, + [47784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4366), 1, - aux_sym_primary_null_token1, - [49502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3708), 1, - anon_sym_SEMI, - [49509] = 2, + aux_sym_with_clause_token2, + [47791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4368), 1, - aux_sym_iterated_element_association_token2, - [49516] = 2, + anon_sym_COLON, + [47798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4370), 1, - aux_sym_iterated_element_association_token2, - [49523] = 2, + anon_sym_RPAREN, + [47805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4372), 1, anon_sym_SEMI, - [49530] = 2, + [47812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4374), 1, - anon_sym_DOT_DOT, - [49537] = 2, + anon_sym_RPAREN, + [47819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4376), 1, - aux_sym_package_specification_token3, - [49544] = 2, + anon_sym_SEMI, + [47826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 1, + anon_sym_SEMI, + [47833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4378), 1, - aux_sym_subprogram_body_token1, - [49551] = 2, + anon_sym_RPAREN, + [47840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_SEMI, + [47847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4380), 1, - aux_sym_package_specification_token3, - [49558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4043), 1, - anon_sym_SEMI, - [49565] = 2, + aux_sym_loop_statement_token1, + [47854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4382), 1, anon_sym_SEMI, - [49572] = 2, + [47861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + anon_sym_RBRACK, + [47868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4384), 1, - anon_sym_SEMI, - [49579] = 2, + aux_sym_package_specification_token2, + [47875] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4386), 1, - anon_sym_SEMI, - [49586] = 2, + aux_sym_subunit_token1, + [47882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4388), 1, - anon_sym_LPAREN, - [49593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 1, anon_sym_SEMI, - [49600] = 2, + [47889] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4390), 1, - aux_sym_record_component_association_list_token1, - [49607] = 2, + aux_sym_package_specification_token3, + [47896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4392), 1, anon_sym_SEMI, - [49614] = 2, + [47903] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4394), 1, - aux_sym_range_attribute_designator_token1, - [49621] = 2, + aux_sym_with_clause_token2, + [47910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4396), 1, - aux_sym_if_expression_token1, - [49628] = 2, + anon_sym_SEMI, + [47917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4398), 1, anon_sym_SEMI, - [49635] = 2, + [47924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4400), 1, anon_sym_SEMI, - [49642] = 2, + [47931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4402), 1, - aux_sym_package_specification_token3, - [49649] = 2, + anon_sym_EQ_GT, + [47938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4404), 1, - sym_tick, - [49656] = 2, + aux_sym_package_specification_token3, + [47945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2143), 1, + anon_sym_DOT_DOT, + [47952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4406), 1, - anon_sym_LPAREN, - [49663] = 2, + anon_sym_SEMI, + [47959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4408), 1, - anon_sym_SEMI, - [49670] = 2, + anon_sym_RBRACK, + [47966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4410), 1, - anon_sym_EQ_GT, - [49677] = 2, + aux_sym_allocator_token1, + [47973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4412), 1, - anon_sym_SEMI, - [49684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_RPAREN, - [49691] = 2, + sym_tick, + [47980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4414), 1, - aux_sym_component_list_token1, - [49698] = 2, + anon_sym_SEMI, + [47987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4416), 1, - aux_sym_package_specification_token3, - [49705] = 2, + anon_sym_RPAREN, + [47994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4418), 1, anon_sym_SEMI, - [49712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_interface_type_definition_token2, - [49719] = 2, + [48001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4420), 1, - anon_sym_COLON, - [49726] = 2, + anon_sym_LT_GT, + [48008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4422), 1, - anon_sym_SEMI, - [49733] = 2, + anon_sym_RPAREN, + [48015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4424), 1, - aux_sym_loop_statement_token1, - [49740] = 2, + aux_sym_compilation_unit_token1, + [48022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4426), 1, anon_sym_SEMI, - [49747] = 2, + [48029] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4428), 1, - anon_sym_SEMI, - [49754] = 2, + anon_sym_EQ_GT, + [48036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4408), 1, + anon_sym_RPAREN, + [48043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4430), 1, - anon_sym_RPAREN, - [49761] = 2, + aux_sym_compilation_unit_token1, + [48050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4432), 1, - aux_sym_package_specification_token3, - [49768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, - sym_identifier, - [49775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4436), 1, - aux_sym_package_specification_token3, - [49782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - aux_sym_asynchronous_select_token2, - [49789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4440), 1, - sym_identifier, - [49796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 1, anon_sym_RPAREN, - [49803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4442), 1, - sym_identifier, - [49810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4444), 1, - sym_identifier, - [49817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, - anon_sym_COLON, - [49824] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_SEMI, - [49831] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4450), 1, - anon_sym_SEMI, - [49838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - aux_sym_expression_token2, - [49845] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4452), 1, - anon_sym_RPAREN, - [49852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4454), 1, - anon_sym_SEMI, - [49859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4456), 1, - anon_sym_SEMI, - [49866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4458), 1, - anon_sym_SEMI, - [49873] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4460), 1, - aux_sym_package_specification_token2, - [49880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 1, - aux_sym_asynchronous_select_token1, - [49887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4464), 1, - anon_sym_SEMI, - [49894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 1, - aux_sym_expression_token2, - [49901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_SEMI, - [49908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_SEMI, - [49915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4472), 1, - aux_sym_asynchronous_select_token2, - [49922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 1, - anon_sym_SEMI, - [49929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - aux_sym_iterator_specification_token1, - [49936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 1, - aux_sym_package_specification_token3, - [49943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4480), 1, - anon_sym_EQ_GT, - [49950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 1, - aux_sym_iterator_specification_token1, - [49957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 1, - aux_sym_attribute_designator_token2, - [49964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3949), 1, - anon_sym_SEMI, - [49971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, - anon_sym_SEMI, - [49978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 1, - anon_sym_SEMI, - [49985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - aux_sym_entry_declaration_token1, - [49992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 1, - anon_sym_SEMI, - [49999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4492), 1, - aux_sym_package_specification_token2, - [50006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 1, - anon_sym_RPAREN, - [50013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - aux_sym_asynchronous_select_token1, - [50020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4498), 1, - sym_identifier, - [50027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_SEMI, - [50034] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - aux_sym_component_list_token1, - [50041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 1, - aux_sym_asynchronous_select_token1, - [50048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 1, - anon_sym_SEMI, - [50055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 1, - anon_sym_SEMI, - [50062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_SEMI, - [50069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4510), 1, - aux_sym_package_specification_token3, - [50076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_SEMI, - [50083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - aux_sym_package_specification_token2, - [50090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - aux_sym_if_expression_token1, - [50097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4518), 1, - aux_sym_expression_token2, - [50104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 1, - aux_sym_package_specification_token3, - [50111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4522), 1, - anon_sym_SEMI, - [50118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4524), 1, - anon_sym_SEMI, - [50125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 1, - aux_sym_chunk_specification_token1, - [50132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4528), 1, - anon_sym_SEMI, - [50139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 1, - anon_sym_SEMI, - [50146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 1, - aux_sym_iterated_element_association_token2, - [50153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3889), 1, - anon_sym_SEMI, - [50160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4534), 1, - aux_sym_package_specification_token3, - [50167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 1, - anon_sym_SEMI, - [50174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 1, - anon_sym_SEMI, - [50181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4538), 1, - anon_sym_SEMI, - [50188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4540), 1, - anon_sym_RBRACK, - [50195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - anon_sym_SEMI, - [50202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - anon_sym_RPAREN, - [50209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 1, - anon_sym_SEMI, - [50216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - anon_sym_EQ_GT, - [50223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 1, - anon_sym_SEMI, - [50230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4546), 1, - aux_sym_iterated_element_association_token2, - [50237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - aux_sym_iterated_element_association_token2, - [50244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3819), 1, - anon_sym_SEMI, - [50251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4550), 1, - aux_sym_compilation_unit_token1, - [50258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 1, - aux_sym_compilation_unit_token1, - [50265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 1, - aux_sym_allocator_token1, - [50272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - aux_sym_with_clause_token2, - [50279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 1, - aux_sym_package_specification_token3, - [50286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 1, - anon_sym_RPAREN, - [50293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_EQ_GT, - [50300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_SEMI, - [50307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4564), 1, - aux_sym_accept_statement_token1, - [50314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3817), 1, - anon_sym_SEMI, - [50321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4540), 1, - anon_sym_RPAREN, - [50328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 1, - aux_sym_package_specification_token3, - [50335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 1, - anon_sym_RPAREN, - [50342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4570), 1, - anon_sym_SEMI, - [50349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_SEMI, - [50356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4574), 1, - anon_sym_SEMI, - [50363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 1, - anon_sym_EQ_GT, - [50370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4578), 1, - aux_sym_with_clause_token2, - [50377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2973), 1, - anon_sym_RPAREN, - [50384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 1, - sym_identifier, - [50391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_RPAREN, - [50398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 1, - aux_sym_package_specification_token2, - [50405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 1, - aux_sym_package_specification_token2, - [50412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 1, - aux_sym_package_specification_token3, - [50419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_SEMI, - [50426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 1, - aux_sym_package_specification_token2, - [50433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4594), 1, - anon_sym_SEMI, - [50440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4596), 1, - anon_sym_SEMI, - [50447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - aux_sym_component_list_token1, - [50454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 1, - aux_sym_subprogram_body_token1, - [50461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 1, - aux_sym_allocator_token1, - [50468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 1, - aux_sym_package_specification_token3, - [50475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4604), 1, - anon_sym_SEMI, - [50482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4606), 1, - aux_sym_package_specification_token3, - [50489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4608), 1, - aux_sym_asynchronous_select_token1, - [50496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 1, - anon_sym_SEMI, - [50503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 1, - anon_sym_RPAREN, - [50510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4614), 1, - aux_sym_expression_token2, - [50517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 1, - aux_sym_package_specification_token3, - [50524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4618), 1, - anon_sym_SEMI, - [50531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4620), 1, - aux_sym_with_clause_token2, - [50538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4622), 1, - anon_sym_RPAREN, - [50545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4624), 1, - anon_sym_RPAREN, - [50552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4624), 1, - anon_sym_RBRACK, - [50559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4626), 1, - aux_sym_with_clause_token2, - [50566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4628), 1, - anon_sym_SEMI, - [50573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4630), 1, - anon_sym_SEMI, - [50580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4632), 1, - anon_sym_SEMI, - [50587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4634), 1, - anon_sym_SEMI, - [50594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4636), 1, - aux_sym_with_clause_token2, - [50601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_SEMI, - [50608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - anon_sym_SEMI, - [50615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4638), 1, - aux_sym_package_specification_token3, - [50622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4640), 1, - anon_sym_SEMI, - [50629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4642), 1, - aux_sym_package_specification_token3, - [50636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4644), 1, - aux_sym_package_specification_token2, - [50643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_SEMI, - [50650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4648), 1, - anon_sym_SEMI, - [50657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4650), 1, - anon_sym_EQ_GT, - [50664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 1, - anon_sym_RBRACK, - [50671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4654), 1, - aux_sym_compilation_unit_token1, - [50678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4656), 1, - anon_sym_EQ_GT, - [50685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4658), 1, - anon_sym_SEMI, - [50692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4660), 1, - aux_sym_with_clause_token2, - [50699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 1, - anon_sym_RPAREN, - [50706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4662), 1, - anon_sym_RPAREN, - [50713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4664), 1, - anon_sym_SEMI, - [50720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4666), 1, - anon_sym_SEMI, - [50727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 1, - anon_sym_SEMI, - [50734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3698), 1, - anon_sym_SEMI, - [50741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4668), 1, - aux_sym_loop_statement_token1, - [50748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4670), 1, - anon_sym_SEMI, - [50755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4672), 1, - aux_sym_package_specification_token2, - [50762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4674), 1, - aux_sym_package_specification_token3, - [50769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - aux_sym_allocator_token1, - [50776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4678), 1, - anon_sym_SEMI, - [50783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4680), 1, - anon_sym_SEMI, - [50790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4682), 1, - anon_sym_RPAREN, - [50797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4684), 1, - anon_sym_SEMI, - [50804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4686), 1, - aux_sym_if_expression_token1, - [50811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4688), 1, - anon_sym_SEMI, - [50818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4001), 1, - anon_sym_SEMI, - [50825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(317), 1, - aux_sym_subprogram_body_token1, - [50832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4690), 1, - aux_sym_package_specification_token3, - [50839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4692), 1, - anon_sym_SEMI, - [50846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 1, - anon_sym_SEMI, - [50853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - anon_sym_SEMI, - [50860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1147), 1, - anon_sym_LT_GT, - [50867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4694), 1, - aux_sym_at_clause_token1, - [50874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4696), 1, - sym_tick, - [50881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4698), 1, - aux_sym_package_specification_token3, - [50888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_SEMI, - [50895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_RBRACK, - [50902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4704), 1, - anon_sym_SEMI, - [50909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4706), 1, - sym_identifier, - [50916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4708), 1, - anon_sym_SEMI, - [50923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4710), 1, - aux_sym_object_renaming_declaration_token1, - [50930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 1, - anon_sym_SEMI, - [50937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_SEMI, - [50944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4714), 1, - aux_sym_object_renaming_declaration_token1, - [50951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4716), 1, - anon_sym_SEMI, - [50958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4718), 1, - aux_sym_with_clause_token2, - [50965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4720), 1, - aux_sym_with_clause_token2, - [50972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4722), 1, - anon_sym_DOT_DOT, - [50979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 1, - aux_sym_primary_null_token1, - [50986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_SEMI, - [50993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_EQ_GT, - [51000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3602), 1, - aux_sym_package_specification_token2, - [51007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4728), 1, - sym_identifier, - [51014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4730), 1, - anon_sym_EQ_GT, - [51021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 1, - aux_sym_primary_null_token1, - [51028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4734), 1, - anon_sym_SEMI, - [51035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4736), 1, - aux_sym_allocator_token1, - [51042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - aux_sym_compilation_unit_token1, - [51049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_SEMI, - [51056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4740), 1, - aux_sym_allocator_token1, - [51063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4742), 1, - anon_sym_SEMI, - [51070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4744), 1, - aux_sym_record_component_association_list_token1, - [51077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4746), 1, - aux_sym_record_component_association_list_token1, - [51084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4748), 1, - anon_sym_EQ_GT, - [51091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4750), 1, - aux_sym_case_expression_token1, - [51098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4752), 1, - aux_sym_attribute_designator_token4, - [51105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - aux_sym_package_specification_token2, - [51112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_SEMI, - [51119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3576), 1, - anon_sym_SEMI, - [51126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - aux_sym_private_type_declaration_token1, - [51133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4758), 1, - sym_identifier, - [51140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_SEMI, - [51147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4760), 1, - aux_sym_with_clause_token2, - [51154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4762), 1, - aux_sym_loop_statement_token1, - [51161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4764), 1, - anon_sym_SEMI, - [51168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - aux_sym_compilation_unit_token1, - [51175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4768), 1, - aux_sym_compilation_unit_token1, - [51182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4770), 1, - anon_sym_SEMI, - [51189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_SEMI, - [51196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4169), 1, - anon_sym_SEMI, - [51203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4774), 1, - anon_sym_SEMI, - [51210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(215), 1, - aux_sym_private_type_declaration_token1, - [51217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_SEMI, - [51224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4778), 1, - anon_sym_SEMI, - [51231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4780), 1, - anon_sym_SEMI, - [51238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4782), 1, - anon_sym_RPAREN, - [51245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4784), 1, - aux_sym_chunk_specification_token1, - [51252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 1, - aux_sym_package_specification_token3, - [51259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4786), 1, - aux_sym_package_specification_token2, - [51266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4788), 1, - aux_sym_loop_statement_token1, - [51273] = 2, + [48057] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(273), 1, aux_sym_subprogram_body_token1, - [51280] = 2, + [48064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, - aux_sym_package_specification_token2, - [51287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4792), 1, - aux_sym_package_specification_token3, - [51294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4794), 1, + ACTIONS(3781), 1, anon_sym_SEMI, - [51301] = 2, + [48071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 1, - aux_sym_record_component_association_list_token1, - [51308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4798), 1, + ACTIONS(3773), 1, anon_sym_SEMI, - [51315] = 2, + [48078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_SEMI, - [51322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3712), 1, - anon_sym_SEMI, - [51329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4802), 1, - anon_sym_DOT_DOT, - [51336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_RPAREN, - [51343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACK, - [51350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4808), 1, - anon_sym_RPAREN, - [51357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4810), 1, - aux_sym_component_list_token1, - [51364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4812), 1, - anon_sym_SEMI, - [51371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 1, - anon_sym_SEMI, - [51378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4816), 1, - sym_identifier, - [51385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - anon_sym_SEMI, - [51392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4818), 1, - anon_sym_SEMI, - [51399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4820), 1, - anon_sym_COLON, - [51406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_SEMI, - [51413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4824), 1, - aux_sym_with_clause_token2, - [51420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4826), 1, - aux_sym_compilation_unit_token1, - [51427] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, - aux_sym_compilation_unit_token1, - [51434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - aux_sym_expression_token2, - [51441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_package_specification_token3, - [51448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4834), 1, - aux_sym_allocator_token1, - [51455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_SEMI, - [51462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3302), 1, - aux_sym_allocator_token1, - [51469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4838), 1, - aux_sym_subprogram_body_token1, - [51476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4840), 1, - anon_sym_SEMI, - [51483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4842), 1, - anon_sym_GT_GT, - [51490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 1, - anon_sym_SEMI, - [51497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4846), 1, - anon_sym_SEMI, - [51504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4848), 1, - aux_sym_expression_token2, - [51511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4850), 1, - anon_sym_SEMI, - [51518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4852), 1, - anon_sym_SEMI, - [51525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4854), 1, - aux_sym_package_specification_token3, - [51532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4856), 1, - anon_sym_COLON, - [51539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4858), 1, - anon_sym_SEMI, - [51546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4860), 1, - sym_identifier, - [51553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4862), 1, - anon_sym_SEMI, - [51560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4864), 1, - anon_sym_SEMI, - [51567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4866), 1, - anon_sym_EQ_GT, - [51574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4868), 1, - anon_sym_RPAREN, - [51581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4870), 1, - sym_identifier, - [51588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4872), 1, - aux_sym_loop_statement_token1, - [51595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4874), 1, - sym_identifier, - [51602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4876), 1, - anon_sym_SEMI, - [51609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4878), 1, - aux_sym_package_specification_token3, - [51616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4880), 1, - anon_sym_SEMI, - [51623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4882), 1, - aux_sym_package_specification_token2, - [51630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 1, - aux_sym_subprogram_body_token1, - [51637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4884), 1, - anon_sym_SEMI, - [51644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4886), 1, - anon_sym_RPAREN, - [51651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4888), 1, - anon_sym_SEMI, - [51658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4890), 1, - sym_identifier, - [51665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4892), 1, - anon_sym_SEMI, - [51672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4894), 1, - aux_sym_compilation_unit_token1, - [51679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4896), 1, - sym_identifier, - [51686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4898), 1, - aux_sym_package_body_token1, - [51693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - aux_sym_package_body_token1, - [51700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - aux_sym_with_clause_token2, - [51707] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4904), 1, - aux_sym_package_body_token1, - [51714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4906), 1, - anon_sym_SEMI, - [51721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - anon_sym_RPAREN, - [51728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_SEMI, - [51735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4912), 1, - anon_sym_RPAREN, - [51742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 1, - anon_sym_SEMI, - [51749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4914), 1, - anon_sym_SEMI, - [51756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 1, - aux_sym_subprogram_body_token1, - [51763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4916), 1, - aux_sym_package_specification_token3, - [51770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4918), 1, - aux_sym_package_specification_token3, - [51777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_COLON, - [51784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_EQ_GT, - [51791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 1, - anon_sym_SEMI, - [51798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4926), 1, - anon_sym_SEMI, - [51805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - aux_sym_package_specification_token3, - [51812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 1, - anon_sym_SEMI, - [51819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3983), 1, - anon_sym_SEMI, - [51826] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4932), 1, - anon_sym_SEMI, - [51833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4934), 1, - aux_sym_compilation_unit_token1, - [51840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - aux_sym_package_specification_token3, - [51847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 1, - aux_sym_component_list_token1, - [51854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, - aux_sym_with_clause_token2, - [51861] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4942), 1, - aux_sym_asynchronous_select_token1, - [51868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, - anon_sym_SEMI, - [51875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, - aux_sym_with_clause_token2, - [51882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, - anon_sym_SEMI, - [51889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 1, - aux_sym_with_clause_token2, - [51896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, - aux_sym_package_specification_token3, - [51903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 1, - anon_sym_SEMI, - [51910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 1, - anon_sym_SEMI, - [51917] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 1, - aux_sym_asynchronous_select_token1, - [51924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_SEMI, - [51931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4962), 1, - aux_sym_use_clause_token2, - [51938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4964), 1, - aux_sym_loop_statement_token1, - [51945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 1, - anon_sym_SEMI, - [51952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - aux_sym_package_specification_token3, - [51959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - aux_sym_asynchronous_select_token1, - [51966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - aux_sym_result_profile_token1, - [51973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4974), 1, - anon_sym_RBRACK, - [51980] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, - anon_sym_SEMI, - [51987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4978), 1, - anon_sym_SEMI, - [51994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 1, - aux_sym_if_expression_token1, - [52001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4982), 1, - aux_sym_package_specification_token2, - [52008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4984), 1, - anon_sym_SEMI, - [52015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - anon_sym_SEMI, - [52022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 1, - anon_sym_SEMI, - [52029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 1, - aux_sym_compilation_unit_token1, - [52036] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 1, - sym_identifier, - [52043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - anon_sym_RPAREN, - [52050] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - aux_sym_package_specification_token3, - [52057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - sym_identifier, - [52064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_SEMI, - [52071] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5000), 1, - aux_sym_subprogram_body_token1, - [52078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_SEMI, - [52085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3048), 1, - aux_sym_loop_statement_token1, - [52092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, + ACTIONS(4434), 1, aux_sym_iterated_element_association_token2, - [52099] = 2, + [48085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(4436), 1, + aux_sym_iterated_element_association_token2, + [48092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 1, anon_sym_SEMI, - [52106] = 2, + [48099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - aux_sym_compilation_unit_token1, - [52113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_LT_GT, - [52120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 1, - anon_sym_LT_GT, - [52127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 1, - anon_sym_LT_GT, - [52134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - anon_sym_LT_GT, - [52141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5014), 1, - anon_sym_SEMI, - [52148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 1, - anon_sym_SEMI, - [52155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5018), 1, - sym_tick, - [52162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_SEMI, - [52169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5022), 1, - anon_sym_COLON, - [52176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5024), 1, - anon_sym_LT_GT, - [52183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_EQ_GT, - [52190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 1, - aux_sym_allocator_token1, - [52197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5030), 1, + ACTIONS(4440), 1, aux_sym_package_specification_token3, - [52204] = 2, + [48106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 1, + anon_sym_SEMI, + [48113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + aux_sym_subprogram_body_token1, + [48120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + sym_identifier, + [48127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 1, + anon_sym_RPAREN, + [48134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_SEMI, + [48141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4450), 1, + anon_sym_SEMI, + [48148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4452), 1, + anon_sym_SEMI, + [48155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + anon_sym_SEMI, + [48162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_SEMI, + [48169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4454), 1, + aux_sym_primary_null_token1, + [48176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + aux_sym_if_expression_token1, + [48183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4458), 1, + aux_sym_package_specification_token3, + [48190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4460), 1, + anon_sym_SEMI, + [48197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, + aux_sym_package_specification_token3, + [48204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 1, + aux_sym_subprogram_body_token1, + [48211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_SEMI, + [48218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 1, + anon_sym_SEMI, + [48225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_LPAREN, + [48232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 1, + aux_sym_component_list_token1, + [48239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + aux_sym_package_specification_token3, + [48246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_EQ_GT, + [48253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 1, + anon_sym_SEMI, + [48260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4480), 1, + anon_sym_SEMI, + [48267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 1, + anon_sym_SEMI, + [48274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_LPAREN, + [48281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_SEMI, + [48288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_EQ_GT, + [48295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_SEMI, + [48302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + anon_sym_SEMI, + [48309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4323), 1, + anon_sym_SEMI, + [48316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_RPAREN, + [48323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_SEMI, + [48330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 1, + aux_sym_record_component_association_list_token1, + [48337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_SEMI, + [48344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 1, + aux_sym_attribute_designator_token4, + [48351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 1, + aux_sym_package_specification_token3, + [48358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 1, + aux_sym_with_clause_token2, + [48365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_SEMI, + [48372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 1, + anon_sym_SEMI, + [48379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 1, + aux_sym_loop_statement_token1, + [48386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 1, + anon_sym_RPAREN, + [48393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 1, + anon_sym_SEMI, + [48400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_SEMI, + [48407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 1, + anon_sym_SEMI, + [48414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_SEMI, + [48421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 1, + aux_sym_package_specification_token2, + [48428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 1, + anon_sym_SEMI, + [48435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4524), 1, + aux_sym_asynchronous_select_token2, + [48442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 1, + anon_sym_SEMI, + [48449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 1, + aux_sym_with_clause_token2, + [48456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4530), 1, + aux_sym_record_component_association_list_token1, + [48463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + aux_sym_interface_type_definition_token2, + [48470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 1, + anon_sym_SEMI, + [48477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 1, + aux_sym_package_specification_token3, + [48484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 1, + aux_sym_expression_token2, + [48491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 1, + anon_sym_SEMI, + [48498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 1, + anon_sym_SEMI, + [48505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 1, + aux_sym_package_specification_token2, + [48512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + aux_sym_subprogram_body_token1, + [48519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 1, + sym_identifier, + [48526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 1, + sym_identifier, + [48533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 1, + anon_sym_SEMI, + [48540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, + aux_sym_allocator_token1, + [48547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_compilation_unit_token1, + [48554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 1, + aux_sym_asynchronous_select_token1, + [48561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(209), 1, + aux_sym_private_type_declaration_token1, + [48568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 1, + anon_sym_SEMI, + [48575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 1, + aux_sym_asynchronous_select_token2, + [48582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + aux_sym_allocator_token1, + [48589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_RPAREN, + [48596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 1, + anon_sym_EQ_GT, + [48603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 1, + anon_sym_SEMI, + [48610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 1, + aux_sym_package_specification_token3, + [48617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4562), 1, + anon_sym_SEMI, + [48624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4564), 1, + aux_sym_with_clause_token2, + [48631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3864), 1, + anon_sym_SEMI, + [48638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 1, + anon_sym_SEMI, + [48645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 1, + aux_sym_record_component_association_list_token1, + [48652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 1, + aux_sym_package_specification_token2, + [48659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_SEMI, + [48666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4574), 1, + sym_identifier, + [48673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 1, + anon_sym_SEMI, + [48680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4281), 1, + anon_sym_SEMI, + [48687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 1, + anon_sym_RPAREN, + [48694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 1, + anon_sym_SEMI, + [48701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 1, + aux_sym_package_specification_token3, + [48708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 1, + anon_sym_SEMI, + [48715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 1, + anon_sym_EQ_GT, + [48722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 1, + aux_sym_package_specification_token2, + [48729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 1, + aux_sym_package_specification_token3, + [48736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_SEMI, + [48743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, + anon_sym_SEMI, + [48750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 1, + aux_sym_allocator_token1, + [48757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 1, + anon_sym_RPAREN, + [48764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_SEMI, + [48771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4163), 1, anon_sym_SEMI, - [52211] = 2, + [48778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, - ts_builtin_sym_end, - [52218] = 2, + ACTIONS(4255), 1, + aux_sym_compilation_unit_token1, + [48785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(3742), 1, + anon_sym_SEMI, + [48792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_SEMI, + [48799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 1, + aux_sym_iterated_element_association_token2, + [48806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 1, + anon_sym_DOT_DOT, + [48813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 1, + aux_sym_with_clause_token2, + [48820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 1, + aux_sym_compilation_unit_token1, + [48827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_SEMI, + [48834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 1, + anon_sym_SEMI, + [48841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 1, + aux_sym_compilation_unit_token1, + [48848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_SEMI, + [48855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 1, + aux_sym_chunk_specification_token1, + [48862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + aux_sym_private_type_declaration_token1, + [48869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 1, + anon_sym_RBRACK, + [48876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 1, + anon_sym_SEMI, + [48883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 1, + anon_sym_SEMI, + [48890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 1, + anon_sym_SEMI, + [48897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 1, + anon_sym_SEMI, + [48904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 1, + aux_sym_iterated_element_association_token2, + [48911] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4622), 1, + aux_sym_with_clause_token2, + [48918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 1, + aux_sym_component_list_token1, + [48925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4626), 1, sym_identifier, - [52225] = 2, + [48932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, + ACTIONS(4628), 1, anon_sym_RPAREN, - [52232] = 2, + [48939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - sym_identifier, - [52239] = 2, + ACTIONS(4630), 1, + aux_sym_package_specification_token2, + [48946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - sym_identifier, - [52246] = 2, + ACTIONS(4632), 1, + aux_sym_package_specification_token2, + [48953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, - sym_identifier, - [52253] = 2, + ACTIONS(4634), 1, + anon_sym_EQ_GT, + [48960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(3897), 1, anon_sym_SEMI, - [52260] = 2, + [48967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 1, + ACTIONS(3413), 1, anon_sym_SEMI, - [52267] = 2, + [48974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 1, + anon_sym_SEMI, + [48981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4638), 1, + aux_sym_asynchronous_select_token1, + [48988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 1, + sym_identifier, + [48995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 1, + anon_sym_RPAREN, + [49002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4642), 1, + anon_sym_COLON, + [49009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 1, + anon_sym_SEMI, + [49016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4646), 1, + aux_sym_package_specification_token3, + [49023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, + anon_sym_RPAREN, + [49030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4650), 1, + anon_sym_SEMI, + [49037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 1, + aux_sym_package_specification_token3, + [49044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 1, + anon_sym_RPAREN, + [49051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 1, + aux_sym_expression_token2, + [49058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 1, + anon_sym_EQ_GT, + [49065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4658), 1, + aux_sym_package_specification_token3, + [49072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 1, + anon_sym_RPAREN, + [49079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_SEMI, + [49086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 1, + anon_sym_RPAREN, + [49093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 1, + anon_sym_RBRACK, + [49100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4664), 1, + anon_sym_SEMI, + [49107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4666), 1, + anon_sym_SEMI, + [49114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_SEMI, + [49121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4670), 1, + anon_sym_SEMI, + [49128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 1, + anon_sym_SEMI, + [49135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + aux_sym_with_clause_token2, + [49142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_SEMI, + [49149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 1, + anon_sym_SEMI, + [49156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_COLON, + [49163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4680), 1, + aux_sym_component_list_token1, + [49170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + aux_sym_package_specification_token3, + [49177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4684), 1, + aux_sym_package_specification_token3, + [49184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + aux_sym_allocator_token1, + [49191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 1, + anon_sym_SEMI, + [49198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3933), 1, + anon_sym_SEMI, + [49205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 1, + aux_sym_record_component_association_list_token1, + [49212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 1, + aux_sym_compilation_unit_token1, + [49219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 1, + aux_sym_allocator_token1, + [49226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 1, + anon_sym_SEMI, + [49233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 1, + aux_sym_with_clause_token2, + [49240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 1, + aux_sym_allocator_token1, + [49247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 1, + anon_sym_SEMI, + [49254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 1, + aux_sym_accept_statement_token1, + [49261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4700), 1, + anon_sym_RBRACK, + [49268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 1, + anon_sym_RPAREN, + [49275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4704), 1, + aux_sym_package_specification_token2, + [49282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 1, + aux_sym_package_body_token1, + [49289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 1, + anon_sym_SEMI, + [49296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4708), 1, + anon_sym_SEMI, + [49303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 1, + aux_sym_package_body_token1, + [49310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4712), 1, + aux_sym_package_specification_token3, + [49317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 1, + anon_sym_SEMI, + [49324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_SEMI, + [49331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 1, + anon_sym_SEMI, + [49338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 1, + anon_sym_DOT_DOT, + [49345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 1, + aux_sym_if_expression_token1, + [49352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4724), 1, + aux_sym_package_body_token1, + [49359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 1, + anon_sym_SEMI, + [49366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 1, + aux_sym_package_specification_token3, + [49373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 1, + aux_sym_package_specification_token3, + [49380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 1, + aux_sym_package_specification_token2, + [49387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 1, + anon_sym_SEMI, + [49394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 1, + anon_sym_SEMI, + [49401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 1, + anon_sym_LT_GT, + [49408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4738), 1, + anon_sym_SEMI, + [49415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4740), 1, + anon_sym_SEMI, + [49422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4742), 1, + anon_sym_EQ_GT, + [49429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 1, + aux_sym_subprogram_body_token1, + [49436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 1, + anon_sym_SEMI, + [49443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 1, + aux_sym_at_clause_token1, + [49450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4750), 1, + sym_tick, + [49457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4752), 1, + anon_sym_SEMI, + [49464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3946), 1, + aux_sym_package_specification_token2, + [49471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 1, + anon_sym_SEMI, + [49478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_SEMI, + [49485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4758), 1, + anon_sym_RBRACK, + [49492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 1, + aux_sym_package_specification_token3, + [49499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_COLON, + [49506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 1, + aux_sym_package_specification_token3, + [49513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 1, + anon_sym_DOT_DOT, + [49520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 1, + anon_sym_SEMI, + [49527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4770), 1, + aux_sym_object_renaming_declaration_token1, + [49534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 1, + anon_sym_SEMI, + [49541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 1, + anon_sym_SEMI, + [49548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 1, + aux_sym_object_renaming_declaration_token1, + [49555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + aux_sym_with_clause_token2, + [49562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 1, + aux_sym_primary_null_token1, + [49569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4780), 1, + anon_sym_SEMI, + [49576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 1, + aux_sym_package_specification_token3, + [49583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + aux_sym_expression_token2, + [49590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4786), 1, + anon_sym_SEMI, + [49597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 1, + anon_sym_SEMI, + [49604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4790), 1, + aux_sym_if_expression_token1, + [49611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 1, + anon_sym_RPAREN, + [49618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_RPAREN, + [49625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 1, + anon_sym_EQ_GT, + [49632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + aux_sym_case_expression_token1, + [49639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_SEMI, + [49646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + aux_sym_loop_statement_token1, + [49653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_SEMI, + [49660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4806), 1, + aux_sym_package_specification_token3, + [49667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4808), 1, + aux_sym_record_component_association_list_token1, + [49674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4810), 1, + aux_sym_primary_null_token1, + [49681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + aux_sym_package_specification_token3, + [49688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4814), 1, + aux_sym_with_clause_token2, + [49695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 1, + aux_sym_package_specification_token2, + [49702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + anon_sym_SEMI, + [49709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + aux_sym_compilation_unit_token1, + [49716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + aux_sym_compilation_unit_token1, + [49723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4824), 1, + anon_sym_RPAREN, + [49730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 1, + anon_sym_SEMI, + [49737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + sym_identifier, + [49744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_SEMI, + [49751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_range_attribute_designator_token1, + [49758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + sym_identifier, + [49765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + aux_sym_loop_statement_token1, + [49772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_SEMI, + [49779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 1, + sym_identifier, + [49786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 1, + aux_sym_chunk_specification_token1, + [49793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 1, + anon_sym_SEMI, + [49800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_SEMI, + [49807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4848), 1, + aux_sym_package_specification_token2, + [49814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(271), 1, + aux_sym_subprogram_body_token1, + [49821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 1, + aux_sym_package_specification_token2, + [49828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_SEMI, + [49835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 1, + sym_identifier, + [49842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4856), 1, + anon_sym_SEMI, + [49849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 1, + anon_sym_SEMI, + [49856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4860), 1, + anon_sym_RPAREN, + [49863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 1, + anon_sym_SEMI, + [49870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_RPAREN, + [49877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + anon_sym_RPAREN, + [49884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4868), 1, + aux_sym_package_specification_token2, + [49891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 1, + aux_sym_loop_statement_token1, + [49898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4872), 1, + aux_sym_package_specification_token3, + [49905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 1, + anon_sym_SEMI, + [49912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, + anon_sym_SEMI, + [49919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3294), 1, + anon_sym_SEMI, + [49926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 1, + anon_sym_SEMI, + [49933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_SEMI, + [49940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4880), 1, + anon_sym_SEMI, + [49947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + anon_sym_SEMI, + [49954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 1, + aux_sym_with_clause_token2, + [49961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4884), 1, + aux_sym_compilation_unit_token1, + [49968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 1, + aux_sym_compilation_unit_token1, + [49975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_RPAREN, + [49982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + aux_sym_asynchronous_select_token1, + [49989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 1, + sym_tick, + [49996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_SEMI, + [50003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_SEMI, + [50010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 1, + anon_sym_SEMI, + [50017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + aux_sym_expression_token2, + [50024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, + aux_sym_package_specification_token2, + [50031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 1, + anon_sym_SEMI, + [50038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + anon_sym_SEMI, + [50045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, + anon_sym_EQ_GT, + [50052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 1, + aux_sym_component_list_token1, + [50059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 1, + sym_identifier, + [50066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_SEMI, + [50073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + aux_sym_expression_token2, + [50080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + anon_sym_SEMI, + [50087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 1, + anon_sym_RPAREN, + [50094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 1, + anon_sym_GT_GT, + [50101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 1, + anon_sym_COLON, + [50108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + sym_identifier, + [50115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + aux_sym_package_specification_token3, + [50122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + sym_identifier, + [50129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 1, + anon_sym_COLON, + [50136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 1, + aux_sym_package_specification_token3, + [50143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 1, + anon_sym_SEMI, + [50150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, + aux_sym_component_list_token1, + [50157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_SEMI, + [50164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 1, + sym_identifier, + [50171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + sym_identifier, + [50178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 1, + anon_sym_SEMI, + [50185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, + aux_sym_asynchronous_select_token1, + [50192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 1, + aux_sym_package_specification_token2, + [50199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, + aux_sym_expression_token2, + [50206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 1, + anon_sym_SEMI, + [50213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 1, + aux_sym_compilation_unit_token1, + [50220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + aux_sym_package_specification_token2, + [50227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 1, + aux_sym_package_specification_token3, + [50234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 1, + aux_sym_asynchronous_select_token1, + [50241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + aux_sym_with_clause_token2, + [50248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(275), 1, aux_sym_subprogram_body_token1, - [52274] = 2, + [50255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_SEMI, + [50262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + sym_identifier, + [50269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_SEMI, + [50276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + sym_identifier, + [50283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 1, + aux_sym_iterator_specification_token1, + [50290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 1, + aux_sym_package_specification_token3, + [50297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(325), 1, + aux_sym_subprogram_body_token1, + [50304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + aux_sym_package_specification_token3, + [50311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 1, + aux_sym_asynchronous_select_token1, + [50318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + aux_sym_iterator_specification_token1, + [50325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 1, + aux_sym_package_specification_token3, + [50332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + aux_sym_result_profile_token1, + [50339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, + aux_sym_package_specification_token3, + [50346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 1, + anon_sym_EQ_GT, + [50353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_SEMI, + [50360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + aux_sym_iterated_element_association_token2, + [50367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 1, + anon_sym_SEMI, + [50374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, + aux_sym_compilation_unit_token1, + [50381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 1, + aux_sym_if_expression_token1, + [50388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3783), 1, + anon_sym_COMMA, + [50395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + aux_sym_with_clause_token2, + [50402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + aux_sym_package_specification_token3, + [50409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_SEMI, + [50416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_RPAREN, + [50423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_SEMI, + [50430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 1, + anon_sym_SEMI, + [50437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + anon_sym_SEMI, + [50444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + anon_sym_SEMI, + [50451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 1, + aux_sym_with_clause_token2, + [50458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 1, + anon_sym_SEMI, + [50465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 1, + anon_sym_SEMI, + [50472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3754), 1, + anon_sym_SEMI, + [50479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 1, + anon_sym_SEMI, + [50486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_SEMI, + [50493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + aux_sym_use_clause_token2, + [50500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 1, + aux_sym_attribute_designator_token2, + [50507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + anon_sym_SEMI, + [50514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + aux_sym_loop_statement_token1, + [50521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_SEMI, + [50528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + aux_sym_iterated_element_association_token2, + [50535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 1, + anon_sym_SEMI, + [50542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_RBRACK, + [50549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + anon_sym_SEMI, + [50556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 1, + aux_sym_entry_declaration_token1, + [50563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 1, + anon_sym_SEMI, + [50570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 1, + aux_sym_compilation_unit_token1, + [50577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, + anon_sym_LT_GT, + [50584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 1, + anon_sym_RPAREN, + [50591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5046), 1, - anon_sym_EQ_GT, - [52281] = 2, + aux_sym_package_specification_token3, + [50598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5048), 1, - aux_sym_package_specification_token3, - [52288] = 2, + anon_sym_LT_GT, + [50605] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5050), 1, - sym_identifier, - [52295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4215), 1, anon_sym_SEMI, - [52302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4237), 1, - anon_sym_SEMI, - [52309] = 2, + [50612] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5052), 1, - anon_sym_SEMI, - [52316] = 2, + aux_sym_subprogram_body_token1, + [50619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_COMMA, - [52323] = 2, + ACTIONS(3983), 1, + anon_sym_RPAREN, + [50626] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5054), 1, - anon_sym_SEMI, - [52330] = 2, + sym_identifier, + [50633] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5056), 1, - anon_sym_SEMI, - [52337] = 2, + anon_sym_LT_GT, + [50640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5058), 1, - anon_sym_RPAREN, - [52344] = 2, + anon_sym_LT_GT, + [50647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5060), 1, - aux_sym_global_mode_token1, - [52351] = 2, + aux_sym_compilation_unit_token1, + [50654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3072), 1, + aux_sym_loop_statement_token1, + [50661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5062), 1, - aux_sym_with_clause_token2, - [52358] = 2, + anon_sym_LT_GT, + [50668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5064), 1, - anon_sym_LPAREN, - [52365] = 2, + anon_sym_EQ_GT, + [50675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5066), 1, - sym_identifier, - [52372] = 2, + aux_sym_package_specification_token2, + [50682] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5068), 1, + aux_sym_allocator_token1, + [50689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_SEMI, + [50696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 1, + anon_sym_SEMI, + [50703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + anon_sym_SEMI, + [50710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5076), 1, + anon_sym_SEMI, + [50717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 1, + sym_tick, + [50724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + aux_sym_with_clause_token2, + [50731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 1, + anon_sym_SEMI, + [50738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5084), 1, + aux_sym_package_specification_token3, + [50745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_SEMI, + [50752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 1, + anon_sym_COLON, + [50759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + ts_builtin_sym_end, + [50766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(327), 1, + aux_sym_subprogram_body_token1, + [50773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 1, + sym_identifier, + [50780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5092), 1, + sym_identifier, + [50787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 1, + sym_identifier, + [50794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5096), 1, + anon_sym_SEMI, + [50801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_SEMI, + [50808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 1, + sym_identifier, + [50815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, + anon_sym_RPAREN, + [50822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + aux_sym_package_specification_token3, + [50829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 1, aux_sym_case_expression_token1, + [50836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 1, + sym_identifier, + [50843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 1, + anon_sym_SEMI, + [50850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5108), 1, + anon_sym_SEMI, + [50857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5110), 1, + anon_sym_EQ_GT, + [50864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_SEMI, + [50871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 1, + aux_sym_asynchronous_select_token1, + [50878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5116), 1, + anon_sym_SEMI, + [50885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 1, + aux_sym_global_mode_token1, + [50892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, + anon_sym_EQ_GT, + [50899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 1, + anon_sym_LPAREN, + [50906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5124), 1, + sym_identifier, + [50913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5126), 1, + anon_sym_SEMI, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(57)] = 0, - [SMALL_STATE(58)] = 127, - [SMALL_STATE(59)] = 254, - [SMALL_STATE(60)] = 381, - [SMALL_STATE(61)] = 508, - [SMALL_STATE(62)] = 635, - [SMALL_STATE(63)] = 762, - [SMALL_STATE(64)] = 889, - [SMALL_STATE(65)] = 1016, - [SMALL_STATE(66)] = 1143, - [SMALL_STATE(67)] = 1270, - [SMALL_STATE(68)] = 1397, - [SMALL_STATE(69)] = 1524, - [SMALL_STATE(70)] = 1651, - [SMALL_STATE(71)] = 1778, - [SMALL_STATE(72)] = 1900, - [SMALL_STATE(73)] = 2020, - [SMALL_STATE(74)] = 2149, - [SMALL_STATE(75)] = 2266, - [SMALL_STATE(76)] = 2383, - [SMALL_STATE(77)] = 2500, - [SMALL_STATE(78)] = 2615, - [SMALL_STATE(79)] = 2732, - [SMALL_STATE(80)] = 2846, - [SMALL_STATE(81)] = 2960, - [SMALL_STATE(82)] = 3074, - [SMALL_STATE(83)] = 3188, - [SMALL_STATE(84)] = 3302, - [SMALL_STATE(85)] = 3430, - [SMALL_STATE(86)] = 3550, - [SMALL_STATE(87)] = 3664, - [SMALL_STATE(88)] = 3794, - [SMALL_STATE(89)] = 3924, - [SMALL_STATE(90)] = 4043, - [SMALL_STATE(91)] = 4170, - [SMALL_STATE(92)] = 4294, - [SMALL_STATE(93)] = 4418, - [SMALL_STATE(94)] = 4537, - [SMALL_STATE(95)] = 4658, - [SMALL_STATE(96)] = 4774, - [SMALL_STATE(97)] = 4886, - [SMALL_STATE(98)] = 4994, - [SMALL_STATE(99)] = 5101, - [SMALL_STATE(100)] = 5208, - [SMALL_STATE(101)] = 5315, - [SMALL_STATE(102)] = 5419, - [SMALL_STATE(103)] = 5522, - [SMALL_STATE(104)] = 5578, - [SMALL_STATE(105)] = 5634, - [SMALL_STATE(106)] = 5690, - [SMALL_STATE(107)] = 5746, - [SMALL_STATE(108)] = 5802, - [SMALL_STATE(109)] = 5858, - [SMALL_STATE(110)] = 5914, - [SMALL_STATE(111)] = 6014, - [SMALL_STATE(112)] = 6070, - [SMALL_STATE(113)] = 6126, - [SMALL_STATE(114)] = 6182, - [SMALL_STATE(115)] = 6238, - [SMALL_STATE(116)] = 6294, - [SMALL_STATE(117)] = 6350, - [SMALL_STATE(118)] = 6406, - [SMALL_STATE(119)] = 6462, - [SMALL_STATE(120)] = 6518, - [SMALL_STATE(121)] = 6574, - [SMALL_STATE(122)] = 6630, - [SMALL_STATE(123)] = 6686, - [SMALL_STATE(124)] = 6742, - [SMALL_STATE(125)] = 6798, - [SMALL_STATE(126)] = 6854, - [SMALL_STATE(127)] = 6910, - [SMALL_STATE(128)] = 6966, - [SMALL_STATE(129)] = 7022, - [SMALL_STATE(130)] = 7078, - [SMALL_STATE(131)] = 7178, - [SMALL_STATE(132)] = 7234, - [SMALL_STATE(133)] = 7290, - [SMALL_STATE(134)] = 7346, - [SMALL_STATE(135)] = 7402, - [SMALL_STATE(136)] = 7458, - [SMALL_STATE(137)] = 7514, - [SMALL_STATE(138)] = 7570, - [SMALL_STATE(139)] = 7670, - [SMALL_STATE(140)] = 7726, - [SMALL_STATE(141)] = 7782, - [SMALL_STATE(142)] = 7838, - [SMALL_STATE(143)] = 7894, - [SMALL_STATE(144)] = 7950, - [SMALL_STATE(145)] = 8006, - [SMALL_STATE(146)] = 8062, - [SMALL_STATE(147)] = 8118, - [SMALL_STATE(148)] = 8174, - [SMALL_STATE(149)] = 8230, - [SMALL_STATE(150)] = 8286, - [SMALL_STATE(151)] = 8342, - [SMALL_STATE(152)] = 8398, - [SMALL_STATE(153)] = 8454, - [SMALL_STATE(154)] = 8510, - [SMALL_STATE(155)] = 8566, - [SMALL_STATE(156)] = 8622, - [SMALL_STATE(157)] = 8678, - [SMALL_STATE(158)] = 8734, - [SMALL_STATE(159)] = 8790, - [SMALL_STATE(160)] = 8846, - [SMALL_STATE(161)] = 8902, - [SMALL_STATE(162)] = 8958, - [SMALL_STATE(163)] = 9014, - [SMALL_STATE(164)] = 9070, - [SMALL_STATE(165)] = 9126, - [SMALL_STATE(166)] = 9182, - [SMALL_STATE(167)] = 9238, - [SMALL_STATE(168)] = 9294, - [SMALL_STATE(169)] = 9393, - [SMALL_STATE(170)] = 9490, - [SMALL_STATE(171)] = 9589, - [SMALL_STATE(172)] = 9684, - [SMALL_STATE(173)] = 9781, - [SMALL_STATE(174)] = 9880, - [SMALL_STATE(175)] = 9977, - [SMALL_STATE(176)] = 10072, - [SMALL_STATE(177)] = 10166, - [SMALL_STATE(178)] = 10260, - [SMALL_STATE(179)] = 10354, - [SMALL_STATE(180)] = 10448, - [SMALL_STATE(181)] = 10504, - [SMALL_STATE(182)] = 10598, - [SMALL_STATE(183)] = 10692, - [SMALL_STATE(184)] = 10752, - [SMALL_STATE(185)] = 10846, - [SMALL_STATE(186)] = 10940, - [SMALL_STATE(187)] = 11034, - [SMALL_STATE(188)] = 11128, - [SMALL_STATE(189)] = 11222, - [SMALL_STATE(190)] = 11316, - [SMALL_STATE(191)] = 11369, - [SMALL_STATE(192)] = 11460, - [SMALL_STATE(193)] = 11513, - [SMALL_STATE(194)] = 11604, - [SMALL_STATE(195)] = 11695, - [SMALL_STATE(196)] = 11786, - [SMALL_STATE(197)] = 11839, - [SMALL_STATE(198)] = 11930, - [SMALL_STATE(199)] = 12021, - [SMALL_STATE(200)] = 12074, - [SMALL_STATE(201)] = 12165, - [SMALL_STATE(202)] = 12256, - [SMALL_STATE(203)] = 12347, - [SMALL_STATE(204)] = 12438, - [SMALL_STATE(205)] = 12529, - [SMALL_STATE(206)] = 12620, - [SMALL_STATE(207)] = 12673, - [SMALL_STATE(208)] = 12764, - [SMALL_STATE(209)] = 12855, - [SMALL_STATE(210)] = 12946, - [SMALL_STATE(211)] = 13039, - [SMALL_STATE(212)] = 13130, - [SMALL_STATE(213)] = 13221, - [SMALL_STATE(214)] = 13312, - [SMALL_STATE(215)] = 13403, - [SMALL_STATE(216)] = 13456, - [SMALL_STATE(217)] = 13509, - [SMALL_STATE(218)] = 13600, - [SMALL_STATE(219)] = 13653, - [SMALL_STATE(220)] = 13744, - [SMALL_STATE(221)] = 13835, - [SMALL_STATE(222)] = 13926, - [SMALL_STATE(223)] = 13979, - [SMALL_STATE(224)] = 14032, - [SMALL_STATE(225)] = 14123, - [SMALL_STATE(226)] = 14214, - [SMALL_STATE(227)] = 14267, - [SMALL_STATE(228)] = 14358, - [SMALL_STATE(229)] = 14411, - [SMALL_STATE(230)] = 14502, - [SMALL_STATE(231)] = 14555, - [SMALL_STATE(232)] = 14646, - [SMALL_STATE(233)] = 14737, - [SMALL_STATE(234)] = 14790, - [SMALL_STATE(235)] = 14843, - [SMALL_STATE(236)] = 14896, - [SMALL_STATE(237)] = 14949, - [SMALL_STATE(238)] = 15040, - [SMALL_STATE(239)] = 15093, - [SMALL_STATE(240)] = 15184, - [SMALL_STATE(241)] = 15275, - [SMALL_STATE(242)] = 15328, - [SMALL_STATE(243)] = 15419, - [SMALL_STATE(244)] = 15510, - [SMALL_STATE(245)] = 15601, - [SMALL_STATE(246)] = 15692, - [SMALL_STATE(247)] = 15783, - [SMALL_STATE(248)] = 15874, - [SMALL_STATE(249)] = 15965, - [SMALL_STATE(250)] = 16018, - [SMALL_STATE(251)] = 16109, - [SMALL_STATE(252)] = 16162, - [SMALL_STATE(253)] = 16252, - [SMALL_STATE(254)] = 16340, - [SMALL_STATE(255)] = 16428, - [SMALL_STATE(256)] = 16518, - [SMALL_STATE(257)] = 16608, - [SMALL_STATE(258)] = 16698, - [SMALL_STATE(259)] = 16788, - [SMALL_STATE(260)] = 16876, - [SMALL_STATE(261)] = 16927, - [SMALL_STATE(262)] = 16986, - [SMALL_STATE(263)] = 17037, - [SMALL_STATE(264)] = 17088, - [SMALL_STATE(265)] = 17139, - [SMALL_STATE(266)] = 17190, - [SMALL_STATE(267)] = 17249, - [SMALL_STATE(268)] = 17300, - [SMALL_STATE(269)] = 17387, - [SMALL_STATE(270)] = 17474, - [SMALL_STATE(271)] = 17525, - [SMALL_STATE(272)] = 17576, - [SMALL_STATE(273)] = 17627, - [SMALL_STATE(274)] = 17677, - [SMALL_STATE(275)] = 17727, - [SMALL_STATE(276)] = 17777, - [SMALL_STATE(277)] = 17827, - [SMALL_STATE(278)] = 17877, - [SMALL_STATE(279)] = 17927, - [SMALL_STATE(280)] = 17977, - [SMALL_STATE(281)] = 18027, - [SMALL_STATE(282)] = 18077, - [SMALL_STATE(283)] = 18127, - [SMALL_STATE(284)] = 18177, - [SMALL_STATE(285)] = 18227, - [SMALL_STATE(286)] = 18277, - [SMALL_STATE(287)] = 18327, - [SMALL_STATE(288)] = 18377, - [SMALL_STATE(289)] = 18427, - [SMALL_STATE(290)] = 18511, - [SMALL_STATE(291)] = 18561, - [SMALL_STATE(292)] = 18611, - [SMALL_STATE(293)] = 18661, - [SMALL_STATE(294)] = 18711, - [SMALL_STATE(295)] = 18767, - [SMALL_STATE(296)] = 18817, - [SMALL_STATE(297)] = 18867, - [SMALL_STATE(298)] = 18917, - [SMALL_STATE(299)] = 18967, - [SMALL_STATE(300)] = 19017, - [SMALL_STATE(301)] = 19067, - [SMALL_STATE(302)] = 19117, - [SMALL_STATE(303)] = 19167, - [SMALL_STATE(304)] = 19217, - [SMALL_STATE(305)] = 19267, - [SMALL_STATE(306)] = 19317, - [SMALL_STATE(307)] = 19367, - [SMALL_STATE(308)] = 19417, - [SMALL_STATE(309)] = 19467, - [SMALL_STATE(310)] = 19517, - [SMALL_STATE(311)] = 19567, - [SMALL_STATE(312)] = 19617, - [SMALL_STATE(313)] = 19667, - [SMALL_STATE(314)] = 19717, - [SMALL_STATE(315)] = 19767, - [SMALL_STATE(316)] = 19817, - [SMALL_STATE(317)] = 19867, - [SMALL_STATE(318)] = 19917, - [SMALL_STATE(319)] = 19967, - [SMALL_STATE(320)] = 20017, - [SMALL_STATE(321)] = 20067, - [SMALL_STATE(322)] = 20117, - [SMALL_STATE(323)] = 20167, - [SMALL_STATE(324)] = 20217, - [SMALL_STATE(325)] = 20267, - [SMALL_STATE(326)] = 20353, - [SMALL_STATE(327)] = 20403, - [SMALL_STATE(328)] = 20453, - [SMALL_STATE(329)] = 20503, - [SMALL_STATE(330)] = 20553, - [SMALL_STATE(331)] = 20603, - [SMALL_STATE(332)] = 20653, - [SMALL_STATE(333)] = 20703, - [SMALL_STATE(334)] = 20753, - [SMALL_STATE(335)] = 20803, - [SMALL_STATE(336)] = 20853, - [SMALL_STATE(337)] = 20903, - [SMALL_STATE(338)] = 20953, - [SMALL_STATE(339)] = 21003, - [SMALL_STATE(340)] = 21053, - [SMALL_STATE(341)] = 21103, - [SMALL_STATE(342)] = 21153, - [SMALL_STATE(343)] = 21203, - [SMALL_STATE(344)] = 21253, - [SMALL_STATE(345)] = 21303, - [SMALL_STATE(346)] = 21353, - [SMALL_STATE(347)] = 21403, - [SMALL_STATE(348)] = 21453, - [SMALL_STATE(349)] = 21503, - [SMALL_STATE(350)] = 21553, - [SMALL_STATE(351)] = 21603, - [SMALL_STATE(352)] = 21653, - [SMALL_STATE(353)] = 21703, - [SMALL_STATE(354)] = 21753, - [SMALL_STATE(355)] = 21803, - [SMALL_STATE(356)] = 21853, - [SMALL_STATE(357)] = 21903, - [SMALL_STATE(358)] = 21953, - [SMALL_STATE(359)] = 22003, - [SMALL_STATE(360)] = 22053, - [SMALL_STATE(361)] = 22103, - [SMALL_STATE(362)] = 22153, - [SMALL_STATE(363)] = 22203, - [SMALL_STATE(364)] = 22253, - [SMALL_STATE(365)] = 22303, - [SMALL_STATE(366)] = 22353, - [SMALL_STATE(367)] = 22403, - [SMALL_STATE(368)] = 22453, - [SMALL_STATE(369)] = 22503, - [SMALL_STATE(370)] = 22553, - [SMALL_STATE(371)] = 22603, - [SMALL_STATE(372)] = 22653, - [SMALL_STATE(373)] = 22703, - [SMALL_STATE(374)] = 22753, - [SMALL_STATE(375)] = 22803, - [SMALL_STATE(376)] = 22853, - [SMALL_STATE(377)] = 22903, - [SMALL_STATE(378)] = 22953, - [SMALL_STATE(379)] = 23003, - [SMALL_STATE(380)] = 23053, - [SMALL_STATE(381)] = 23103, - [SMALL_STATE(382)] = 23153, - [SMALL_STATE(383)] = 23203, - [SMALL_STATE(384)] = 23253, - [SMALL_STATE(385)] = 23303, - [SMALL_STATE(386)] = 23353, - [SMALL_STATE(387)] = 23403, - [SMALL_STATE(388)] = 23453, - [SMALL_STATE(389)] = 23503, - [SMALL_STATE(390)] = 23553, - [SMALL_STATE(391)] = 23603, - [SMALL_STATE(392)] = 23653, - [SMALL_STATE(393)] = 23703, - [SMALL_STATE(394)] = 23753, - [SMALL_STATE(395)] = 23803, - [SMALL_STATE(396)] = 23853, - [SMALL_STATE(397)] = 23903, - [SMALL_STATE(398)] = 23953, - [SMALL_STATE(399)] = 24003, - [SMALL_STATE(400)] = 24053, - [SMALL_STATE(401)] = 24103, - [SMALL_STATE(402)] = 24153, - [SMALL_STATE(403)] = 24203, - [SMALL_STATE(404)] = 24253, - [SMALL_STATE(405)] = 24303, - [SMALL_STATE(406)] = 24353, - [SMALL_STATE(407)] = 24403, - [SMALL_STATE(408)] = 24453, - [SMALL_STATE(409)] = 24503, - [SMALL_STATE(410)] = 24553, - [SMALL_STATE(411)] = 24603, - [SMALL_STATE(412)] = 24653, - [SMALL_STATE(413)] = 24703, - [SMALL_STATE(414)] = 24753, - [SMALL_STATE(415)] = 24803, - [SMALL_STATE(416)] = 24853, - [SMALL_STATE(417)] = 24903, - [SMALL_STATE(418)] = 24953, - [SMALL_STATE(419)] = 25003, - [SMALL_STATE(420)] = 25053, - [SMALL_STATE(421)] = 25103, - [SMALL_STATE(422)] = 25153, - [SMALL_STATE(423)] = 25203, - [SMALL_STATE(424)] = 25253, - [SMALL_STATE(425)] = 25303, - [SMALL_STATE(426)] = 25353, - [SMALL_STATE(427)] = 25403, - [SMALL_STATE(428)] = 25453, - [SMALL_STATE(429)] = 25503, - [SMALL_STATE(430)] = 25553, - [SMALL_STATE(431)] = 25603, - [SMALL_STATE(432)] = 25653, - [SMALL_STATE(433)] = 25703, - [SMALL_STATE(434)] = 25753, - [SMALL_STATE(435)] = 25803, - [SMALL_STATE(436)] = 25853, - [SMALL_STATE(437)] = 25903, - [SMALL_STATE(438)] = 25953, - [SMALL_STATE(439)] = 26003, - [SMALL_STATE(440)] = 26053, - [SMALL_STATE(441)] = 26103, - [SMALL_STATE(442)] = 26153, - [SMALL_STATE(443)] = 26203, - [SMALL_STATE(444)] = 26253, - [SMALL_STATE(445)] = 26303, - [SMALL_STATE(446)] = 26353, - [SMALL_STATE(447)] = 26403, - [SMALL_STATE(448)] = 26453, - [SMALL_STATE(449)] = 26503, - [SMALL_STATE(450)] = 26553, - [SMALL_STATE(451)] = 26603, - [SMALL_STATE(452)] = 26653, - [SMALL_STATE(453)] = 26703, - [SMALL_STATE(454)] = 26753, - [SMALL_STATE(455)] = 26803, - [SMALL_STATE(456)] = 26853, - [SMALL_STATE(457)] = 26903, - [SMALL_STATE(458)] = 26953, - [SMALL_STATE(459)] = 27003, - [SMALL_STATE(460)] = 27053, - [SMALL_STATE(461)] = 27103, - [SMALL_STATE(462)] = 27153, - [SMALL_STATE(463)] = 27236, - [SMALL_STATE(464)] = 27285, - [SMALL_STATE(465)] = 27334, - [SMALL_STATE(466)] = 27383, - [SMALL_STATE(467)] = 27432, - [SMALL_STATE(468)] = 27481, - [SMALL_STATE(469)] = 27564, - [SMALL_STATE(470)] = 27613, - [SMALL_STATE(471)] = 27662, - [SMALL_STATE(472)] = 27742, - [SMALL_STATE(473)] = 27822, - [SMALL_STATE(474)] = 27902, - [SMALL_STATE(475)] = 27982, - [SMALL_STATE(476)] = 28062, - [SMALL_STATE(477)] = 28142, - [SMALL_STATE(478)] = 28222, - [SMALL_STATE(479)] = 28302, - [SMALL_STATE(480)] = 28358, - [SMALL_STATE(481)] = 28414, - [SMALL_STATE(482)] = 28494, - [SMALL_STATE(483)] = 28574, - [SMALL_STATE(484)] = 28654, - [SMALL_STATE(485)] = 28710, - [SMALL_STATE(486)] = 28757, - [SMALL_STATE(487)] = 28806, - [SMALL_STATE(488)] = 28853, - [SMALL_STATE(489)] = 28900, - [SMALL_STATE(490)] = 28947, - [SMALL_STATE(491)] = 28994, - [SMALL_STATE(492)] = 29041, - [SMALL_STATE(493)] = 29088, - [SMALL_STATE(494)] = 29135, - [SMALL_STATE(495)] = 29181, - [SMALL_STATE(496)] = 29227, - [SMALL_STATE(497)] = 29311, - [SMALL_STATE(498)] = 29357, - [SMALL_STATE(499)] = 29403, - [SMALL_STATE(500)] = 29463, - [SMALL_STATE(501)] = 29542, - [SMALL_STATE(502)] = 29594, - [SMALL_STATE(503)] = 29646, - [SMALL_STATE(504)] = 29698, - [SMALL_STATE(505)] = 29766, - [SMALL_STATE(506)] = 29834, - [SMALL_STATE(507)] = 29886, - [SMALL_STATE(508)] = 29938, - [SMALL_STATE(509)] = 30019, - [SMALL_STATE(510)] = 30084, - [SMALL_STATE(511)] = 30165, - [SMALL_STATE(512)] = 30207, - [SMALL_STATE(513)] = 30252, - [SMALL_STATE(514)] = 30298, - [SMALL_STATE(515)] = 30346, - [SMALL_STATE(516)] = 30393, - [SMALL_STATE(517)] = 30432, - [SMALL_STATE(518)] = 30478, - [SMALL_STATE(519)] = 30520, - [SMALL_STATE(520)] = 30573, - [SMALL_STATE(521)] = 30618, - [SMALL_STATE(522)] = 30669, - [SMALL_STATE(523)] = 30722, - [SMALL_STATE(524)] = 30775, - [SMALL_STATE(525)] = 30828, - [SMALL_STATE(526)] = 30875, - [SMALL_STATE(527)] = 30931, - [SMALL_STATE(528)] = 30967, - [SMALL_STATE(529)] = 31021, - [SMALL_STATE(530)] = 31077, - [SMALL_STATE(531)] = 31133, - [SMALL_STATE(532)] = 31189, - [SMALL_STATE(533)] = 31243, - [SMALL_STATE(534)] = 31299, - [SMALL_STATE(535)] = 31356, - [SMALL_STATE(536)] = 31395, - [SMALL_STATE(537)] = 31452, - [SMALL_STATE(538)] = 31509, - [SMALL_STATE(539)] = 31566, - [SMALL_STATE(540)] = 31623, - [SMALL_STATE(541)] = 31659, - [SMALL_STATE(542)] = 31713, - [SMALL_STATE(543)] = 31767, - [SMALL_STATE(544)] = 31821, - [SMALL_STATE(545)] = 31875, - [SMALL_STATE(546)] = 31929, - [SMALL_STATE(547)] = 31961, - [SMALL_STATE(548)] = 32015, - [SMALL_STATE(549)] = 32066, - [SMALL_STATE(550)] = 32113, - [SMALL_STATE(551)] = 32164, - [SMALL_STATE(552)] = 32193, - [SMALL_STATE(553)] = 32244, - [SMALL_STATE(554)] = 32281, - [SMALL_STATE(555)] = 32322, - [SMALL_STATE(556)] = 32351, - [SMALL_STATE(557)] = 32402, - [SMALL_STATE(558)] = 32449, - [SMALL_STATE(559)] = 32498, - [SMALL_STATE(560)] = 32549, - [SMALL_STATE(561)] = 32600, - [SMALL_STATE(562)] = 32629, - [SMALL_STATE(563)] = 32672, - [SMALL_STATE(564)] = 32719, - [SMALL_STATE(565)] = 32762, - [SMALL_STATE(566)] = 32793, - [SMALL_STATE(567)] = 32846, - [SMALL_STATE(568)] = 32877, - [SMALL_STATE(569)] = 32906, - [SMALL_STATE(570)] = 32953, - [SMALL_STATE(571)] = 33004, - [SMALL_STATE(572)] = 33035, - [SMALL_STATE(573)] = 33075, - [SMALL_STATE(574)] = 33101, - [SMALL_STATE(575)] = 33141, - [SMALL_STATE(576)] = 33191, - [SMALL_STATE(577)] = 33217, - [SMALL_STATE(578)] = 33243, - [SMALL_STATE(579)] = 33293, - [SMALL_STATE(580)] = 33343, - [SMALL_STATE(581)] = 33369, - [SMALL_STATE(582)] = 33395, - [SMALL_STATE(583)] = 33442, - [SMALL_STATE(584)] = 33471, - [SMALL_STATE(585)] = 33520, - [SMALL_STATE(586)] = 33557, - [SMALL_STATE(587)] = 33586, - [SMALL_STATE(588)] = 33615, - [SMALL_STATE(589)] = 33644, - [SMALL_STATE(590)] = 33691, - [SMALL_STATE(591)] = 33720, - [SMALL_STATE(592)] = 33749, - [SMALL_STATE(593)] = 33783, - [SMALL_STATE(594)] = 33827, - [SMALL_STATE(595)] = 33871, - [SMALL_STATE(596)] = 33895, - [SMALL_STATE(597)] = 33919, - [SMALL_STATE(598)] = 33965, - [SMALL_STATE(599)] = 33989, - [SMALL_STATE(600)] = 34033, - [SMALL_STATE(601)] = 34079, - [SMALL_STATE(602)] = 34103, - [SMALL_STATE(603)] = 34127, - [SMALL_STATE(604)] = 34173, - [SMALL_STATE(605)] = 34219, - [SMALL_STATE(606)] = 34253, - [SMALL_STATE(607)] = 34294, - [SMALL_STATE(608)] = 34321, - [SMALL_STATE(609)] = 34362, - [SMALL_STATE(610)] = 34389, - [SMALL_STATE(611)] = 34430, - [SMALL_STATE(612)] = 34471, - [SMALL_STATE(613)] = 34511, - [SMALL_STATE(614)] = 34551, - [SMALL_STATE(615)] = 34591, - [SMALL_STATE(616)] = 34631, - [SMALL_STATE(617)] = 34671, - [SMALL_STATE(618)] = 34709, - [SMALL_STATE(619)] = 34744, - [SMALL_STATE(620)] = 34779, - [SMALL_STATE(621)] = 34814, - [SMALL_STATE(622)] = 34851, - [SMALL_STATE(623)] = 34888, - [SMALL_STATE(624)] = 34909, - [SMALL_STATE(625)] = 34946, - [SMALL_STATE(626)] = 34983, - [SMALL_STATE(627)] = 35020, - [SMALL_STATE(628)] = 35057, - [SMALL_STATE(629)] = 35094, - [SMALL_STATE(630)] = 35129, - [SMALL_STATE(631)] = 35150, - [SMALL_STATE(632)] = 35171, - [SMALL_STATE(633)] = 35206, - [SMALL_STATE(634)] = 35243, - [SMALL_STATE(635)] = 35278, - [SMALL_STATE(636)] = 35315, - [SMALL_STATE(637)] = 35348, - [SMALL_STATE(638)] = 35369, - [SMALL_STATE(639)] = 35404, - [SMALL_STATE(640)] = 35425, - [SMALL_STATE(641)] = 35457, - [SMALL_STATE(642)] = 35491, - [SMALL_STATE(643)] = 35525, - [SMALL_STATE(644)] = 35559, - [SMALL_STATE(645)] = 35591, - [SMALL_STATE(646)] = 35625, - [SMALL_STATE(647)] = 35657, - [SMALL_STATE(648)] = 35691, - [SMALL_STATE(649)] = 35725, - [SMALL_STATE(650)] = 35759, - [SMALL_STATE(651)] = 35793, - [SMALL_STATE(652)] = 35827, - [SMALL_STATE(653)] = 35861, - [SMALL_STATE(654)] = 35893, - [SMALL_STATE(655)] = 35925, - [SMALL_STATE(656)] = 35959, - [SMALL_STATE(657)] = 35991, - [SMALL_STATE(658)] = 36023, - [SMALL_STATE(659)] = 36055, - [SMALL_STATE(660)] = 36089, - [SMALL_STATE(661)] = 36121, - [SMALL_STATE(662)] = 36155, - [SMALL_STATE(663)] = 36189, - [SMALL_STATE(664)] = 36221, - [SMALL_STATE(665)] = 36248, - [SMALL_STATE(666)] = 36271, - [SMALL_STATE(667)] = 36292, - [SMALL_STATE(668)] = 36323, - [SMALL_STATE(669)] = 36346, - [SMALL_STATE(670)] = 36371, - [SMALL_STATE(671)] = 36400, - [SMALL_STATE(672)] = 36425, - [SMALL_STATE(673)] = 36450, - [SMALL_STATE(674)] = 36475, - [SMALL_STATE(675)] = 36502, - [SMALL_STATE(676)] = 36527, - [SMALL_STATE(677)] = 36558, - [SMALL_STATE(678)] = 36589, - [SMALL_STATE(679)] = 36620, - [SMALL_STATE(680)] = 36649, - [SMALL_STATE(681)] = 36672, - [SMALL_STATE(682)] = 36697, - [SMALL_STATE(683)] = 36725, - [SMALL_STATE(684)] = 36753, - [SMALL_STATE(685)] = 36781, - [SMALL_STATE(686)] = 36809, - [SMALL_STATE(687)] = 36837, - [SMALL_STATE(688)] = 36865, - [SMALL_STATE(689)] = 36893, - [SMALL_STATE(690)] = 36921, - [SMALL_STATE(691)] = 36949, - [SMALL_STATE(692)] = 36977, - [SMALL_STATE(693)] = 37005, - [SMALL_STATE(694)] = 37033, - [SMALL_STATE(695)] = 37061, - [SMALL_STATE(696)] = 37089, - [SMALL_STATE(697)] = 37117, - [SMALL_STATE(698)] = 37145, - [SMALL_STATE(699)] = 37173, - [SMALL_STATE(700)] = 37201, - [SMALL_STATE(701)] = 37229, - [SMALL_STATE(702)] = 37257, - [SMALL_STATE(703)] = 37285, - [SMALL_STATE(704)] = 37313, - [SMALL_STATE(705)] = 37341, - [SMALL_STATE(706)] = 37369, - [SMALL_STATE(707)] = 37397, - [SMALL_STATE(708)] = 37425, - [SMALL_STATE(709)] = 37453, - [SMALL_STATE(710)] = 37481, - [SMALL_STATE(711)] = 37509, - [SMALL_STATE(712)] = 37531, - [SMALL_STATE(713)] = 37553, - [SMALL_STATE(714)] = 37581, - [SMALL_STATE(715)] = 37609, - [SMALL_STATE(716)] = 37637, - [SMALL_STATE(717)] = 37665, - [SMALL_STATE(718)] = 37693, - [SMALL_STATE(719)] = 37715, - [SMALL_STATE(720)] = 37733, - [SMALL_STATE(721)] = 37761, - [SMALL_STATE(722)] = 37789, - [SMALL_STATE(723)] = 37817, - [SMALL_STATE(724)] = 37845, - [SMALL_STATE(725)] = 37873, - [SMALL_STATE(726)] = 37901, - [SMALL_STATE(727)] = 37929, - [SMALL_STATE(728)] = 37957, - [SMALL_STATE(729)] = 37985, - [SMALL_STATE(730)] = 38013, - [SMALL_STATE(731)] = 38033, - [SMALL_STATE(732)] = 38061, - [SMALL_STATE(733)] = 38089, - [SMALL_STATE(734)] = 38117, - [SMALL_STATE(735)] = 38145, - [SMALL_STATE(736)] = 38173, - [SMALL_STATE(737)] = 38201, - [SMALL_STATE(738)] = 38229, - [SMALL_STATE(739)] = 38257, - [SMALL_STATE(740)] = 38285, - [SMALL_STATE(741)] = 38313, - [SMALL_STATE(742)] = 38341, - [SMALL_STATE(743)] = 38369, - [SMALL_STATE(744)] = 38389, - [SMALL_STATE(745)] = 38417, - [SMALL_STATE(746)] = 38445, - [SMALL_STATE(747)] = 38473, - [SMALL_STATE(748)] = 38501, - [SMALL_STATE(749)] = 38529, - [SMALL_STATE(750)] = 38557, - [SMALL_STATE(751)] = 38582, - [SMALL_STATE(752)] = 38601, - [SMALL_STATE(753)] = 38626, - [SMALL_STATE(754)] = 38651, - [SMALL_STATE(755)] = 38676, - [SMALL_STATE(756)] = 38701, - [SMALL_STATE(757)] = 38726, - [SMALL_STATE(758)] = 38745, - [SMALL_STATE(759)] = 38764, - [SMALL_STATE(760)] = 38789, - [SMALL_STATE(761)] = 38814, - [SMALL_STATE(762)] = 38839, - [SMALL_STATE(763)] = 38864, - [SMALL_STATE(764)] = 38889, - [SMALL_STATE(765)] = 38914, - [SMALL_STATE(766)] = 38939, - [SMALL_STATE(767)] = 38958, - [SMALL_STATE(768)] = 38983, - [SMALL_STATE(769)] = 39008, - [SMALL_STATE(770)] = 39033, - [SMALL_STATE(771)] = 39058, - [SMALL_STATE(772)] = 39083, - [SMALL_STATE(773)] = 39108, - [SMALL_STATE(774)] = 39133, - [SMALL_STATE(775)] = 39162, - [SMALL_STATE(776)] = 39187, - [SMALL_STATE(777)] = 39212, - [SMALL_STATE(778)] = 39231, - [SMALL_STATE(779)] = 39256, - [SMALL_STATE(780)] = 39281, - [SMALL_STATE(781)] = 39306, - [SMALL_STATE(782)] = 39331, - [SMALL_STATE(783)] = 39356, - [SMALL_STATE(784)] = 39381, - [SMALL_STATE(785)] = 39406, - [SMALL_STATE(786)] = 39431, - [SMALL_STATE(787)] = 39456, - [SMALL_STATE(788)] = 39481, - [SMALL_STATE(789)] = 39506, - [SMALL_STATE(790)] = 39531, - [SMALL_STATE(791)] = 39556, - [SMALL_STATE(792)] = 39581, - [SMALL_STATE(793)] = 39606, - [SMALL_STATE(794)] = 39631, - [SMALL_STATE(795)] = 39650, - [SMALL_STATE(796)] = 39679, - [SMALL_STATE(797)] = 39708, - [SMALL_STATE(798)] = 39733, - [SMALL_STATE(799)] = 39758, - [SMALL_STATE(800)] = 39783, - [SMALL_STATE(801)] = 39808, - [SMALL_STATE(802)] = 39833, - [SMALL_STATE(803)] = 39858, - [SMALL_STATE(804)] = 39883, - [SMALL_STATE(805)] = 39908, - [SMALL_STATE(806)] = 39933, - [SMALL_STATE(807)] = 39958, - [SMALL_STATE(808)] = 39983, - [SMALL_STATE(809)] = 40008, - [SMALL_STATE(810)] = 40033, - [SMALL_STATE(811)] = 40058, - [SMALL_STATE(812)] = 40083, - [SMALL_STATE(813)] = 40108, - [SMALL_STATE(814)] = 40133, - [SMALL_STATE(815)] = 40149, - [SMALL_STATE(816)] = 40167, - [SMALL_STATE(817)] = 40183, - [SMALL_STATE(818)] = 40199, - [SMALL_STATE(819)] = 40215, - [SMALL_STATE(820)] = 40231, - [SMALL_STATE(821)] = 40256, - [SMALL_STATE(822)] = 40285, - [SMALL_STATE(823)] = 40314, - [SMALL_STATE(824)] = 40343, - [SMALL_STATE(825)] = 40372, - [SMALL_STATE(826)] = 40388, - [SMALL_STATE(827)] = 40412, - [SMALL_STATE(828)] = 40428, - [SMALL_STATE(829)] = 40444, - [SMALL_STATE(830)] = 40460, - [SMALL_STATE(831)] = 40476, - [SMALL_STATE(832)] = 40492, - [SMALL_STATE(833)] = 40508, - [SMALL_STATE(834)] = 40532, - [SMALL_STATE(835)] = 40554, - [SMALL_STATE(836)] = 40570, - [SMALL_STATE(837)] = 40586, - [SMALL_STATE(838)] = 40610, - [SMALL_STATE(839)] = 40626, - [SMALL_STATE(840)] = 40642, - [SMALL_STATE(841)] = 40658, - [SMALL_STATE(842)] = 40674, - [SMALL_STATE(843)] = 40690, - [SMALL_STATE(844)] = 40706, - [SMALL_STATE(845)] = 40730, - [SMALL_STATE(846)] = 40758, - [SMALL_STATE(847)] = 40774, - [SMALL_STATE(848)] = 40800, - [SMALL_STATE(849)] = 40824, - [SMALL_STATE(850)] = 40852, - [SMALL_STATE(851)] = 40868, - [SMALL_STATE(852)] = 40884, - [SMALL_STATE(853)] = 40900, - [SMALL_STATE(854)] = 40916, - [SMALL_STATE(855)] = 40940, - [SMALL_STATE(856)] = 40964, - [SMALL_STATE(857)] = 40980, - [SMALL_STATE(858)] = 40996, - [SMALL_STATE(859)] = 41012, - [SMALL_STATE(860)] = 41040, - [SMALL_STATE(861)] = 41056, - [SMALL_STATE(862)] = 41072, - [SMALL_STATE(863)] = 41088, - [SMALL_STATE(864)] = 41112, - [SMALL_STATE(865)] = 41128, - [SMALL_STATE(866)] = 41144, - [SMALL_STATE(867)] = 41168, - [SMALL_STATE(868)] = 41184, - [SMALL_STATE(869)] = 41200, - [SMALL_STATE(870)] = 41226, - [SMALL_STATE(871)] = 41242, - [SMALL_STATE(872)] = 41258, - [SMALL_STATE(873)] = 41274, - [SMALL_STATE(874)] = 41290, - [SMALL_STATE(875)] = 41306, - [SMALL_STATE(876)] = 41322, - [SMALL_STATE(877)] = 41338, - [SMALL_STATE(878)] = 41354, - [SMALL_STATE(879)] = 41375, - [SMALL_STATE(880)] = 41398, - [SMALL_STATE(881)] = 41411, - [SMALL_STATE(882)] = 41436, - [SMALL_STATE(883)] = 41461, - [SMALL_STATE(884)] = 41484, - [SMALL_STATE(885)] = 41507, - [SMALL_STATE(886)] = 41530, - [SMALL_STATE(887)] = 41553, - [SMALL_STATE(888)] = 41572, - [SMALL_STATE(889)] = 41593, - [SMALL_STATE(890)] = 41616, - [SMALL_STATE(891)] = 41629, - [SMALL_STATE(892)] = 41642, - [SMALL_STATE(893)] = 41657, - [SMALL_STATE(894)] = 41670, - [SMALL_STATE(895)] = 41683, - [SMALL_STATE(896)] = 41706, - [SMALL_STATE(897)] = 41727, - [SMALL_STATE(898)] = 41749, - [SMALL_STATE(899)] = 41771, - [SMALL_STATE(900)] = 41787, - [SMALL_STATE(901)] = 41803, - [SMALL_STATE(902)] = 41817, - [SMALL_STATE(903)] = 41839, - [SMALL_STATE(904)] = 41861, - [SMALL_STATE(905)] = 41875, - [SMALL_STATE(906)] = 41897, - [SMALL_STATE(907)] = 41919, - [SMALL_STATE(908)] = 41933, - [SMALL_STATE(909)] = 41953, - [SMALL_STATE(910)] = 41967, - [SMALL_STATE(911)] = 41985, - [SMALL_STATE(912)] = 41997, - [SMALL_STATE(913)] = 42017, - [SMALL_STATE(914)] = 42035, - [SMALL_STATE(915)] = 42055, - [SMALL_STATE(916)] = 42073, - [SMALL_STATE(917)] = 42091, - [SMALL_STATE(918)] = 42113, - [SMALL_STATE(919)] = 42135, - [SMALL_STATE(920)] = 42151, - [SMALL_STATE(921)] = 42173, - [SMALL_STATE(922)] = 42195, - [SMALL_STATE(923)] = 42217, - [SMALL_STATE(924)] = 42237, - [SMALL_STATE(925)] = 42259, - [SMALL_STATE(926)] = 42281, - [SMALL_STATE(927)] = 42293, - [SMALL_STATE(928)] = 42309, - [SMALL_STATE(929)] = 42325, - [SMALL_STATE(930)] = 42345, - [SMALL_STATE(931)] = 42367, - [SMALL_STATE(932)] = 42389, - [SMALL_STATE(933)] = 42411, - [SMALL_STATE(934)] = 42425, - [SMALL_STATE(935)] = 42443, - [SMALL_STATE(936)] = 42465, - [SMALL_STATE(937)] = 42483, - [SMALL_STATE(938)] = 42505, - [SMALL_STATE(939)] = 42527, - [SMALL_STATE(940)] = 42549, - [SMALL_STATE(941)] = 42563, - [SMALL_STATE(942)] = 42585, - [SMALL_STATE(943)] = 42607, - [SMALL_STATE(944)] = 42627, - [SMALL_STATE(945)] = 42649, - [SMALL_STATE(946)] = 42671, - [SMALL_STATE(947)] = 42693, - [SMALL_STATE(948)] = 42715, - [SMALL_STATE(949)] = 42733, - [SMALL_STATE(950)] = 42755, - [SMALL_STATE(951)] = 42777, - [SMALL_STATE(952)] = 42799, - [SMALL_STATE(953)] = 42818, - [SMALL_STATE(954)] = 42837, - [SMALL_STATE(955)] = 42856, - [SMALL_STATE(956)] = 42873, - [SMALL_STATE(957)] = 42890, - [SMALL_STATE(958)] = 42909, - [SMALL_STATE(959)] = 42924, - [SMALL_STATE(960)] = 42943, - [SMALL_STATE(961)] = 42962, - [SMALL_STATE(962)] = 42981, - [SMALL_STATE(963)] = 42998, - [SMALL_STATE(964)] = 43015, - [SMALL_STATE(965)] = 43034, - [SMALL_STATE(966)] = 43053, - [SMALL_STATE(967)] = 43064, - [SMALL_STATE(968)] = 43083, - [SMALL_STATE(969)] = 43102, - [SMALL_STATE(970)] = 43121, - [SMALL_STATE(971)] = 43136, - [SMALL_STATE(972)] = 43151, - [SMALL_STATE(973)] = 43162, - [SMALL_STATE(974)] = 43181, - [SMALL_STATE(975)] = 43200, - [SMALL_STATE(976)] = 43211, - [SMALL_STATE(977)] = 43230, - [SMALL_STATE(978)] = 43247, - [SMALL_STATE(979)] = 43266, - [SMALL_STATE(980)] = 43283, - [SMALL_STATE(981)] = 43294, - [SMALL_STATE(982)] = 43305, - [SMALL_STATE(983)] = 43320, - [SMALL_STATE(984)] = 43339, - [SMALL_STATE(985)] = 43354, - [SMALL_STATE(986)] = 43373, - [SMALL_STATE(987)] = 43392, - [SMALL_STATE(988)] = 43411, - [SMALL_STATE(989)] = 43430, - [SMALL_STATE(990)] = 43441, - [SMALL_STATE(991)] = 43456, - [SMALL_STATE(992)] = 43471, - [SMALL_STATE(993)] = 43488, - [SMALL_STATE(994)] = 43503, - [SMALL_STATE(995)] = 43520, - [SMALL_STATE(996)] = 43539, - [SMALL_STATE(997)] = 43558, - [SMALL_STATE(998)] = 43573, - [SMALL_STATE(999)] = 43590, - [SMALL_STATE(1000)] = 43607, - [SMALL_STATE(1001)] = 43626, - [SMALL_STATE(1002)] = 43641, - [SMALL_STATE(1003)] = 43660, - [SMALL_STATE(1004)] = 43679, - [SMALL_STATE(1005)] = 43698, - [SMALL_STATE(1006)] = 43715, - [SMALL_STATE(1007)] = 43730, - [SMALL_STATE(1008)] = 43749, - [SMALL_STATE(1009)] = 43766, - [SMALL_STATE(1010)] = 43781, - [SMALL_STATE(1011)] = 43791, - [SMALL_STATE(1012)] = 43803, - [SMALL_STATE(1013)] = 43817, - [SMALL_STATE(1014)] = 43833, - [SMALL_STATE(1015)] = 43849, - [SMALL_STATE(1016)] = 43859, - [SMALL_STATE(1017)] = 43875, - [SMALL_STATE(1018)] = 43889, - [SMALL_STATE(1019)] = 43905, - [SMALL_STATE(1020)] = 43921, - [SMALL_STATE(1021)] = 43937, - [SMALL_STATE(1022)] = 43953, - [SMALL_STATE(1023)] = 43969, - [SMALL_STATE(1024)] = 43985, - [SMALL_STATE(1025)] = 44001, - [SMALL_STATE(1026)] = 44017, - [SMALL_STATE(1027)] = 44033, - [SMALL_STATE(1028)] = 44049, - [SMALL_STATE(1029)] = 44063, - [SMALL_STATE(1030)] = 44075, - [SMALL_STATE(1031)] = 44091, - [SMALL_STATE(1032)] = 44107, - [SMALL_STATE(1033)] = 44123, - [SMALL_STATE(1034)] = 44139, - [SMALL_STATE(1035)] = 44153, - [SMALL_STATE(1036)] = 44167, - [SMALL_STATE(1037)] = 44183, - [SMALL_STATE(1038)] = 44199, - [SMALL_STATE(1039)] = 44213, - [SMALL_STATE(1040)] = 44229, - [SMALL_STATE(1041)] = 44243, - [SMALL_STATE(1042)] = 44257, - [SMALL_STATE(1043)] = 44271, - [SMALL_STATE(1044)] = 44287, - [SMALL_STATE(1045)] = 44297, - [SMALL_STATE(1046)] = 44307, - [SMALL_STATE(1047)] = 44323, - [SMALL_STATE(1048)] = 44339, - [SMALL_STATE(1049)] = 44355, - [SMALL_STATE(1050)] = 44371, - [SMALL_STATE(1051)] = 44387, - [SMALL_STATE(1052)] = 44403, - [SMALL_STATE(1053)] = 44419, - [SMALL_STATE(1054)] = 44433, - [SMALL_STATE(1055)] = 44449, - [SMALL_STATE(1056)] = 44463, - [SMALL_STATE(1057)] = 44477, - [SMALL_STATE(1058)] = 44493, - [SMALL_STATE(1059)] = 44509, - [SMALL_STATE(1060)] = 44525, - [SMALL_STATE(1061)] = 44541, - [SMALL_STATE(1062)] = 44551, - [SMALL_STATE(1063)] = 44567, - [SMALL_STATE(1064)] = 44583, - [SMALL_STATE(1065)] = 44599, - [SMALL_STATE(1066)] = 44615, - [SMALL_STATE(1067)] = 44631, - [SMALL_STATE(1068)] = 44647, - [SMALL_STATE(1069)] = 44663, - [SMALL_STATE(1070)] = 44677, - [SMALL_STATE(1071)] = 44693, - [SMALL_STATE(1072)] = 44709, - [SMALL_STATE(1073)] = 44725, - [SMALL_STATE(1074)] = 44741, - [SMALL_STATE(1075)] = 44757, - [SMALL_STATE(1076)] = 44773, - [SMALL_STATE(1077)] = 44789, - [SMALL_STATE(1078)] = 44805, - [SMALL_STATE(1079)] = 44817, - [SMALL_STATE(1080)] = 44831, - [SMALL_STATE(1081)] = 44845, - [SMALL_STATE(1082)] = 44857, - [SMALL_STATE(1083)] = 44871, - [SMALL_STATE(1084)] = 44885, - [SMALL_STATE(1085)] = 44899, - [SMALL_STATE(1086)] = 44915, - [SMALL_STATE(1087)] = 44925, - [SMALL_STATE(1088)] = 44937, - [SMALL_STATE(1089)] = 44951, - [SMALL_STATE(1090)] = 44967, - [SMALL_STATE(1091)] = 44977, - [SMALL_STATE(1092)] = 44993, - [SMALL_STATE(1093)] = 45009, - [SMALL_STATE(1094)] = 45021, - [SMALL_STATE(1095)] = 45031, - [SMALL_STATE(1096)] = 45047, - [SMALL_STATE(1097)] = 45057, - [SMALL_STATE(1098)] = 45073, - [SMALL_STATE(1099)] = 45089, - [SMALL_STATE(1100)] = 45105, - [SMALL_STATE(1101)] = 45121, - [SMALL_STATE(1102)] = 45137, - [SMALL_STATE(1103)] = 45151, - [SMALL_STATE(1104)] = 45161, - [SMALL_STATE(1105)] = 45177, - [SMALL_STATE(1106)] = 45193, - [SMALL_STATE(1107)] = 45207, - [SMALL_STATE(1108)] = 45221, - [SMALL_STATE(1109)] = 45237, - [SMALL_STATE(1110)] = 45251, - [SMALL_STATE(1111)] = 45267, - [SMALL_STATE(1112)] = 45279, - [SMALL_STATE(1113)] = 45295, - [SMALL_STATE(1114)] = 45309, - [SMALL_STATE(1115)] = 45323, - [SMALL_STATE(1116)] = 45337, - [SMALL_STATE(1117)] = 45353, - [SMALL_STATE(1118)] = 45369, - [SMALL_STATE(1119)] = 45385, - [SMALL_STATE(1120)] = 45399, - [SMALL_STATE(1121)] = 45409, - [SMALL_STATE(1122)] = 45423, - [SMALL_STATE(1123)] = 45439, - [SMALL_STATE(1124)] = 45451, - [SMALL_STATE(1125)] = 45467, - [SMALL_STATE(1126)] = 45483, - [SMALL_STATE(1127)] = 45499, - [SMALL_STATE(1128)] = 45515, - [SMALL_STATE(1129)] = 45531, - [SMALL_STATE(1130)] = 45547, - [SMALL_STATE(1131)] = 45560, - [SMALL_STATE(1132)] = 45571, - [SMALL_STATE(1133)] = 45584, - [SMALL_STATE(1134)] = 45597, - [SMALL_STATE(1135)] = 45608, - [SMALL_STATE(1136)] = 45621, - [SMALL_STATE(1137)] = 45630, - [SMALL_STATE(1138)] = 45639, - [SMALL_STATE(1139)] = 45652, - [SMALL_STATE(1140)] = 45661, - [SMALL_STATE(1141)] = 45670, - [SMALL_STATE(1142)] = 45683, - [SMALL_STATE(1143)] = 45696, - [SMALL_STATE(1144)] = 45707, - [SMALL_STATE(1145)] = 45720, - [SMALL_STATE(1146)] = 45729, - [SMALL_STATE(1147)] = 45742, - [SMALL_STATE(1148)] = 45755, - [SMALL_STATE(1149)] = 45768, - [SMALL_STATE(1150)] = 45777, - [SMALL_STATE(1151)] = 45788, - [SMALL_STATE(1152)] = 45797, - [SMALL_STATE(1153)] = 45810, - [SMALL_STATE(1154)] = 45819, - [SMALL_STATE(1155)] = 45832, - [SMALL_STATE(1156)] = 45845, - [SMALL_STATE(1157)] = 45858, - [SMALL_STATE(1158)] = 45867, - [SMALL_STATE(1159)] = 45880, - [SMALL_STATE(1160)] = 45893, - [SMALL_STATE(1161)] = 45906, - [SMALL_STATE(1162)] = 45915, - [SMALL_STATE(1163)] = 45928, - [SMALL_STATE(1164)] = 45941, - [SMALL_STATE(1165)] = 45954, - [SMALL_STATE(1166)] = 45967, - [SMALL_STATE(1167)] = 45976, - [SMALL_STATE(1168)] = 45989, - [SMALL_STATE(1169)] = 45998, - [SMALL_STATE(1170)] = 46011, - [SMALL_STATE(1171)] = 46024, - [SMALL_STATE(1172)] = 46033, - [SMALL_STATE(1173)] = 46046, - [SMALL_STATE(1174)] = 46059, - [SMALL_STATE(1175)] = 46072, - [SMALL_STATE(1176)] = 46081, - [SMALL_STATE(1177)] = 46094, - [SMALL_STATE(1178)] = 46107, - [SMALL_STATE(1179)] = 46120, - [SMALL_STATE(1180)] = 46133, - [SMALL_STATE(1181)] = 46146, - [SMALL_STATE(1182)] = 46159, - [SMALL_STATE(1183)] = 46172, - [SMALL_STATE(1184)] = 46185, - [SMALL_STATE(1185)] = 46198, - [SMALL_STATE(1186)] = 46211, - [SMALL_STATE(1187)] = 46220, - [SMALL_STATE(1188)] = 46233, - [SMALL_STATE(1189)] = 46246, - [SMALL_STATE(1190)] = 46255, - [SMALL_STATE(1191)] = 46268, - [SMALL_STATE(1192)] = 46281, - [SMALL_STATE(1193)] = 46294, - [SMALL_STATE(1194)] = 46307, - [SMALL_STATE(1195)] = 46320, - [SMALL_STATE(1196)] = 46333, - [SMALL_STATE(1197)] = 46346, - [SMALL_STATE(1198)] = 46355, - [SMALL_STATE(1199)] = 46368, - [SMALL_STATE(1200)] = 46381, - [SMALL_STATE(1201)] = 46394, - [SMALL_STATE(1202)] = 46407, - [SMALL_STATE(1203)] = 46418, - [SMALL_STATE(1204)] = 46431, - [SMALL_STATE(1205)] = 46444, - [SMALL_STATE(1206)] = 46457, - [SMALL_STATE(1207)] = 46470, - [SMALL_STATE(1208)] = 46483, - [SMALL_STATE(1209)] = 46496, - [SMALL_STATE(1210)] = 46505, - [SMALL_STATE(1211)] = 46514, - [SMALL_STATE(1212)] = 46527, - [SMALL_STATE(1213)] = 46540, - [SMALL_STATE(1214)] = 46549, - [SMALL_STATE(1215)] = 46560, - [SMALL_STATE(1216)] = 46569, - [SMALL_STATE(1217)] = 46578, - [SMALL_STATE(1218)] = 46591, - [SMALL_STATE(1219)] = 46604, - [SMALL_STATE(1220)] = 46613, - [SMALL_STATE(1221)] = 46626, - [SMALL_STATE(1222)] = 46639, - [SMALL_STATE(1223)] = 46648, - [SMALL_STATE(1224)] = 46657, - [SMALL_STATE(1225)] = 46666, - [SMALL_STATE(1226)] = 46679, - [SMALL_STATE(1227)] = 46692, - [SMALL_STATE(1228)] = 46701, - [SMALL_STATE(1229)] = 46710, - [SMALL_STATE(1230)] = 46723, - [SMALL_STATE(1231)] = 46732, - [SMALL_STATE(1232)] = 46745, - [SMALL_STATE(1233)] = 46758, - [SMALL_STATE(1234)] = 46767, - [SMALL_STATE(1235)] = 46780, - [SMALL_STATE(1236)] = 46789, - [SMALL_STATE(1237)] = 46798, - [SMALL_STATE(1238)] = 46811, - [SMALL_STATE(1239)] = 46824, - [SMALL_STATE(1240)] = 46837, - [SMALL_STATE(1241)] = 46846, - [SMALL_STATE(1242)] = 46855, - [SMALL_STATE(1243)] = 46868, - [SMALL_STATE(1244)] = 46881, - [SMALL_STATE(1245)] = 46894, - [SMALL_STATE(1246)] = 46907, - [SMALL_STATE(1247)] = 46920, - [SMALL_STATE(1248)] = 46933, - [SMALL_STATE(1249)] = 46946, - [SMALL_STATE(1250)] = 46959, - [SMALL_STATE(1251)] = 46972, - [SMALL_STATE(1252)] = 46985, - [SMALL_STATE(1253)] = 46998, - [SMALL_STATE(1254)] = 47011, - [SMALL_STATE(1255)] = 47024, - [SMALL_STATE(1256)] = 47037, - [SMALL_STATE(1257)] = 47046, - [SMALL_STATE(1258)] = 47055, - [SMALL_STATE(1259)] = 47064, - [SMALL_STATE(1260)] = 47077, - [SMALL_STATE(1261)] = 47086, - [SMALL_STATE(1262)] = 47099, - [SMALL_STATE(1263)] = 47112, - [SMALL_STATE(1264)] = 47121, - [SMALL_STATE(1265)] = 47130, - [SMALL_STATE(1266)] = 47143, - [SMALL_STATE(1267)] = 47152, - [SMALL_STATE(1268)] = 47165, - [SMALL_STATE(1269)] = 47178, - [SMALL_STATE(1270)] = 47191, - [SMALL_STATE(1271)] = 47204, - [SMALL_STATE(1272)] = 47217, - [SMALL_STATE(1273)] = 47230, - [SMALL_STATE(1274)] = 47243, - [SMALL_STATE(1275)] = 47252, - [SMALL_STATE(1276)] = 47265, - [SMALL_STATE(1277)] = 47278, - [SMALL_STATE(1278)] = 47291, - [SMALL_STATE(1279)] = 47304, - [SMALL_STATE(1280)] = 47317, - [SMALL_STATE(1281)] = 47330, - [SMALL_STATE(1282)] = 47341, - [SMALL_STATE(1283)] = 47354, - [SMALL_STATE(1284)] = 47367, - [SMALL_STATE(1285)] = 47380, - [SMALL_STATE(1286)] = 47393, - [SMALL_STATE(1287)] = 47406, - [SMALL_STATE(1288)] = 47417, - [SMALL_STATE(1289)] = 47430, - [SMALL_STATE(1290)] = 47443, - [SMALL_STATE(1291)] = 47456, - [SMALL_STATE(1292)] = 47469, - [SMALL_STATE(1293)] = 47482, - [SMALL_STATE(1294)] = 47493, - [SMALL_STATE(1295)] = 47506, - [SMALL_STATE(1296)] = 47515, - [SMALL_STATE(1297)] = 47524, - [SMALL_STATE(1298)] = 47537, - [SMALL_STATE(1299)] = 47550, - [SMALL_STATE(1300)] = 47561, - [SMALL_STATE(1301)] = 47574, - [SMALL_STATE(1302)] = 47587, - [SMALL_STATE(1303)] = 47600, - [SMALL_STATE(1304)] = 47613, - [SMALL_STATE(1305)] = 47626, - [SMALL_STATE(1306)] = 47637, - [SMALL_STATE(1307)] = 47650, - [SMALL_STATE(1308)] = 47659, - [SMALL_STATE(1309)] = 47672, - [SMALL_STATE(1310)] = 47681, - [SMALL_STATE(1311)] = 47694, - [SMALL_STATE(1312)] = 47703, - [SMALL_STATE(1313)] = 47716, - [SMALL_STATE(1314)] = 47725, - [SMALL_STATE(1315)] = 47738, - [SMALL_STATE(1316)] = 47751, - [SMALL_STATE(1317)] = 47764, - [SMALL_STATE(1318)] = 47773, - [SMALL_STATE(1319)] = 47786, - [SMALL_STATE(1320)] = 47799, - [SMALL_STATE(1321)] = 47810, - [SMALL_STATE(1322)] = 47823, - [SMALL_STATE(1323)] = 47832, - [SMALL_STATE(1324)] = 47845, - [SMALL_STATE(1325)] = 47854, - [SMALL_STATE(1326)] = 47862, - [SMALL_STATE(1327)] = 47870, - [SMALL_STATE(1328)] = 47878, - [SMALL_STATE(1329)] = 47886, - [SMALL_STATE(1330)] = 47896, - [SMALL_STATE(1331)] = 47906, - [SMALL_STATE(1332)] = 47916, - [SMALL_STATE(1333)] = 47926, - [SMALL_STATE(1334)] = 47934, - [SMALL_STATE(1335)] = 47942, - [SMALL_STATE(1336)] = 47952, - [SMALL_STATE(1337)] = 47960, - [SMALL_STATE(1338)] = 47968, - [SMALL_STATE(1339)] = 47978, - [SMALL_STATE(1340)] = 47988, - [SMALL_STATE(1341)] = 47996, - [SMALL_STATE(1342)] = 48006, - [SMALL_STATE(1343)] = 48014, - [SMALL_STATE(1344)] = 48022, - [SMALL_STATE(1345)] = 48030, - [SMALL_STATE(1346)] = 48038, - [SMALL_STATE(1347)] = 48046, - [SMALL_STATE(1348)] = 48054, - [SMALL_STATE(1349)] = 48062, - [SMALL_STATE(1350)] = 48072, - [SMALL_STATE(1351)] = 48082, - [SMALL_STATE(1352)] = 48090, - [SMALL_STATE(1353)] = 48098, - [SMALL_STATE(1354)] = 48106, - [SMALL_STATE(1355)] = 48116, - [SMALL_STATE(1356)] = 48124, - [SMALL_STATE(1357)] = 48134, - [SMALL_STATE(1358)] = 48144, - [SMALL_STATE(1359)] = 48152, - [SMALL_STATE(1360)] = 48160, - [SMALL_STATE(1361)] = 48168, - [SMALL_STATE(1362)] = 48176, - [SMALL_STATE(1363)] = 48184, - [SMALL_STATE(1364)] = 48194, - [SMALL_STATE(1365)] = 48202, - [SMALL_STATE(1366)] = 48210, - [SMALL_STATE(1367)] = 48218, - [SMALL_STATE(1368)] = 48228, - [SMALL_STATE(1369)] = 48238, - [SMALL_STATE(1370)] = 48248, - [SMALL_STATE(1371)] = 48258, - [SMALL_STATE(1372)] = 48268, - [SMALL_STATE(1373)] = 48276, - [SMALL_STATE(1374)] = 48286, - [SMALL_STATE(1375)] = 48294, - [SMALL_STATE(1376)] = 48302, - [SMALL_STATE(1377)] = 48310, - [SMALL_STATE(1378)] = 48320, - [SMALL_STATE(1379)] = 48328, - [SMALL_STATE(1380)] = 48336, - [SMALL_STATE(1381)] = 48346, - [SMALL_STATE(1382)] = 48356, - [SMALL_STATE(1383)] = 48364, - [SMALL_STATE(1384)] = 48374, - [SMALL_STATE(1385)] = 48384, - [SMALL_STATE(1386)] = 48392, - [SMALL_STATE(1387)] = 48402, - [SMALL_STATE(1388)] = 48410, - [SMALL_STATE(1389)] = 48418, - [SMALL_STATE(1390)] = 48426, - [SMALL_STATE(1391)] = 48436, - [SMALL_STATE(1392)] = 48444, - [SMALL_STATE(1393)] = 48454, - [SMALL_STATE(1394)] = 48464, - [SMALL_STATE(1395)] = 48474, - [SMALL_STATE(1396)] = 48484, - [SMALL_STATE(1397)] = 48494, - [SMALL_STATE(1398)] = 48504, - [SMALL_STATE(1399)] = 48512, - [SMALL_STATE(1400)] = 48520, - [SMALL_STATE(1401)] = 48530, - [SMALL_STATE(1402)] = 48540, - [SMALL_STATE(1403)] = 48550, - [SMALL_STATE(1404)] = 48558, - [SMALL_STATE(1405)] = 48568, - [SMALL_STATE(1406)] = 48576, - [SMALL_STATE(1407)] = 48586, - [SMALL_STATE(1408)] = 48594, - [SMALL_STATE(1409)] = 48604, - [SMALL_STATE(1410)] = 48614, - [SMALL_STATE(1411)] = 48622, - [SMALL_STATE(1412)] = 48632, - [SMALL_STATE(1413)] = 48642, - [SMALL_STATE(1414)] = 48650, - [SMALL_STATE(1415)] = 48658, - [SMALL_STATE(1416)] = 48668, - [SMALL_STATE(1417)] = 48676, - [SMALL_STATE(1418)] = 48684, - [SMALL_STATE(1419)] = 48692, - [SMALL_STATE(1420)] = 48702, - [SMALL_STATE(1421)] = 48712, - [SMALL_STATE(1422)] = 48720, - [SMALL_STATE(1423)] = 48730, - [SMALL_STATE(1424)] = 48740, - [SMALL_STATE(1425)] = 48750, - [SMALL_STATE(1426)] = 48760, - [SMALL_STATE(1427)] = 48770, - [SMALL_STATE(1428)] = 48778, - [SMALL_STATE(1429)] = 48788, - [SMALL_STATE(1430)] = 48796, - [SMALL_STATE(1431)] = 48806, - [SMALL_STATE(1432)] = 48816, - [SMALL_STATE(1433)] = 48826, - [SMALL_STATE(1434)] = 48836, - [SMALL_STATE(1435)] = 48846, - [SMALL_STATE(1436)] = 48856, - [SMALL_STATE(1437)] = 48866, - [SMALL_STATE(1438)] = 48874, - [SMALL_STATE(1439)] = 48884, - [SMALL_STATE(1440)] = 48894, - [SMALL_STATE(1441)] = 48904, - [SMALL_STATE(1442)] = 48914, - [SMALL_STATE(1443)] = 48922, - [SMALL_STATE(1444)] = 48932, - [SMALL_STATE(1445)] = 48940, - [SMALL_STATE(1446)] = 48950, - [SMALL_STATE(1447)] = 48958, - [SMALL_STATE(1448)] = 48968, - [SMALL_STATE(1449)] = 48976, - [SMALL_STATE(1450)] = 48984, - [SMALL_STATE(1451)] = 48992, - [SMALL_STATE(1452)] = 49002, - [SMALL_STATE(1453)] = 49010, - [SMALL_STATE(1454)] = 49018, - [SMALL_STATE(1455)] = 49026, - [SMALL_STATE(1456)] = 49036, - [SMALL_STATE(1457)] = 49044, - [SMALL_STATE(1458)] = 49054, - [SMALL_STATE(1459)] = 49064, - [SMALL_STATE(1460)] = 49072, - [SMALL_STATE(1461)] = 49080, - [SMALL_STATE(1462)] = 49090, - [SMALL_STATE(1463)] = 49098, - [SMALL_STATE(1464)] = 49108, - [SMALL_STATE(1465)] = 49116, - [SMALL_STATE(1466)] = 49124, - [SMALL_STATE(1467)] = 49134, - [SMALL_STATE(1468)] = 49144, - [SMALL_STATE(1469)] = 49152, - [SMALL_STATE(1470)] = 49162, - [SMALL_STATE(1471)] = 49170, - [SMALL_STATE(1472)] = 49178, - [SMALL_STATE(1473)] = 49186, - [SMALL_STATE(1474)] = 49194, - [SMALL_STATE(1475)] = 49201, - [SMALL_STATE(1476)] = 49208, - [SMALL_STATE(1477)] = 49215, - [SMALL_STATE(1478)] = 49222, - [SMALL_STATE(1479)] = 49229, - [SMALL_STATE(1480)] = 49236, - [SMALL_STATE(1481)] = 49243, - [SMALL_STATE(1482)] = 49250, - [SMALL_STATE(1483)] = 49257, - [SMALL_STATE(1484)] = 49264, - [SMALL_STATE(1485)] = 49271, - [SMALL_STATE(1486)] = 49278, - [SMALL_STATE(1487)] = 49285, - [SMALL_STATE(1488)] = 49292, - [SMALL_STATE(1489)] = 49299, - [SMALL_STATE(1490)] = 49306, - [SMALL_STATE(1491)] = 49313, - [SMALL_STATE(1492)] = 49320, - [SMALL_STATE(1493)] = 49327, - [SMALL_STATE(1494)] = 49334, - [SMALL_STATE(1495)] = 49341, - [SMALL_STATE(1496)] = 49348, - [SMALL_STATE(1497)] = 49355, - [SMALL_STATE(1498)] = 49362, - [SMALL_STATE(1499)] = 49369, - [SMALL_STATE(1500)] = 49376, - [SMALL_STATE(1501)] = 49383, - [SMALL_STATE(1502)] = 49390, - [SMALL_STATE(1503)] = 49397, - [SMALL_STATE(1504)] = 49404, - [SMALL_STATE(1505)] = 49411, - [SMALL_STATE(1506)] = 49418, - [SMALL_STATE(1507)] = 49425, - [SMALL_STATE(1508)] = 49432, - [SMALL_STATE(1509)] = 49439, - [SMALL_STATE(1510)] = 49446, - [SMALL_STATE(1511)] = 49453, - [SMALL_STATE(1512)] = 49460, - [SMALL_STATE(1513)] = 49467, - [SMALL_STATE(1514)] = 49474, - [SMALL_STATE(1515)] = 49481, - [SMALL_STATE(1516)] = 49488, - [SMALL_STATE(1517)] = 49495, - [SMALL_STATE(1518)] = 49502, - [SMALL_STATE(1519)] = 49509, - [SMALL_STATE(1520)] = 49516, - [SMALL_STATE(1521)] = 49523, - [SMALL_STATE(1522)] = 49530, - [SMALL_STATE(1523)] = 49537, - [SMALL_STATE(1524)] = 49544, - [SMALL_STATE(1525)] = 49551, - [SMALL_STATE(1526)] = 49558, - [SMALL_STATE(1527)] = 49565, - [SMALL_STATE(1528)] = 49572, - [SMALL_STATE(1529)] = 49579, - [SMALL_STATE(1530)] = 49586, - [SMALL_STATE(1531)] = 49593, - [SMALL_STATE(1532)] = 49600, - [SMALL_STATE(1533)] = 49607, - [SMALL_STATE(1534)] = 49614, - [SMALL_STATE(1535)] = 49621, - [SMALL_STATE(1536)] = 49628, - [SMALL_STATE(1537)] = 49635, - [SMALL_STATE(1538)] = 49642, - [SMALL_STATE(1539)] = 49649, - [SMALL_STATE(1540)] = 49656, - [SMALL_STATE(1541)] = 49663, - [SMALL_STATE(1542)] = 49670, - [SMALL_STATE(1543)] = 49677, - [SMALL_STATE(1544)] = 49684, - [SMALL_STATE(1545)] = 49691, - [SMALL_STATE(1546)] = 49698, - [SMALL_STATE(1547)] = 49705, - [SMALL_STATE(1548)] = 49712, - [SMALL_STATE(1549)] = 49719, - [SMALL_STATE(1550)] = 49726, - [SMALL_STATE(1551)] = 49733, - [SMALL_STATE(1552)] = 49740, - [SMALL_STATE(1553)] = 49747, - [SMALL_STATE(1554)] = 49754, - [SMALL_STATE(1555)] = 49761, - [SMALL_STATE(1556)] = 49768, - [SMALL_STATE(1557)] = 49775, - [SMALL_STATE(1558)] = 49782, - [SMALL_STATE(1559)] = 49789, - [SMALL_STATE(1560)] = 49796, - [SMALL_STATE(1561)] = 49803, - [SMALL_STATE(1562)] = 49810, - [SMALL_STATE(1563)] = 49817, - [SMALL_STATE(1564)] = 49824, - [SMALL_STATE(1565)] = 49831, - [SMALL_STATE(1566)] = 49838, - [SMALL_STATE(1567)] = 49845, - [SMALL_STATE(1568)] = 49852, - [SMALL_STATE(1569)] = 49859, - [SMALL_STATE(1570)] = 49866, - [SMALL_STATE(1571)] = 49873, - [SMALL_STATE(1572)] = 49880, - [SMALL_STATE(1573)] = 49887, - [SMALL_STATE(1574)] = 49894, - [SMALL_STATE(1575)] = 49901, - [SMALL_STATE(1576)] = 49908, - [SMALL_STATE(1577)] = 49915, - [SMALL_STATE(1578)] = 49922, - [SMALL_STATE(1579)] = 49929, - [SMALL_STATE(1580)] = 49936, - [SMALL_STATE(1581)] = 49943, - [SMALL_STATE(1582)] = 49950, - [SMALL_STATE(1583)] = 49957, - [SMALL_STATE(1584)] = 49964, - [SMALL_STATE(1585)] = 49971, - [SMALL_STATE(1586)] = 49978, - [SMALL_STATE(1587)] = 49985, - [SMALL_STATE(1588)] = 49992, - [SMALL_STATE(1589)] = 49999, - [SMALL_STATE(1590)] = 50006, - [SMALL_STATE(1591)] = 50013, - [SMALL_STATE(1592)] = 50020, - [SMALL_STATE(1593)] = 50027, - [SMALL_STATE(1594)] = 50034, - [SMALL_STATE(1595)] = 50041, - [SMALL_STATE(1596)] = 50048, - [SMALL_STATE(1597)] = 50055, - [SMALL_STATE(1598)] = 50062, - [SMALL_STATE(1599)] = 50069, - [SMALL_STATE(1600)] = 50076, - [SMALL_STATE(1601)] = 50083, - [SMALL_STATE(1602)] = 50090, - [SMALL_STATE(1603)] = 50097, - [SMALL_STATE(1604)] = 50104, - [SMALL_STATE(1605)] = 50111, - [SMALL_STATE(1606)] = 50118, - [SMALL_STATE(1607)] = 50125, - [SMALL_STATE(1608)] = 50132, - [SMALL_STATE(1609)] = 50139, - [SMALL_STATE(1610)] = 50146, - [SMALL_STATE(1611)] = 50153, - [SMALL_STATE(1612)] = 50160, - [SMALL_STATE(1613)] = 50167, - [SMALL_STATE(1614)] = 50174, - [SMALL_STATE(1615)] = 50181, - [SMALL_STATE(1616)] = 50188, - [SMALL_STATE(1617)] = 50195, - [SMALL_STATE(1618)] = 50202, - [SMALL_STATE(1619)] = 50209, - [SMALL_STATE(1620)] = 50216, - [SMALL_STATE(1621)] = 50223, - [SMALL_STATE(1622)] = 50230, - [SMALL_STATE(1623)] = 50237, - [SMALL_STATE(1624)] = 50244, - [SMALL_STATE(1625)] = 50251, - [SMALL_STATE(1626)] = 50258, - [SMALL_STATE(1627)] = 50265, - [SMALL_STATE(1628)] = 50272, - [SMALL_STATE(1629)] = 50279, - [SMALL_STATE(1630)] = 50286, - [SMALL_STATE(1631)] = 50293, - [SMALL_STATE(1632)] = 50300, - [SMALL_STATE(1633)] = 50307, - [SMALL_STATE(1634)] = 50314, - [SMALL_STATE(1635)] = 50321, - [SMALL_STATE(1636)] = 50328, - [SMALL_STATE(1637)] = 50335, - [SMALL_STATE(1638)] = 50342, - [SMALL_STATE(1639)] = 50349, - [SMALL_STATE(1640)] = 50356, - [SMALL_STATE(1641)] = 50363, - [SMALL_STATE(1642)] = 50370, - [SMALL_STATE(1643)] = 50377, - [SMALL_STATE(1644)] = 50384, - [SMALL_STATE(1645)] = 50391, - [SMALL_STATE(1646)] = 50398, - [SMALL_STATE(1647)] = 50405, - [SMALL_STATE(1648)] = 50412, - [SMALL_STATE(1649)] = 50419, - [SMALL_STATE(1650)] = 50426, - [SMALL_STATE(1651)] = 50433, - [SMALL_STATE(1652)] = 50440, - [SMALL_STATE(1653)] = 50447, - [SMALL_STATE(1654)] = 50454, - [SMALL_STATE(1655)] = 50461, - [SMALL_STATE(1656)] = 50468, - [SMALL_STATE(1657)] = 50475, - [SMALL_STATE(1658)] = 50482, - [SMALL_STATE(1659)] = 50489, - [SMALL_STATE(1660)] = 50496, - [SMALL_STATE(1661)] = 50503, - [SMALL_STATE(1662)] = 50510, - [SMALL_STATE(1663)] = 50517, - [SMALL_STATE(1664)] = 50524, - [SMALL_STATE(1665)] = 50531, - [SMALL_STATE(1666)] = 50538, - [SMALL_STATE(1667)] = 50545, - [SMALL_STATE(1668)] = 50552, - [SMALL_STATE(1669)] = 50559, - [SMALL_STATE(1670)] = 50566, - [SMALL_STATE(1671)] = 50573, - [SMALL_STATE(1672)] = 50580, - [SMALL_STATE(1673)] = 50587, - [SMALL_STATE(1674)] = 50594, - [SMALL_STATE(1675)] = 50601, - [SMALL_STATE(1676)] = 50608, - [SMALL_STATE(1677)] = 50615, - [SMALL_STATE(1678)] = 50622, - [SMALL_STATE(1679)] = 50629, - [SMALL_STATE(1680)] = 50636, - [SMALL_STATE(1681)] = 50643, - [SMALL_STATE(1682)] = 50650, - [SMALL_STATE(1683)] = 50657, - [SMALL_STATE(1684)] = 50664, - [SMALL_STATE(1685)] = 50671, - [SMALL_STATE(1686)] = 50678, - [SMALL_STATE(1687)] = 50685, - [SMALL_STATE(1688)] = 50692, - [SMALL_STATE(1689)] = 50699, - [SMALL_STATE(1690)] = 50706, - [SMALL_STATE(1691)] = 50713, - [SMALL_STATE(1692)] = 50720, - [SMALL_STATE(1693)] = 50727, - [SMALL_STATE(1694)] = 50734, - [SMALL_STATE(1695)] = 50741, - [SMALL_STATE(1696)] = 50748, - [SMALL_STATE(1697)] = 50755, - [SMALL_STATE(1698)] = 50762, - [SMALL_STATE(1699)] = 50769, - [SMALL_STATE(1700)] = 50776, - [SMALL_STATE(1701)] = 50783, - [SMALL_STATE(1702)] = 50790, - [SMALL_STATE(1703)] = 50797, - [SMALL_STATE(1704)] = 50804, - [SMALL_STATE(1705)] = 50811, - [SMALL_STATE(1706)] = 50818, - [SMALL_STATE(1707)] = 50825, - [SMALL_STATE(1708)] = 50832, - [SMALL_STATE(1709)] = 50839, - [SMALL_STATE(1710)] = 50846, - [SMALL_STATE(1711)] = 50853, - [SMALL_STATE(1712)] = 50860, - [SMALL_STATE(1713)] = 50867, - [SMALL_STATE(1714)] = 50874, - [SMALL_STATE(1715)] = 50881, - [SMALL_STATE(1716)] = 50888, - [SMALL_STATE(1717)] = 50895, - [SMALL_STATE(1718)] = 50902, - [SMALL_STATE(1719)] = 50909, - [SMALL_STATE(1720)] = 50916, - [SMALL_STATE(1721)] = 50923, - [SMALL_STATE(1722)] = 50930, - [SMALL_STATE(1723)] = 50937, - [SMALL_STATE(1724)] = 50944, - [SMALL_STATE(1725)] = 50951, - [SMALL_STATE(1726)] = 50958, - [SMALL_STATE(1727)] = 50965, - [SMALL_STATE(1728)] = 50972, - [SMALL_STATE(1729)] = 50979, - [SMALL_STATE(1730)] = 50986, - [SMALL_STATE(1731)] = 50993, - [SMALL_STATE(1732)] = 51000, - [SMALL_STATE(1733)] = 51007, - [SMALL_STATE(1734)] = 51014, - [SMALL_STATE(1735)] = 51021, - [SMALL_STATE(1736)] = 51028, - [SMALL_STATE(1737)] = 51035, - [SMALL_STATE(1738)] = 51042, - [SMALL_STATE(1739)] = 51049, - [SMALL_STATE(1740)] = 51056, - [SMALL_STATE(1741)] = 51063, - [SMALL_STATE(1742)] = 51070, - [SMALL_STATE(1743)] = 51077, - [SMALL_STATE(1744)] = 51084, - [SMALL_STATE(1745)] = 51091, - [SMALL_STATE(1746)] = 51098, - [SMALL_STATE(1747)] = 51105, - [SMALL_STATE(1748)] = 51112, - [SMALL_STATE(1749)] = 51119, - [SMALL_STATE(1750)] = 51126, - [SMALL_STATE(1751)] = 51133, - [SMALL_STATE(1752)] = 51140, - [SMALL_STATE(1753)] = 51147, - [SMALL_STATE(1754)] = 51154, - [SMALL_STATE(1755)] = 51161, - [SMALL_STATE(1756)] = 51168, - [SMALL_STATE(1757)] = 51175, - [SMALL_STATE(1758)] = 51182, - [SMALL_STATE(1759)] = 51189, - [SMALL_STATE(1760)] = 51196, - [SMALL_STATE(1761)] = 51203, - [SMALL_STATE(1762)] = 51210, - [SMALL_STATE(1763)] = 51217, - [SMALL_STATE(1764)] = 51224, - [SMALL_STATE(1765)] = 51231, - [SMALL_STATE(1766)] = 51238, - [SMALL_STATE(1767)] = 51245, - [SMALL_STATE(1768)] = 51252, - [SMALL_STATE(1769)] = 51259, - [SMALL_STATE(1770)] = 51266, - [SMALL_STATE(1771)] = 51273, - [SMALL_STATE(1772)] = 51280, - [SMALL_STATE(1773)] = 51287, - [SMALL_STATE(1774)] = 51294, - [SMALL_STATE(1775)] = 51301, - [SMALL_STATE(1776)] = 51308, - [SMALL_STATE(1777)] = 51315, - [SMALL_STATE(1778)] = 51322, - [SMALL_STATE(1779)] = 51329, - [SMALL_STATE(1780)] = 51336, - [SMALL_STATE(1781)] = 51343, - [SMALL_STATE(1782)] = 51350, - [SMALL_STATE(1783)] = 51357, - [SMALL_STATE(1784)] = 51364, - [SMALL_STATE(1785)] = 51371, - [SMALL_STATE(1786)] = 51378, - [SMALL_STATE(1787)] = 51385, - [SMALL_STATE(1788)] = 51392, - [SMALL_STATE(1789)] = 51399, - [SMALL_STATE(1790)] = 51406, - [SMALL_STATE(1791)] = 51413, - [SMALL_STATE(1792)] = 51420, - [SMALL_STATE(1793)] = 51427, - [SMALL_STATE(1794)] = 51434, - [SMALL_STATE(1795)] = 51441, - [SMALL_STATE(1796)] = 51448, - [SMALL_STATE(1797)] = 51455, - [SMALL_STATE(1798)] = 51462, - [SMALL_STATE(1799)] = 51469, - [SMALL_STATE(1800)] = 51476, - [SMALL_STATE(1801)] = 51483, - [SMALL_STATE(1802)] = 51490, - [SMALL_STATE(1803)] = 51497, - [SMALL_STATE(1804)] = 51504, - [SMALL_STATE(1805)] = 51511, - [SMALL_STATE(1806)] = 51518, - [SMALL_STATE(1807)] = 51525, - [SMALL_STATE(1808)] = 51532, - [SMALL_STATE(1809)] = 51539, - [SMALL_STATE(1810)] = 51546, - [SMALL_STATE(1811)] = 51553, - [SMALL_STATE(1812)] = 51560, - [SMALL_STATE(1813)] = 51567, - [SMALL_STATE(1814)] = 51574, - [SMALL_STATE(1815)] = 51581, - [SMALL_STATE(1816)] = 51588, - [SMALL_STATE(1817)] = 51595, - [SMALL_STATE(1818)] = 51602, - [SMALL_STATE(1819)] = 51609, - [SMALL_STATE(1820)] = 51616, - [SMALL_STATE(1821)] = 51623, - [SMALL_STATE(1822)] = 51630, - [SMALL_STATE(1823)] = 51637, - [SMALL_STATE(1824)] = 51644, - [SMALL_STATE(1825)] = 51651, - [SMALL_STATE(1826)] = 51658, - [SMALL_STATE(1827)] = 51665, - [SMALL_STATE(1828)] = 51672, - [SMALL_STATE(1829)] = 51679, - [SMALL_STATE(1830)] = 51686, - [SMALL_STATE(1831)] = 51693, - [SMALL_STATE(1832)] = 51700, - [SMALL_STATE(1833)] = 51707, - [SMALL_STATE(1834)] = 51714, - [SMALL_STATE(1835)] = 51721, - [SMALL_STATE(1836)] = 51728, - [SMALL_STATE(1837)] = 51735, - [SMALL_STATE(1838)] = 51742, - [SMALL_STATE(1839)] = 51749, - [SMALL_STATE(1840)] = 51756, - [SMALL_STATE(1841)] = 51763, - [SMALL_STATE(1842)] = 51770, - [SMALL_STATE(1843)] = 51777, - [SMALL_STATE(1844)] = 51784, - [SMALL_STATE(1845)] = 51791, - [SMALL_STATE(1846)] = 51798, - [SMALL_STATE(1847)] = 51805, - [SMALL_STATE(1848)] = 51812, - [SMALL_STATE(1849)] = 51819, - [SMALL_STATE(1850)] = 51826, - [SMALL_STATE(1851)] = 51833, - [SMALL_STATE(1852)] = 51840, - [SMALL_STATE(1853)] = 51847, - [SMALL_STATE(1854)] = 51854, - [SMALL_STATE(1855)] = 51861, - [SMALL_STATE(1856)] = 51868, - [SMALL_STATE(1857)] = 51875, - [SMALL_STATE(1858)] = 51882, - [SMALL_STATE(1859)] = 51889, - [SMALL_STATE(1860)] = 51896, - [SMALL_STATE(1861)] = 51903, - [SMALL_STATE(1862)] = 51910, - [SMALL_STATE(1863)] = 51917, - [SMALL_STATE(1864)] = 51924, - [SMALL_STATE(1865)] = 51931, - [SMALL_STATE(1866)] = 51938, - [SMALL_STATE(1867)] = 51945, - [SMALL_STATE(1868)] = 51952, - [SMALL_STATE(1869)] = 51959, - [SMALL_STATE(1870)] = 51966, - [SMALL_STATE(1871)] = 51973, - [SMALL_STATE(1872)] = 51980, - [SMALL_STATE(1873)] = 51987, - [SMALL_STATE(1874)] = 51994, - [SMALL_STATE(1875)] = 52001, - [SMALL_STATE(1876)] = 52008, - [SMALL_STATE(1877)] = 52015, - [SMALL_STATE(1878)] = 52022, - [SMALL_STATE(1879)] = 52029, - [SMALL_STATE(1880)] = 52036, - [SMALL_STATE(1881)] = 52043, - [SMALL_STATE(1882)] = 52050, - [SMALL_STATE(1883)] = 52057, - [SMALL_STATE(1884)] = 52064, - [SMALL_STATE(1885)] = 52071, - [SMALL_STATE(1886)] = 52078, - [SMALL_STATE(1887)] = 52085, - [SMALL_STATE(1888)] = 52092, - [SMALL_STATE(1889)] = 52099, - [SMALL_STATE(1890)] = 52106, - [SMALL_STATE(1891)] = 52113, - [SMALL_STATE(1892)] = 52120, - [SMALL_STATE(1893)] = 52127, - [SMALL_STATE(1894)] = 52134, - [SMALL_STATE(1895)] = 52141, - [SMALL_STATE(1896)] = 52148, - [SMALL_STATE(1897)] = 52155, - [SMALL_STATE(1898)] = 52162, - [SMALL_STATE(1899)] = 52169, - [SMALL_STATE(1900)] = 52176, - [SMALL_STATE(1901)] = 52183, - [SMALL_STATE(1902)] = 52190, - [SMALL_STATE(1903)] = 52197, - [SMALL_STATE(1904)] = 52204, - [SMALL_STATE(1905)] = 52211, - [SMALL_STATE(1906)] = 52218, - [SMALL_STATE(1907)] = 52225, - [SMALL_STATE(1908)] = 52232, - [SMALL_STATE(1909)] = 52239, - [SMALL_STATE(1910)] = 52246, - [SMALL_STATE(1911)] = 52253, - [SMALL_STATE(1912)] = 52260, - [SMALL_STATE(1913)] = 52267, - [SMALL_STATE(1914)] = 52274, - [SMALL_STATE(1915)] = 52281, - [SMALL_STATE(1916)] = 52288, - [SMALL_STATE(1917)] = 52295, - [SMALL_STATE(1918)] = 52302, - [SMALL_STATE(1919)] = 52309, - [SMALL_STATE(1920)] = 52316, - [SMALL_STATE(1921)] = 52323, - [SMALL_STATE(1922)] = 52330, - [SMALL_STATE(1923)] = 52337, - [SMALL_STATE(1924)] = 52344, - [SMALL_STATE(1925)] = 52351, - [SMALL_STATE(1926)] = 52358, - [SMALL_STATE(1927)] = 52365, - [SMALL_STATE(1928)] = 52372, + [SMALL_STATE(71)] = 0, + [SMALL_STATE(72)] = 123, + [SMALL_STATE(73)] = 253, + [SMALL_STATE(74)] = 373, + [SMALL_STATE(75)] = 490, + [SMALL_STATE(76)] = 619, + [SMALL_STATE(77)] = 736, + [SMALL_STATE(78)] = 851, + [SMALL_STATE(79)] = 972, + [SMALL_STATE(80)] = 1089, + [SMALL_STATE(81)] = 1206, + [SMALL_STATE(82)] = 1320, + [SMALL_STATE(83)] = 1434, + [SMALL_STATE(84)] = 1548, + [SMALL_STATE(85)] = 1662, + [SMALL_STATE(86)] = 1776, + [SMALL_STATE(87)] = 1890, + [SMALL_STATE(88)] = 2021, + [SMALL_STATE(89)] = 2152, + [SMALL_STATE(90)] = 2272, + [SMALL_STATE(91)] = 2400, + [SMALL_STATE(92)] = 2525, + [SMALL_STATE(93)] = 2650, + [SMALL_STATE(94)] = 2770, + [SMALL_STATE(95)] = 2892, + [SMALL_STATE(96)] = 3009, + [SMALL_STATE(97)] = 3122, + [SMALL_STATE(98)] = 3231, + [SMALL_STATE(99)] = 3339, + [SMALL_STATE(100)] = 3447, + [SMALL_STATE(101)] = 3555, + [SMALL_STATE(102)] = 3660, + [SMALL_STATE(103)] = 3764, + [SMALL_STATE(104)] = 3865, + [SMALL_STATE(105)] = 3966, + [SMALL_STATE(106)] = 4067, + [SMALL_STATE(107)] = 4123, + [SMALL_STATE(108)] = 4179, + [SMALL_STATE(109)] = 4235, + [SMALL_STATE(110)] = 4291, + [SMALL_STATE(111)] = 4347, + [SMALL_STATE(112)] = 4403, + [SMALL_STATE(113)] = 4459, + [SMALL_STATE(114)] = 4515, + [SMALL_STATE(115)] = 4571, + [SMALL_STATE(116)] = 4627, + [SMALL_STATE(117)] = 4683, + [SMALL_STATE(118)] = 4783, + [SMALL_STATE(119)] = 4881, + [SMALL_STATE(120)] = 4937, + [SMALL_STATE(121)] = 4993, + [SMALL_STATE(122)] = 5049, + [SMALL_STATE(123)] = 5105, + [SMALL_STATE(124)] = 5161, + [SMALL_STATE(125)] = 5217, + [SMALL_STATE(126)] = 5273, + [SMALL_STATE(127)] = 5329, + [SMALL_STATE(128)] = 5385, + [SMALL_STATE(129)] = 5441, + [SMALL_STATE(130)] = 5497, + [SMALL_STATE(131)] = 5553, + [SMALL_STATE(132)] = 5609, + [SMALL_STATE(133)] = 5709, + [SMALL_STATE(134)] = 5765, + [SMALL_STATE(135)] = 5821, + [SMALL_STATE(136)] = 5877, + [SMALL_STATE(137)] = 5933, + [SMALL_STATE(138)] = 5989, + [SMALL_STATE(139)] = 6045, + [SMALL_STATE(140)] = 6101, + [SMALL_STATE(141)] = 6157, + [SMALL_STATE(142)] = 6213, + [SMALL_STATE(143)] = 6269, + [SMALL_STATE(144)] = 6369, + [SMALL_STATE(145)] = 6425, + [SMALL_STATE(146)] = 6523, + [SMALL_STATE(147)] = 6579, + [SMALL_STATE(148)] = 6635, + [SMALL_STATE(149)] = 6691, + [SMALL_STATE(150)] = 6747, + [SMALL_STATE(151)] = 6803, + [SMALL_STATE(152)] = 6859, + [SMALL_STATE(153)] = 6915, + [SMALL_STATE(154)] = 6971, + [SMALL_STATE(155)] = 7027, + [SMALL_STATE(156)] = 7083, + [SMALL_STATE(157)] = 7139, + [SMALL_STATE(158)] = 7195, + [SMALL_STATE(159)] = 7251, + [SMALL_STATE(160)] = 7347, + [SMALL_STATE(161)] = 7403, + [SMALL_STATE(162)] = 7459, + [SMALL_STATE(163)] = 7515, + [SMALL_STATE(164)] = 7611, + [SMALL_STATE(165)] = 7667, + [SMALL_STATE(166)] = 7723, + [SMALL_STATE(167)] = 7821, + [SMALL_STATE(168)] = 7877, + [SMALL_STATE(169)] = 7933, + [SMALL_STATE(170)] = 7989, + [SMALL_STATE(171)] = 8045, + [SMALL_STATE(172)] = 8101, + [SMALL_STATE(173)] = 8157, + [SMALL_STATE(174)] = 8213, + [SMALL_STATE(175)] = 8269, + [SMALL_STATE(176)] = 8325, + [SMALL_STATE(177)] = 8420, + [SMALL_STATE(178)] = 8515, + [SMALL_STATE(179)] = 8610, + [SMALL_STATE(180)] = 8705, + [SMALL_STATE(181)] = 8800, + [SMALL_STATE(182)] = 8895, + [SMALL_STATE(183)] = 8990, + [SMALL_STATE(184)] = 9085, + [SMALL_STATE(185)] = 9180, + [SMALL_STATE(186)] = 9275, + [SMALL_STATE(187)] = 9370, + [SMALL_STATE(188)] = 9465, + [SMALL_STATE(189)] = 9557, + [SMALL_STATE(190)] = 9649, + [SMALL_STATE(191)] = 9703, + [SMALL_STATE(192)] = 9795, + [SMALL_STATE(193)] = 9887, + [SMALL_STATE(194)] = 9979, + [SMALL_STATE(195)] = 10071, + [SMALL_STATE(196)] = 10163, + [SMALL_STATE(197)] = 10255, + [SMALL_STATE(198)] = 10347, + [SMALL_STATE(199)] = 10439, + [SMALL_STATE(200)] = 10531, + [SMALL_STATE(201)] = 10585, + [SMALL_STATE(202)] = 10677, + [SMALL_STATE(203)] = 10769, + [SMALL_STATE(204)] = 10861, + [SMALL_STATE(205)] = 10915, + [SMALL_STATE(206)] = 11009, + [SMALL_STATE(207)] = 11063, + [SMALL_STATE(208)] = 11117, + [SMALL_STATE(209)] = 11171, + [SMALL_STATE(210)] = 11225, + [SMALL_STATE(211)] = 11317, + [SMALL_STATE(212)] = 11371, + [SMALL_STATE(213)] = 11463, + [SMALL_STATE(214)] = 11517, + [SMALL_STATE(215)] = 11609, + [SMALL_STATE(216)] = 11701, + [SMALL_STATE(217)] = 11793, + [SMALL_STATE(218)] = 11885, + [SMALL_STATE(219)] = 11977, + [SMALL_STATE(220)] = 12031, + [SMALL_STATE(221)] = 12085, + [SMALL_STATE(222)] = 12139, + [SMALL_STATE(223)] = 12231, + [SMALL_STATE(224)] = 12285, + [SMALL_STATE(225)] = 12377, + [SMALL_STATE(226)] = 12469, + [SMALL_STATE(227)] = 12561, + [SMALL_STATE(228)] = 12615, + [SMALL_STATE(229)] = 12707, + [SMALL_STATE(230)] = 12761, + [SMALL_STATE(231)] = 12815, + [SMALL_STATE(232)] = 12907, + [SMALL_STATE(233)] = 12999, + [SMALL_STATE(234)] = 13091, + [SMALL_STATE(235)] = 13183, + [SMALL_STATE(236)] = 13275, + [SMALL_STATE(237)] = 13367, + [SMALL_STATE(238)] = 13421, + [SMALL_STATE(239)] = 13513, + [SMALL_STATE(240)] = 13605, + [SMALL_STATE(241)] = 13697, + [SMALL_STATE(242)] = 13751, + [SMALL_STATE(243)] = 13805, + [SMALL_STATE(244)] = 13859, + [SMALL_STATE(245)] = 13913, + [SMALL_STATE(246)] = 14005, + [SMALL_STATE(247)] = 14059, + [SMALL_STATE(248)] = 14151, + [SMALL_STATE(249)] = 14243, + [SMALL_STATE(250)] = 14335, + [SMALL_STATE(251)] = 14427, + [SMALL_STATE(252)] = 14518, + [SMALL_STATE(253)] = 14609, + [SMALL_STATE(254)] = 14698, + [SMALL_STATE(255)] = 14789, + [SMALL_STATE(256)] = 14878, + [SMALL_STATE(257)] = 14967, + [SMALL_STATE(258)] = 15058, + [SMALL_STATE(259)] = 15149, + [SMALL_STATE(260)] = 15211, + [SMALL_STATE(261)] = 15299, + [SMALL_STATE(262)] = 15387, + [SMALL_STATE(263)] = 15449, + [SMALL_STATE(264)] = 15500, + [SMALL_STATE(265)] = 15551, + [SMALL_STATE(266)] = 15602, + [SMALL_STATE(267)] = 15653, + [SMALL_STATE(268)] = 15738, + [SMALL_STATE(269)] = 15789, + [SMALL_STATE(270)] = 15840, + [SMALL_STATE(271)] = 15891, + [SMALL_STATE(272)] = 15942, + [SMALL_STATE(273)] = 16029, + [SMALL_STATE(274)] = 16088, + [SMALL_STATE(275)] = 16139, + [SMALL_STATE(276)] = 16189, + [SMALL_STATE(277)] = 16239, + [SMALL_STATE(278)] = 16289, + [SMALL_STATE(279)] = 16339, + [SMALL_STATE(280)] = 16389, + [SMALL_STATE(281)] = 16439, + [SMALL_STATE(282)] = 16489, + [SMALL_STATE(283)] = 16539, + [SMALL_STATE(284)] = 16589, + [SMALL_STATE(285)] = 16639, + [SMALL_STATE(286)] = 16689, + [SMALL_STATE(287)] = 16739, + [SMALL_STATE(288)] = 16789, + [SMALL_STATE(289)] = 16839, + [SMALL_STATE(290)] = 16889, + [SMALL_STATE(291)] = 16939, + [SMALL_STATE(292)] = 16989, + [SMALL_STATE(293)] = 17039, + [SMALL_STATE(294)] = 17089, + [SMALL_STATE(295)] = 17139, + [SMALL_STATE(296)] = 17189, + [SMALL_STATE(297)] = 17239, + [SMALL_STATE(298)] = 17289, + [SMALL_STATE(299)] = 17339, + [SMALL_STATE(300)] = 17389, + [SMALL_STATE(301)] = 17439, + [SMALL_STATE(302)] = 17489, + [SMALL_STATE(303)] = 17539, + [SMALL_STATE(304)] = 17589, + [SMALL_STATE(305)] = 17639, + [SMALL_STATE(306)] = 17689, + [SMALL_STATE(307)] = 17739, + [SMALL_STATE(308)] = 17789, + [SMALL_STATE(309)] = 17839, + [SMALL_STATE(310)] = 17889, + [SMALL_STATE(311)] = 17939, + [SMALL_STATE(312)] = 17989, + [SMALL_STATE(313)] = 18039, + [SMALL_STATE(314)] = 18089, + [SMALL_STATE(315)] = 18139, + [SMALL_STATE(316)] = 18189, + [SMALL_STATE(317)] = 18239, + [SMALL_STATE(318)] = 18289, + [SMALL_STATE(319)] = 18339, + [SMALL_STATE(320)] = 18389, + [SMALL_STATE(321)] = 18439, + [SMALL_STATE(322)] = 18489, + [SMALL_STATE(323)] = 18539, + [SMALL_STATE(324)] = 18589, + [SMALL_STATE(325)] = 18639, + [SMALL_STATE(326)] = 18689, + [SMALL_STATE(327)] = 18739, + [SMALL_STATE(328)] = 18789, + [SMALL_STATE(329)] = 18839, + [SMALL_STATE(330)] = 18889, + [SMALL_STATE(331)] = 18939, + [SMALL_STATE(332)] = 18989, + [SMALL_STATE(333)] = 19039, + [SMALL_STATE(334)] = 19089, + [SMALL_STATE(335)] = 19139, + [SMALL_STATE(336)] = 19189, + [SMALL_STATE(337)] = 19239, + [SMALL_STATE(338)] = 19289, + [SMALL_STATE(339)] = 19339, + [SMALL_STATE(340)] = 19389, + [SMALL_STATE(341)] = 19439, + [SMALL_STATE(342)] = 19489, + [SMALL_STATE(343)] = 19539, + [SMALL_STATE(344)] = 19589, + [SMALL_STATE(345)] = 19639, + [SMALL_STATE(346)] = 19689, + [SMALL_STATE(347)] = 19739, + [SMALL_STATE(348)] = 19789, + [SMALL_STATE(349)] = 19839, + [SMALL_STATE(350)] = 19889, + [SMALL_STATE(351)] = 19939, + [SMALL_STATE(352)] = 19989, + [SMALL_STATE(353)] = 20039, + [SMALL_STATE(354)] = 20089, + [SMALL_STATE(355)] = 20139, + [SMALL_STATE(356)] = 20189, + [SMALL_STATE(357)] = 20239, + [SMALL_STATE(358)] = 20289, + [SMALL_STATE(359)] = 20339, + [SMALL_STATE(360)] = 20389, + [SMALL_STATE(361)] = 20439, + [SMALL_STATE(362)] = 20489, + [SMALL_STATE(363)] = 20539, + [SMALL_STATE(364)] = 20589, + [SMALL_STATE(365)] = 20639, + [SMALL_STATE(366)] = 20689, + [SMALL_STATE(367)] = 20739, + [SMALL_STATE(368)] = 20789, + [SMALL_STATE(369)] = 20839, + [SMALL_STATE(370)] = 20889, + [SMALL_STATE(371)] = 20939, + [SMALL_STATE(372)] = 20989, + [SMALL_STATE(373)] = 21039, + [SMALL_STATE(374)] = 21089, + [SMALL_STATE(375)] = 21139, + [SMALL_STATE(376)] = 21189, + [SMALL_STATE(377)] = 21239, + [SMALL_STATE(378)] = 21289, + [SMALL_STATE(379)] = 21339, + [SMALL_STATE(380)] = 21389, + [SMALL_STATE(381)] = 21439, + [SMALL_STATE(382)] = 21489, + [SMALL_STATE(383)] = 21539, + [SMALL_STATE(384)] = 21589, + [SMALL_STATE(385)] = 21639, + [SMALL_STATE(386)] = 21689, + [SMALL_STATE(387)] = 21739, + [SMALL_STATE(388)] = 21789, + [SMALL_STATE(389)] = 21839, + [SMALL_STATE(390)] = 21889, + [SMALL_STATE(391)] = 21939, + [SMALL_STATE(392)] = 21989, + [SMALL_STATE(393)] = 22039, + [SMALL_STATE(394)] = 22089, + [SMALL_STATE(395)] = 22139, + [SMALL_STATE(396)] = 22189, + [SMALL_STATE(397)] = 22239, + [SMALL_STATE(398)] = 22289, + [SMALL_STATE(399)] = 22339, + [SMALL_STATE(400)] = 22389, + [SMALL_STATE(401)] = 22473, + [SMALL_STATE(402)] = 22523, + [SMALL_STATE(403)] = 22573, + [SMALL_STATE(404)] = 22623, + [SMALL_STATE(405)] = 22673, + [SMALL_STATE(406)] = 22723, + [SMALL_STATE(407)] = 22773, + [SMALL_STATE(408)] = 22823, + [SMALL_STATE(409)] = 22873, + [SMALL_STATE(410)] = 22923, + [SMALL_STATE(411)] = 22973, + [SMALL_STATE(412)] = 23023, + [SMALL_STATE(413)] = 23073, + [SMALL_STATE(414)] = 23123, + [SMALL_STATE(415)] = 23173, + [SMALL_STATE(416)] = 23223, + [SMALL_STATE(417)] = 23273, + [SMALL_STATE(418)] = 23323, + [SMALL_STATE(419)] = 23373, + [SMALL_STATE(420)] = 23423, + [SMALL_STATE(421)] = 23473, + [SMALL_STATE(422)] = 23523, + [SMALL_STATE(423)] = 23573, + [SMALL_STATE(424)] = 23623, + [SMALL_STATE(425)] = 23673, + [SMALL_STATE(426)] = 23723, + [SMALL_STATE(427)] = 23773, + [SMALL_STATE(428)] = 23823, + [SMALL_STATE(429)] = 23907, + [SMALL_STATE(430)] = 23957, + [SMALL_STATE(431)] = 24007, + [SMALL_STATE(432)] = 24057, + [SMALL_STATE(433)] = 24107, + [SMALL_STATE(434)] = 24157, + [SMALL_STATE(435)] = 24207, + [SMALL_STATE(436)] = 24257, + [SMALL_STATE(437)] = 24307, + [SMALL_STATE(438)] = 24357, + [SMALL_STATE(439)] = 24407, + [SMALL_STATE(440)] = 24457, + [SMALL_STATE(441)] = 24507, + [SMALL_STATE(442)] = 24557, + [SMALL_STATE(443)] = 24607, + [SMALL_STATE(444)] = 24657, + [SMALL_STATE(445)] = 24707, + [SMALL_STATE(446)] = 24757, + [SMALL_STATE(447)] = 24807, + [SMALL_STATE(448)] = 24857, + [SMALL_STATE(449)] = 24907, + [SMALL_STATE(450)] = 24957, + [SMALL_STATE(451)] = 25007, + [SMALL_STATE(452)] = 25057, + [SMALL_STATE(453)] = 25107, + [SMALL_STATE(454)] = 25157, + [SMALL_STATE(455)] = 25207, + [SMALL_STATE(456)] = 25257, + [SMALL_STATE(457)] = 25307, + [SMALL_STATE(458)] = 25357, + [SMALL_STATE(459)] = 25407, + [SMALL_STATE(460)] = 25457, + [SMALL_STATE(461)] = 25507, + [SMALL_STATE(462)] = 25557, + [SMALL_STATE(463)] = 25607, + [SMALL_STATE(464)] = 25688, + [SMALL_STATE(465)] = 25769, + [SMALL_STATE(466)] = 25818, + [SMALL_STATE(467)] = 25867, + [SMALL_STATE(468)] = 25948, + [SMALL_STATE(469)] = 25997, + [SMALL_STATE(470)] = 26046, + [SMALL_STATE(471)] = 26095, + [SMALL_STATE(472)] = 26176, + [SMALL_STATE(473)] = 26257, + [SMALL_STATE(474)] = 26338, + [SMALL_STATE(475)] = 26419, + [SMALL_STATE(476)] = 26500, + [SMALL_STATE(477)] = 26581, + [SMALL_STATE(478)] = 26662, + [SMALL_STATE(479)] = 26711, + [SMALL_STATE(480)] = 26760, + [SMALL_STATE(481)] = 26841, + [SMALL_STATE(482)] = 26897, + [SMALL_STATE(483)] = 26953, + [SMALL_STATE(484)] = 27009, + [SMALL_STATE(485)] = 27056, + [SMALL_STATE(486)] = 27103, + [SMALL_STATE(487)] = 27150, + [SMALL_STATE(488)] = 27197, + [SMALL_STATE(489)] = 27246, + [SMALL_STATE(490)] = 27293, + [SMALL_STATE(491)] = 27340, + [SMALL_STATE(492)] = 27387, + [SMALL_STATE(493)] = 27450, + [SMALL_STATE(494)] = 27497, + [SMALL_STATE(495)] = 27581, + [SMALL_STATE(496)] = 27627, + [SMALL_STATE(497)] = 27673, + [SMALL_STATE(498)] = 27719, + [SMALL_STATE(499)] = 27765, + [SMALL_STATE(500)] = 27844, + [SMALL_STATE(501)] = 27913, + [SMALL_STATE(502)] = 27982, + [SMALL_STATE(503)] = 28034, + [SMALL_STATE(504)] = 28086, + [SMALL_STATE(505)] = 28138, + [SMALL_STATE(506)] = 28204, + [SMALL_STATE(507)] = 28256, + [SMALL_STATE(508)] = 28308, + [SMALL_STATE(509)] = 28389, + [SMALL_STATE(510)] = 28470, + [SMALL_STATE(511)] = 28512, + [SMALL_STATE(512)] = 28561, + [SMALL_STATE(513)] = 28606, + [SMALL_STATE(514)] = 28652, + [SMALL_STATE(515)] = 28697, + [SMALL_STATE(516)] = 28736, + [SMALL_STATE(517)] = 28790, + [SMALL_STATE(518)] = 28844, + [SMALL_STATE(519)] = 28898, + [SMALL_STATE(520)] = 28940, + [SMALL_STATE(521)] = 28994, + [SMALL_STATE(522)] = 29038, + [SMALL_STATE(523)] = 29087, + [SMALL_STATE(524)] = 29132, + [SMALL_STATE(525)] = 29182, + [SMALL_STATE(526)] = 29239, + [SMALL_STATE(527)] = 29296, + [SMALL_STATE(528)] = 29332, + [SMALL_STATE(529)] = 29388, + [SMALL_STATE(530)] = 29444, + [SMALL_STATE(531)] = 29500, + [SMALL_STATE(532)] = 29556, + [SMALL_STATE(533)] = 29612, + [SMALL_STATE(534)] = 29669, + [SMALL_STATE(535)] = 29726, + [SMALL_STATE(536)] = 29763, + [SMALL_STATE(537)] = 29820, + [SMALL_STATE(538)] = 29877, + [SMALL_STATE(539)] = 29934, + [SMALL_STATE(540)] = 29988, + [SMALL_STATE(541)] = 30042, + [SMALL_STATE(542)] = 30074, + [SMALL_STATE(543)] = 30128, + [SMALL_STATE(544)] = 30178, + [SMALL_STATE(545)] = 30232, + [SMALL_STATE(546)] = 30272, + [SMALL_STATE(547)] = 30322, + [SMALL_STATE(548)] = 30376, + [SMALL_STATE(549)] = 30410, + [SMALL_STATE(550)] = 30464, + [SMALL_STATE(551)] = 30505, + [SMALL_STATE(552)] = 30534, + [SMALL_STATE(553)] = 30585, + [SMALL_STATE(554)] = 30636, + [SMALL_STATE(555)] = 30687, + [SMALL_STATE(556)] = 30716, + [SMALL_STATE(557)] = 30765, + [SMALL_STATE(558)] = 30816, + [SMALL_STATE(559)] = 30845, + [SMALL_STATE(560)] = 30896, + [SMALL_STATE(561)] = 30947, + [SMALL_STATE(562)] = 31001, + [SMALL_STATE(563)] = 31053, + [SMALL_STATE(564)] = 31101, + [SMALL_STATE(565)] = 31144, + [SMALL_STATE(566)] = 31175, + [SMALL_STATE(567)] = 31222, + [SMALL_STATE(568)] = 31273, + [SMALL_STATE(569)] = 31316, + [SMALL_STATE(570)] = 31367, + [SMALL_STATE(571)] = 31418, + [SMALL_STATE(572)] = 31461, + [SMALL_STATE(573)] = 31492, + [SMALL_STATE(574)] = 31523, + [SMALL_STATE(575)] = 31552, + [SMALL_STATE(576)] = 31602, + [SMALL_STATE(577)] = 31650, + [SMALL_STATE(578)] = 31676, + [SMALL_STATE(579)] = 31702, + [SMALL_STATE(580)] = 31750, + [SMALL_STATE(581)] = 31776, + [SMALL_STATE(582)] = 31816, + [SMALL_STATE(583)] = 31842, + [SMALL_STATE(584)] = 31868, + [SMALL_STATE(585)] = 31905, + [SMALL_STATE(586)] = 31952, + [SMALL_STATE(587)] = 31999, + [SMALL_STATE(588)] = 32044, + [SMALL_STATE(589)] = 32089, + [SMALL_STATE(590)] = 32118, + [SMALL_STATE(591)] = 32147, + [SMALL_STATE(592)] = 32192, + [SMALL_STATE(593)] = 32221, + [SMALL_STATE(594)] = 32250, + [SMALL_STATE(595)] = 32279, + [SMALL_STATE(596)] = 32308, + [SMALL_STATE(597)] = 32355, + [SMALL_STATE(598)] = 32402, + [SMALL_STATE(599)] = 32444, + [SMALL_STATE(600)] = 32468, + [SMALL_STATE(601)] = 32502, + [SMALL_STATE(602)] = 32526, + [SMALL_STATE(603)] = 32550, + [SMALL_STATE(604)] = 32592, + [SMALL_STATE(605)] = 32616, + [SMALL_STATE(606)] = 32650, + [SMALL_STATE(607)] = 32692, + [SMALL_STATE(608)] = 32734, + [SMALL_STATE(609)] = 32758, + [SMALL_STATE(610)] = 32799, + [SMALL_STATE(611)] = 32840, + [SMALL_STATE(612)] = 32867, + [SMALL_STATE(613)] = 32906, + [SMALL_STATE(614)] = 32947, + [SMALL_STATE(615)] = 32974, + [SMALL_STATE(616)] = 33015, + [SMALL_STATE(617)] = 33053, + [SMALL_STATE(618)] = 33091, + [SMALL_STATE(619)] = 33129, + [SMALL_STATE(620)] = 33167, + [SMALL_STATE(621)] = 33205, + [SMALL_STATE(622)] = 33241, + [SMALL_STATE(623)] = 33279, + [SMALL_STATE(624)] = 33319, + [SMALL_STATE(625)] = 33357, + [SMALL_STATE(626)] = 33392, + [SMALL_STATE(627)] = 33429, + [SMALL_STATE(628)] = 33450, + [SMALL_STATE(629)] = 33485, + [SMALL_STATE(630)] = 33520, + [SMALL_STATE(631)] = 33555, + [SMALL_STATE(632)] = 33588, + [SMALL_STATE(633)] = 33621, + [SMALL_STATE(634)] = 33658, + [SMALL_STATE(635)] = 33693, + [SMALL_STATE(636)] = 33714, + [SMALL_STATE(637)] = 33749, + [SMALL_STATE(638)] = 33784, + [SMALL_STATE(639)] = 33819, + [SMALL_STATE(640)] = 33854, + [SMALL_STATE(641)] = 33889, + [SMALL_STATE(642)] = 33910, + [SMALL_STATE(643)] = 33945, + [SMALL_STATE(644)] = 33980, + [SMALL_STATE(645)] = 34015, + [SMALL_STATE(646)] = 34050, + [SMALL_STATE(647)] = 34085, + [SMALL_STATE(648)] = 34120, + [SMALL_STATE(649)] = 34155, + [SMALL_STATE(650)] = 34190, + [SMALL_STATE(651)] = 34223, + [SMALL_STATE(652)] = 34258, + [SMALL_STATE(653)] = 34291, + [SMALL_STATE(654)] = 34312, + [SMALL_STATE(655)] = 34345, + [SMALL_STATE(656)] = 34366, + [SMALL_STATE(657)] = 34401, + [SMALL_STATE(658)] = 34429, + [SMALL_STATE(659)] = 34461, + [SMALL_STATE(660)] = 34493, + [SMALL_STATE(661)] = 34521, + [SMALL_STATE(662)] = 34551, + [SMALL_STATE(663)] = 34583, + [SMALL_STATE(664)] = 34615, + [SMALL_STATE(665)] = 34647, + [SMALL_STATE(666)] = 34675, + [SMALL_STATE(667)] = 34707, + [SMALL_STATE(668)] = 34739, + [SMALL_STATE(669)] = 34771, + [SMALL_STATE(670)] = 34799, + [SMALL_STATE(671)] = 34831, + [SMALL_STATE(672)] = 34859, + [SMALL_STATE(673)] = 34891, + [SMALL_STATE(674)] = 34918, + [SMALL_STATE(675)] = 34945, + [SMALL_STATE(676)] = 34972, + [SMALL_STATE(677)] = 34999, + [SMALL_STATE(678)] = 35028, + [SMALL_STATE(679)] = 35057, + [SMALL_STATE(680)] = 35084, + [SMALL_STATE(681)] = 35111, + [SMALL_STATE(682)] = 35138, + [SMALL_STATE(683)] = 35165, + [SMALL_STATE(684)] = 35192, + [SMALL_STATE(685)] = 35221, + [SMALL_STATE(686)] = 35244, + [SMALL_STATE(687)] = 35271, + [SMALL_STATE(688)] = 35300, + [SMALL_STATE(689)] = 35327, + [SMALL_STATE(690)] = 35354, + [SMALL_STATE(691)] = 35381, + [SMALL_STATE(692)] = 35408, + [SMALL_STATE(693)] = 35437, + [SMALL_STATE(694)] = 35464, + [SMALL_STATE(695)] = 35491, + [SMALL_STATE(696)] = 35518, + [SMALL_STATE(697)] = 35545, + [SMALL_STATE(698)] = 35572, + [SMALL_STATE(699)] = 35599, + [SMALL_STATE(700)] = 35626, + [SMALL_STATE(701)] = 35653, + [SMALL_STATE(702)] = 35680, + [SMALL_STATE(703)] = 35709, + [SMALL_STATE(704)] = 35736, + [SMALL_STATE(705)] = 35763, + [SMALL_STATE(706)] = 35792, + [SMALL_STATE(707)] = 35819, + [SMALL_STATE(708)] = 35846, + [SMALL_STATE(709)] = 35873, + [SMALL_STATE(710)] = 35900, + [SMALL_STATE(711)] = 35927, + [SMALL_STATE(712)] = 35948, + [SMALL_STATE(713)] = 35975, + [SMALL_STATE(714)] = 35998, + [SMALL_STATE(715)] = 36025, + [SMALL_STATE(716)] = 36052, + [SMALL_STATE(717)] = 36081, + [SMALL_STATE(718)] = 36108, + [SMALL_STATE(719)] = 36135, + [SMALL_STATE(720)] = 36162, + [SMALL_STATE(721)] = 36189, + [SMALL_STATE(722)] = 36216, + [SMALL_STATE(723)] = 36243, + [SMALL_STATE(724)] = 36270, + [SMALL_STATE(725)] = 36297, + [SMALL_STATE(726)] = 36320, + [SMALL_STATE(727)] = 36347, + [SMALL_STATE(728)] = 36374, + [SMALL_STATE(729)] = 36403, + [SMALL_STATE(730)] = 36430, + [SMALL_STATE(731)] = 36457, + [SMALL_STATE(732)] = 36484, + [SMALL_STATE(733)] = 36511, + [SMALL_STATE(734)] = 36538, + [SMALL_STATE(735)] = 36565, + [SMALL_STATE(736)] = 36592, + [SMALL_STATE(737)] = 36621, + [SMALL_STATE(738)] = 36650, + [SMALL_STATE(739)] = 36677, + [SMALL_STATE(740)] = 36704, + [SMALL_STATE(741)] = 36727, + [SMALL_STATE(742)] = 36754, + [SMALL_STATE(743)] = 36783, + [SMALL_STATE(744)] = 36801, + [SMALL_STATE(745)] = 36825, + [SMALL_STATE(746)] = 36849, + [SMALL_STATE(747)] = 36873, + [SMALL_STATE(748)] = 36897, + [SMALL_STATE(749)] = 36921, + [SMALL_STATE(750)] = 36945, + [SMALL_STATE(751)] = 36969, + [SMALL_STATE(752)] = 36993, + [SMALL_STATE(753)] = 37017, + [SMALL_STATE(754)] = 37041, + [SMALL_STATE(755)] = 37065, + [SMALL_STATE(756)] = 37089, + [SMALL_STATE(757)] = 37113, + [SMALL_STATE(758)] = 37137, + [SMALL_STATE(759)] = 37161, + [SMALL_STATE(760)] = 37185, + [SMALL_STATE(761)] = 37205, + [SMALL_STATE(762)] = 37231, + [SMALL_STATE(763)] = 37255, + [SMALL_STATE(764)] = 37281, + [SMALL_STATE(765)] = 37305, + [SMALL_STATE(766)] = 37329, + [SMALL_STATE(767)] = 37353, + [SMALL_STATE(768)] = 37377, + [SMALL_STATE(769)] = 37397, + [SMALL_STATE(770)] = 37421, + [SMALL_STATE(771)] = 37445, + [SMALL_STATE(772)] = 37469, + [SMALL_STATE(773)] = 37493, + [SMALL_STATE(774)] = 37517, + [SMALL_STATE(775)] = 37541, + [SMALL_STATE(776)] = 37565, + [SMALL_STATE(777)] = 37589, + [SMALL_STATE(778)] = 37613, + [SMALL_STATE(779)] = 37637, + [SMALL_STATE(780)] = 37661, + [SMALL_STATE(781)] = 37685, + [SMALL_STATE(782)] = 37709, + [SMALL_STATE(783)] = 37733, + [SMALL_STATE(784)] = 37757, + [SMALL_STATE(785)] = 37779, + [SMALL_STATE(786)] = 37803, + [SMALL_STATE(787)] = 37827, + [SMALL_STATE(788)] = 37851, + [SMALL_STATE(789)] = 37875, + [SMALL_STATE(790)] = 37899, + [SMALL_STATE(791)] = 37921, + [SMALL_STATE(792)] = 37945, + [SMALL_STATE(793)] = 37969, + [SMALL_STATE(794)] = 37991, + [SMALL_STATE(795)] = 38015, + [SMALL_STATE(796)] = 38039, + [SMALL_STATE(797)] = 38063, + [SMALL_STATE(798)] = 38087, + [SMALL_STATE(799)] = 38111, + [SMALL_STATE(800)] = 38135, + [SMALL_STATE(801)] = 38159, + [SMALL_STATE(802)] = 38183, + [SMALL_STATE(803)] = 38207, + [SMALL_STATE(804)] = 38226, + [SMALL_STATE(805)] = 38245, + [SMALL_STATE(806)] = 38274, + [SMALL_STATE(807)] = 38293, + [SMALL_STATE(808)] = 38322, + [SMALL_STATE(809)] = 38341, + [SMALL_STATE(810)] = 38370, + [SMALL_STATE(811)] = 38389, + [SMALL_STATE(812)] = 38408, + [SMALL_STATE(813)] = 38440, + [SMALL_STATE(814)] = 38456, + [SMALL_STATE(815)] = 38472, + [SMALL_STATE(816)] = 38504, + [SMALL_STATE(817)] = 38520, + [SMALL_STATE(818)] = 38552, + [SMALL_STATE(819)] = 38568, + [SMALL_STATE(820)] = 38584, + [SMALL_STATE(821)] = 38616, + [SMALL_STATE(822)] = 38634, + [SMALL_STATE(823)] = 38661, + [SMALL_STATE(824)] = 38688, + [SMALL_STATE(825)] = 38719, + [SMALL_STATE(826)] = 38746, + [SMALL_STATE(827)] = 38777, + [SMALL_STATE(828)] = 38804, + [SMALL_STATE(829)] = 38831, + [SMALL_STATE(830)] = 38858, + [SMALL_STATE(831)] = 38889, + [SMALL_STATE(832)] = 38916, + [SMALL_STATE(833)] = 38945, + [SMALL_STATE(834)] = 38972, + [SMALL_STATE(835)] = 39001, + [SMALL_STATE(836)] = 39028, + [SMALL_STATE(837)] = 39051, + [SMALL_STATE(838)] = 39067, + [SMALL_STATE(839)] = 39083, + [SMALL_STATE(840)] = 39099, + [SMALL_STATE(841)] = 39115, + [SMALL_STATE(842)] = 39131, + [SMALL_STATE(843)] = 39153, + [SMALL_STATE(844)] = 39169, + [SMALL_STATE(845)] = 39185, + [SMALL_STATE(846)] = 39201, + [SMALL_STATE(847)] = 39217, + [SMALL_STATE(848)] = 39233, + [SMALL_STATE(849)] = 39249, + [SMALL_STATE(850)] = 39265, + [SMALL_STATE(851)] = 39281, + [SMALL_STATE(852)] = 39297, + [SMALL_STATE(853)] = 39323, + [SMALL_STATE(854)] = 39339, + [SMALL_STATE(855)] = 39355, + [SMALL_STATE(856)] = 39371, + [SMALL_STATE(857)] = 39387, + [SMALL_STATE(858)] = 39403, + [SMALL_STATE(859)] = 39419, + [SMALL_STATE(860)] = 39445, + [SMALL_STATE(861)] = 39461, + [SMALL_STATE(862)] = 39477, + [SMALL_STATE(863)] = 39493, + [SMALL_STATE(864)] = 39509, + [SMALL_STATE(865)] = 39525, + [SMALL_STATE(866)] = 39541, + [SMALL_STATE(867)] = 39557, + [SMALL_STATE(868)] = 39573, + [SMALL_STATE(869)] = 39589, + [SMALL_STATE(870)] = 39615, + [SMALL_STATE(871)] = 39637, + [SMALL_STATE(872)] = 39663, + [SMALL_STATE(873)] = 39679, + [SMALL_STATE(874)] = 39705, + [SMALL_STATE(875)] = 39721, + [SMALL_STATE(876)] = 39737, + [SMALL_STATE(877)] = 39753, + [SMALL_STATE(878)] = 39769, + [SMALL_STATE(879)] = 39795, + [SMALL_STATE(880)] = 39811, + [SMALL_STATE(881)] = 39827, + [SMALL_STATE(882)] = 39855, + [SMALL_STATE(883)] = 39871, + [SMALL_STATE(884)] = 39895, + [SMALL_STATE(885)] = 39911, + [SMALL_STATE(886)] = 39932, + [SMALL_STATE(887)] = 39957, + [SMALL_STATE(888)] = 39970, + [SMALL_STATE(889)] = 39983, + [SMALL_STATE(890)] = 40008, + [SMALL_STATE(891)] = 40033, + [SMALL_STATE(892)] = 40054, + [SMALL_STATE(893)] = 40079, + [SMALL_STATE(894)] = 40104, + [SMALL_STATE(895)] = 40125, + [SMALL_STATE(896)] = 40150, + [SMALL_STATE(897)] = 40175, + [SMALL_STATE(898)] = 40200, + [SMALL_STATE(899)] = 40225, + [SMALL_STATE(900)] = 40240, + [SMALL_STATE(901)] = 40253, + [SMALL_STATE(902)] = 40278, + [SMALL_STATE(903)] = 40301, + [SMALL_STATE(904)] = 40326, + [SMALL_STATE(905)] = 40351, + [SMALL_STATE(906)] = 40376, + [SMALL_STATE(907)] = 40389, + [SMALL_STATE(908)] = 40414, + [SMALL_STATE(909)] = 40439, + [SMALL_STATE(910)] = 40464, + [SMALL_STATE(911)] = 40489, + [SMALL_STATE(912)] = 40502, + [SMALL_STATE(913)] = 40527, + [SMALL_STATE(914)] = 40552, + [SMALL_STATE(915)] = 40577, + [SMALL_STATE(916)] = 40602, + [SMALL_STATE(917)] = 40623, + [SMALL_STATE(918)] = 40648, + [SMALL_STATE(919)] = 40670, + [SMALL_STATE(920)] = 40688, + [SMALL_STATE(921)] = 40700, + [SMALL_STATE(922)] = 40716, + [SMALL_STATE(923)] = 40736, + [SMALL_STATE(924)] = 40750, + [SMALL_STATE(925)] = 40768, + [SMALL_STATE(926)] = 40788, + [SMALL_STATE(927)] = 40806, + [SMALL_STATE(928)] = 40826, + [SMALL_STATE(929)] = 40844, + [SMALL_STATE(930)] = 40866, + [SMALL_STATE(931)] = 40880, + [SMALL_STATE(932)] = 40902, + [SMALL_STATE(933)] = 40924, + [SMALL_STATE(934)] = 40938, + [SMALL_STATE(935)] = 40960, + [SMALL_STATE(936)] = 40980, + [SMALL_STATE(937)] = 41002, + [SMALL_STATE(938)] = 41020, + [SMALL_STATE(939)] = 41042, + [SMALL_STATE(940)] = 41060, + [SMALL_STATE(941)] = 41074, + [SMALL_STATE(942)] = 41094, + [SMALL_STATE(943)] = 41108, + [SMALL_STATE(944)] = 41130, + [SMALL_STATE(945)] = 41152, + [SMALL_STATE(946)] = 41174, + [SMALL_STATE(947)] = 41196, + [SMALL_STATE(948)] = 41216, + [SMALL_STATE(949)] = 41230, + [SMALL_STATE(950)] = 41250, + [SMALL_STATE(951)] = 41266, + [SMALL_STATE(952)] = 41278, + [SMALL_STATE(953)] = 41294, + [SMALL_STATE(954)] = 41308, + [SMALL_STATE(955)] = 41322, + [SMALL_STATE(956)] = 41341, + [SMALL_STATE(957)] = 41358, + [SMALL_STATE(958)] = 41377, + [SMALL_STATE(959)] = 41396, + [SMALL_STATE(960)] = 41411, + [SMALL_STATE(961)] = 41428, + [SMALL_STATE(962)] = 41447, + [SMALL_STATE(963)] = 41466, + [SMALL_STATE(964)] = 41485, + [SMALL_STATE(965)] = 41504, + [SMALL_STATE(966)] = 41521, + [SMALL_STATE(967)] = 41540, + [SMALL_STATE(968)] = 41559, + [SMALL_STATE(969)] = 41576, + [SMALL_STATE(970)] = 41595, + [SMALL_STATE(971)] = 41610, + [SMALL_STATE(972)] = 41629, + [SMALL_STATE(973)] = 41646, + [SMALL_STATE(974)] = 41665, + [SMALL_STATE(975)] = 41684, + [SMALL_STATE(976)] = 41699, + [SMALL_STATE(977)] = 41716, + [SMALL_STATE(978)] = 41735, + [SMALL_STATE(979)] = 41754, + [SMALL_STATE(980)] = 41773, + [SMALL_STATE(981)] = 41792, + [SMALL_STATE(982)] = 41811, + [SMALL_STATE(983)] = 41822, + [SMALL_STATE(984)] = 41841, + [SMALL_STATE(985)] = 41860, + [SMALL_STATE(986)] = 41875, + [SMALL_STATE(987)] = 41894, + [SMALL_STATE(988)] = 41913, + [SMALL_STATE(989)] = 41932, + [SMALL_STATE(990)] = 41947, + [SMALL_STATE(991)] = 41966, + [SMALL_STATE(992)] = 41985, + [SMALL_STATE(993)] = 42004, + [SMALL_STATE(994)] = 42023, + [SMALL_STATE(995)] = 42042, + [SMALL_STATE(996)] = 42061, + [SMALL_STATE(997)] = 42076, + [SMALL_STATE(998)] = 42093, + [SMALL_STATE(999)] = 42112, + [SMALL_STATE(1000)] = 42131, + [SMALL_STATE(1001)] = 42150, + [SMALL_STATE(1002)] = 42167, + [SMALL_STATE(1003)] = 42182, + [SMALL_STATE(1004)] = 42201, + [SMALL_STATE(1005)] = 42220, + [SMALL_STATE(1006)] = 42239, + [SMALL_STATE(1007)] = 42258, + [SMALL_STATE(1008)] = 42277, + [SMALL_STATE(1009)] = 42296, + [SMALL_STATE(1010)] = 42311, + [SMALL_STATE(1011)] = 42330, + [SMALL_STATE(1012)] = 42349, + [SMALL_STATE(1013)] = 42364, + [SMALL_STATE(1014)] = 42377, + [SMALL_STATE(1015)] = 42396, + [SMALL_STATE(1016)] = 42415, + [SMALL_STATE(1017)] = 42434, + [SMALL_STATE(1018)] = 42453, + [SMALL_STATE(1019)] = 42472, + [SMALL_STATE(1020)] = 42491, + [SMALL_STATE(1021)] = 42508, + [SMALL_STATE(1022)] = 42527, + [SMALL_STATE(1023)] = 42542, + [SMALL_STATE(1024)] = 42553, + [SMALL_STATE(1025)] = 42572, + [SMALL_STATE(1026)] = 42591, + [SMALL_STATE(1027)] = 42610, + [SMALL_STATE(1028)] = 42629, + [SMALL_STATE(1029)] = 42644, + [SMALL_STATE(1030)] = 42661, + [SMALL_STATE(1031)] = 42672, + [SMALL_STATE(1032)] = 42683, + [SMALL_STATE(1033)] = 42702, + [SMALL_STATE(1034)] = 42721, + [SMALL_STATE(1035)] = 42732, + [SMALL_STATE(1036)] = 42751, + [SMALL_STATE(1037)] = 42770, + [SMALL_STATE(1038)] = 42789, + [SMALL_STATE(1039)] = 42808, + [SMALL_STATE(1040)] = 42827, + [SMALL_STATE(1041)] = 42840, + [SMALL_STATE(1042)] = 42851, + [SMALL_STATE(1043)] = 42870, + [SMALL_STATE(1044)] = 42882, + [SMALL_STATE(1045)] = 42898, + [SMALL_STATE(1046)] = 42912, + [SMALL_STATE(1047)] = 42926, + [SMALL_STATE(1048)] = 42938, + [SMALL_STATE(1049)] = 42950, + [SMALL_STATE(1050)] = 42960, + [SMALL_STATE(1051)] = 42976, + [SMALL_STATE(1052)] = 42990, + [SMALL_STATE(1053)] = 43006, + [SMALL_STATE(1054)] = 43022, + [SMALL_STATE(1055)] = 43032, + [SMALL_STATE(1056)] = 43048, + [SMALL_STATE(1057)] = 43062, + [SMALL_STATE(1058)] = 43076, + [SMALL_STATE(1059)] = 43088, + [SMALL_STATE(1060)] = 43104, + [SMALL_STATE(1061)] = 43120, + [SMALL_STATE(1062)] = 43134, + [SMALL_STATE(1063)] = 43150, + [SMALL_STATE(1064)] = 43164, + [SMALL_STATE(1065)] = 43176, + [SMALL_STATE(1066)] = 43192, + [SMALL_STATE(1067)] = 43206, + [SMALL_STATE(1068)] = 43216, + [SMALL_STATE(1069)] = 43232, + [SMALL_STATE(1070)] = 43242, + [SMALL_STATE(1071)] = 43256, + [SMALL_STATE(1072)] = 43272, + [SMALL_STATE(1073)] = 43288, + [SMALL_STATE(1074)] = 43300, + [SMALL_STATE(1075)] = 43316, + [SMALL_STATE(1076)] = 43332, + [SMALL_STATE(1077)] = 43344, + [SMALL_STATE(1078)] = 43358, + [SMALL_STATE(1079)] = 43370, + [SMALL_STATE(1080)] = 43386, + [SMALL_STATE(1081)] = 43396, + [SMALL_STATE(1082)] = 43412, + [SMALL_STATE(1083)] = 43428, + [SMALL_STATE(1084)] = 43442, + [SMALL_STATE(1085)] = 43458, + [SMALL_STATE(1086)] = 43468, + [SMALL_STATE(1087)] = 43482, + [SMALL_STATE(1088)] = 43496, + [SMALL_STATE(1089)] = 43512, + [SMALL_STATE(1090)] = 43526, + [SMALL_STATE(1091)] = 43540, + [SMALL_STATE(1092)] = 43554, + [SMALL_STATE(1093)] = 43570, + [SMALL_STATE(1094)] = 43584, + [SMALL_STATE(1095)] = 43598, + [SMALL_STATE(1096)] = 43612, + [SMALL_STATE(1097)] = 43622, + [SMALL_STATE(1098)] = 43638, + [SMALL_STATE(1099)] = 43654, + [SMALL_STATE(1100)] = 43668, + [SMALL_STATE(1101)] = 43684, + [SMALL_STATE(1102)] = 43700, + [SMALL_STATE(1103)] = 43716, + [SMALL_STATE(1104)] = 43730, + [SMALL_STATE(1105)] = 43740, + [SMALL_STATE(1106)] = 43752, + [SMALL_STATE(1107)] = 43766, + [SMALL_STATE(1108)] = 43782, + [SMALL_STATE(1109)] = 43798, + [SMALL_STATE(1110)] = 43814, + [SMALL_STATE(1111)] = 43824, + [SMALL_STATE(1112)] = 43840, + [SMALL_STATE(1113)] = 43856, + [SMALL_STATE(1114)] = 43870, + [SMALL_STATE(1115)] = 43886, + [SMALL_STATE(1116)] = 43902, + [SMALL_STATE(1117)] = 43916, + [SMALL_STATE(1118)] = 43932, + [SMALL_STATE(1119)] = 43942, + [SMALL_STATE(1120)] = 43952, + [SMALL_STATE(1121)] = 43966, + [SMALL_STATE(1122)] = 43980, + [SMALL_STATE(1123)] = 43996, + [SMALL_STATE(1124)] = 44012, + [SMALL_STATE(1125)] = 44026, + [SMALL_STATE(1126)] = 44042, + [SMALL_STATE(1127)] = 44058, + [SMALL_STATE(1128)] = 44074, + [SMALL_STATE(1129)] = 44090, + [SMALL_STATE(1130)] = 44103, + [SMALL_STATE(1131)] = 44116, + [SMALL_STATE(1132)] = 44129, + [SMALL_STATE(1133)] = 44142, + [SMALL_STATE(1134)] = 44153, + [SMALL_STATE(1135)] = 44166, + [SMALL_STATE(1136)] = 44175, + [SMALL_STATE(1137)] = 44188, + [SMALL_STATE(1138)] = 44197, + [SMALL_STATE(1139)] = 44206, + [SMALL_STATE(1140)] = 44219, + [SMALL_STATE(1141)] = 44232, + [SMALL_STATE(1142)] = 44241, + [SMALL_STATE(1143)] = 44254, + [SMALL_STATE(1144)] = 44267, + [SMALL_STATE(1145)] = 44280, + [SMALL_STATE(1146)] = 44293, + [SMALL_STATE(1147)] = 44306, + [SMALL_STATE(1148)] = 44319, + [SMALL_STATE(1149)] = 44332, + [SMALL_STATE(1150)] = 44345, + [SMALL_STATE(1151)] = 44354, + [SMALL_STATE(1152)] = 44363, + [SMALL_STATE(1153)] = 44376, + [SMALL_STATE(1154)] = 44389, + [SMALL_STATE(1155)] = 44402, + [SMALL_STATE(1156)] = 44411, + [SMALL_STATE(1157)] = 44424, + [SMALL_STATE(1158)] = 44433, + [SMALL_STATE(1159)] = 44446, + [SMALL_STATE(1160)] = 44459, + [SMALL_STATE(1161)] = 44468, + [SMALL_STATE(1162)] = 44481, + [SMALL_STATE(1163)] = 44494, + [SMALL_STATE(1164)] = 44505, + [SMALL_STATE(1165)] = 44514, + [SMALL_STATE(1166)] = 44527, + [SMALL_STATE(1167)] = 44540, + [SMALL_STATE(1168)] = 44553, + [SMALL_STATE(1169)] = 44566, + [SMALL_STATE(1170)] = 44579, + [SMALL_STATE(1171)] = 44590, + [SMALL_STATE(1172)] = 44599, + [SMALL_STATE(1173)] = 44612, + [SMALL_STATE(1174)] = 44625, + [SMALL_STATE(1175)] = 44638, + [SMALL_STATE(1176)] = 44647, + [SMALL_STATE(1177)] = 44658, + [SMALL_STATE(1178)] = 44671, + [SMALL_STATE(1179)] = 44684, + [SMALL_STATE(1180)] = 44697, + [SMALL_STATE(1181)] = 44706, + [SMALL_STATE(1182)] = 44719, + [SMALL_STATE(1183)] = 44728, + [SMALL_STATE(1184)] = 44737, + [SMALL_STATE(1185)] = 44750, + [SMALL_STATE(1186)] = 44759, + [SMALL_STATE(1187)] = 44772, + [SMALL_STATE(1188)] = 44781, + [SMALL_STATE(1189)] = 44790, + [SMALL_STATE(1190)] = 44801, + [SMALL_STATE(1191)] = 44814, + [SMALL_STATE(1192)] = 44827, + [SMALL_STATE(1193)] = 44840, + [SMALL_STATE(1194)] = 44853, + [SMALL_STATE(1195)] = 44866, + [SMALL_STATE(1196)] = 44879, + [SMALL_STATE(1197)] = 44892, + [SMALL_STATE(1198)] = 44905, + [SMALL_STATE(1199)] = 44918, + [SMALL_STATE(1200)] = 44931, + [SMALL_STATE(1201)] = 44944, + [SMALL_STATE(1202)] = 44957, + [SMALL_STATE(1203)] = 44970, + [SMALL_STATE(1204)] = 44983, + [SMALL_STATE(1205)] = 44996, + [SMALL_STATE(1206)] = 45009, + [SMALL_STATE(1207)] = 45018, + [SMALL_STATE(1208)] = 45031, + [SMALL_STATE(1209)] = 45044, + [SMALL_STATE(1210)] = 45057, + [SMALL_STATE(1211)] = 45070, + [SMALL_STATE(1212)] = 45083, + [SMALL_STATE(1213)] = 45096, + [SMALL_STATE(1214)] = 45107, + [SMALL_STATE(1215)] = 45116, + [SMALL_STATE(1216)] = 45125, + [SMALL_STATE(1217)] = 45138, + [SMALL_STATE(1218)] = 45151, + [SMALL_STATE(1219)] = 45160, + [SMALL_STATE(1220)] = 45169, + [SMALL_STATE(1221)] = 45182, + [SMALL_STATE(1222)] = 45191, + [SMALL_STATE(1223)] = 45204, + [SMALL_STATE(1224)] = 45213, + [SMALL_STATE(1225)] = 45222, + [SMALL_STATE(1226)] = 45235, + [SMALL_STATE(1227)] = 45248, + [SMALL_STATE(1228)] = 45261, + [SMALL_STATE(1229)] = 45274, + [SMALL_STATE(1230)] = 45287, + [SMALL_STATE(1231)] = 45300, + [SMALL_STATE(1232)] = 45313, + [SMALL_STATE(1233)] = 45326, + [SMALL_STATE(1234)] = 45339, + [SMALL_STATE(1235)] = 45352, + [SMALL_STATE(1236)] = 45365, + [SMALL_STATE(1237)] = 45378, + [SMALL_STATE(1238)] = 45391, + [SMALL_STATE(1239)] = 45400, + [SMALL_STATE(1240)] = 45409, + [SMALL_STATE(1241)] = 45422, + [SMALL_STATE(1242)] = 45433, + [SMALL_STATE(1243)] = 45446, + [SMALL_STATE(1244)] = 45455, + [SMALL_STATE(1245)] = 45468, + [SMALL_STATE(1246)] = 45481, + [SMALL_STATE(1247)] = 45492, + [SMALL_STATE(1248)] = 45501, + [SMALL_STATE(1249)] = 45514, + [SMALL_STATE(1250)] = 45527, + [SMALL_STATE(1251)] = 45540, + [SMALL_STATE(1252)] = 45553, + [SMALL_STATE(1253)] = 45566, + [SMALL_STATE(1254)] = 45575, + [SMALL_STATE(1255)] = 45584, + [SMALL_STATE(1256)] = 45593, + [SMALL_STATE(1257)] = 45602, + [SMALL_STATE(1258)] = 45611, + [SMALL_STATE(1259)] = 45624, + [SMALL_STATE(1260)] = 45633, + [SMALL_STATE(1261)] = 45646, + [SMALL_STATE(1262)] = 45659, + [SMALL_STATE(1263)] = 45672, + [SMALL_STATE(1264)] = 45681, + [SMALL_STATE(1265)] = 45694, + [SMALL_STATE(1266)] = 45707, + [SMALL_STATE(1267)] = 45720, + [SMALL_STATE(1268)] = 45733, + [SMALL_STATE(1269)] = 45744, + [SMALL_STATE(1270)] = 45753, + [SMALL_STATE(1271)] = 45762, + [SMALL_STATE(1272)] = 45771, + [SMALL_STATE(1273)] = 45784, + [SMALL_STATE(1274)] = 45797, + [SMALL_STATE(1275)] = 45810, + [SMALL_STATE(1276)] = 45823, + [SMALL_STATE(1277)] = 45836, + [SMALL_STATE(1278)] = 45845, + [SMALL_STATE(1279)] = 45858, + [SMALL_STATE(1280)] = 45867, + [SMALL_STATE(1281)] = 45876, + [SMALL_STATE(1282)] = 45885, + [SMALL_STATE(1283)] = 45898, + [SMALL_STATE(1284)] = 45911, + [SMALL_STATE(1285)] = 45924, + [SMALL_STATE(1286)] = 45937, + [SMALL_STATE(1287)] = 45946, + [SMALL_STATE(1288)] = 45959, + [SMALL_STATE(1289)] = 45968, + [SMALL_STATE(1290)] = 45981, + [SMALL_STATE(1291)] = 45994, + [SMALL_STATE(1292)] = 46007, + [SMALL_STATE(1293)] = 46020, + [SMALL_STATE(1294)] = 46033, + [SMALL_STATE(1295)] = 46042, + [SMALL_STATE(1296)] = 46055, + [SMALL_STATE(1297)] = 46068, + [SMALL_STATE(1298)] = 46081, + [SMALL_STATE(1299)] = 46094, + [SMALL_STATE(1300)] = 46103, + [SMALL_STATE(1301)] = 46114, + [SMALL_STATE(1302)] = 46123, + [SMALL_STATE(1303)] = 46132, + [SMALL_STATE(1304)] = 46145, + [SMALL_STATE(1305)] = 46158, + [SMALL_STATE(1306)] = 46171, + [SMALL_STATE(1307)] = 46180, + [SMALL_STATE(1308)] = 46189, + [SMALL_STATE(1309)] = 46202, + [SMALL_STATE(1310)] = 46215, + [SMALL_STATE(1311)] = 46228, + [SMALL_STATE(1312)] = 46241, + [SMALL_STATE(1313)] = 46254, + [SMALL_STATE(1314)] = 46267, + [SMALL_STATE(1315)] = 46280, + [SMALL_STATE(1316)] = 46293, + [SMALL_STATE(1317)] = 46306, + [SMALL_STATE(1318)] = 46319, + [SMALL_STATE(1319)] = 46330, + [SMALL_STATE(1320)] = 46343, + [SMALL_STATE(1321)] = 46356, + [SMALL_STATE(1322)] = 46369, + [SMALL_STATE(1323)] = 46382, + [SMALL_STATE(1324)] = 46395, + [SMALL_STATE(1325)] = 46405, + [SMALL_STATE(1326)] = 46415, + [SMALL_STATE(1327)] = 46425, + [SMALL_STATE(1328)] = 46435, + [SMALL_STATE(1329)] = 46445, + [SMALL_STATE(1330)] = 46455, + [SMALL_STATE(1331)] = 46465, + [SMALL_STATE(1332)] = 46475, + [SMALL_STATE(1333)] = 46485, + [SMALL_STATE(1334)] = 46493, + [SMALL_STATE(1335)] = 46501, + [SMALL_STATE(1336)] = 46511, + [SMALL_STATE(1337)] = 46521, + [SMALL_STATE(1338)] = 46531, + [SMALL_STATE(1339)] = 46541, + [SMALL_STATE(1340)] = 46549, + [SMALL_STATE(1341)] = 46559, + [SMALL_STATE(1342)] = 46567, + [SMALL_STATE(1343)] = 46575, + [SMALL_STATE(1344)] = 46583, + [SMALL_STATE(1345)] = 46593, + [SMALL_STATE(1346)] = 46601, + [SMALL_STATE(1347)] = 46609, + [SMALL_STATE(1348)] = 46619, + [SMALL_STATE(1349)] = 46627, + [SMALL_STATE(1350)] = 46635, + [SMALL_STATE(1351)] = 46643, + [SMALL_STATE(1352)] = 46651, + [SMALL_STATE(1353)] = 46661, + [SMALL_STATE(1354)] = 46671, + [SMALL_STATE(1355)] = 46679, + [SMALL_STATE(1356)] = 46687, + [SMALL_STATE(1357)] = 46697, + [SMALL_STATE(1358)] = 46707, + [SMALL_STATE(1359)] = 46717, + [SMALL_STATE(1360)] = 46727, + [SMALL_STATE(1361)] = 46737, + [SMALL_STATE(1362)] = 46745, + [SMALL_STATE(1363)] = 46755, + [SMALL_STATE(1364)] = 46763, + [SMALL_STATE(1365)] = 46773, + [SMALL_STATE(1366)] = 46781, + [SMALL_STATE(1367)] = 46789, + [SMALL_STATE(1368)] = 46797, + [SMALL_STATE(1369)] = 46807, + [SMALL_STATE(1370)] = 46815, + [SMALL_STATE(1371)] = 46823, + [SMALL_STATE(1372)] = 46833, + [SMALL_STATE(1373)] = 46843, + [SMALL_STATE(1374)] = 46853, + [SMALL_STATE(1375)] = 46863, + [SMALL_STATE(1376)] = 46873, + [SMALL_STATE(1377)] = 46883, + [SMALL_STATE(1378)] = 46893, + [SMALL_STATE(1379)] = 46901, + [SMALL_STATE(1380)] = 46909, + [SMALL_STATE(1381)] = 46917, + [SMALL_STATE(1382)] = 46927, + [SMALL_STATE(1383)] = 46935, + [SMALL_STATE(1384)] = 46945, + [SMALL_STATE(1385)] = 46955, + [SMALL_STATE(1386)] = 46963, + [SMALL_STATE(1387)] = 46971, + [SMALL_STATE(1388)] = 46979, + [SMALL_STATE(1389)] = 46987, + [SMALL_STATE(1390)] = 46997, + [SMALL_STATE(1391)] = 47005, + [SMALL_STATE(1392)] = 47013, + [SMALL_STATE(1393)] = 47021, + [SMALL_STATE(1394)] = 47031, + [SMALL_STATE(1395)] = 47041, + [SMALL_STATE(1396)] = 47051, + [SMALL_STATE(1397)] = 47061, + [SMALL_STATE(1398)] = 47071, + [SMALL_STATE(1399)] = 47079, + [SMALL_STATE(1400)] = 47089, + [SMALL_STATE(1401)] = 47097, + [SMALL_STATE(1402)] = 47105, + [SMALL_STATE(1403)] = 47113, + [SMALL_STATE(1404)] = 47123, + [SMALL_STATE(1405)] = 47131, + [SMALL_STATE(1406)] = 47139, + [SMALL_STATE(1407)] = 47147, + [SMALL_STATE(1408)] = 47155, + [SMALL_STATE(1409)] = 47163, + [SMALL_STATE(1410)] = 47173, + [SMALL_STATE(1411)] = 47183, + [SMALL_STATE(1412)] = 47193, + [SMALL_STATE(1413)] = 47203, + [SMALL_STATE(1414)] = 47211, + [SMALL_STATE(1415)] = 47221, + [SMALL_STATE(1416)] = 47231, + [SMALL_STATE(1417)] = 47239, + [SMALL_STATE(1418)] = 47249, + [SMALL_STATE(1419)] = 47257, + [SMALL_STATE(1420)] = 47267, + [SMALL_STATE(1421)] = 47275, + [SMALL_STATE(1422)] = 47283, + [SMALL_STATE(1423)] = 47291, + [SMALL_STATE(1424)] = 47299, + [SMALL_STATE(1425)] = 47309, + [SMALL_STATE(1426)] = 47317, + [SMALL_STATE(1427)] = 47325, + [SMALL_STATE(1428)] = 47333, + [SMALL_STATE(1429)] = 47341, + [SMALL_STATE(1430)] = 47349, + [SMALL_STATE(1431)] = 47357, + [SMALL_STATE(1432)] = 47365, + [SMALL_STATE(1433)] = 47375, + [SMALL_STATE(1434)] = 47383, + [SMALL_STATE(1435)] = 47391, + [SMALL_STATE(1436)] = 47399, + [SMALL_STATE(1437)] = 47409, + [SMALL_STATE(1438)] = 47419, + [SMALL_STATE(1439)] = 47429, + [SMALL_STATE(1440)] = 47437, + [SMALL_STATE(1441)] = 47447, + [SMALL_STATE(1442)] = 47457, + [SMALL_STATE(1443)] = 47467, + [SMALL_STATE(1444)] = 47475, + [SMALL_STATE(1445)] = 47485, + [SMALL_STATE(1446)] = 47495, + [SMALL_STATE(1447)] = 47505, + [SMALL_STATE(1448)] = 47515, + [SMALL_STATE(1449)] = 47523, + [SMALL_STATE(1450)] = 47531, + [SMALL_STATE(1451)] = 47539, + [SMALL_STATE(1452)] = 47547, + [SMALL_STATE(1453)] = 47555, + [SMALL_STATE(1454)] = 47565, + [SMALL_STATE(1455)] = 47573, + [SMALL_STATE(1456)] = 47583, + [SMALL_STATE(1457)] = 47591, + [SMALL_STATE(1458)] = 47599, + [SMALL_STATE(1459)] = 47607, + [SMALL_STATE(1460)] = 47615, + [SMALL_STATE(1461)] = 47623, + [SMALL_STATE(1462)] = 47633, + [SMALL_STATE(1463)] = 47641, + [SMALL_STATE(1464)] = 47651, + [SMALL_STATE(1465)] = 47661, + [SMALL_STATE(1466)] = 47671, + [SMALL_STATE(1467)] = 47679, + [SMALL_STATE(1468)] = 47689, + [SMALL_STATE(1469)] = 47697, + [SMALL_STATE(1470)] = 47707, + [SMALL_STATE(1471)] = 47715, + [SMALL_STATE(1472)] = 47725, + [SMALL_STATE(1473)] = 47735, + [SMALL_STATE(1474)] = 47742, + [SMALL_STATE(1475)] = 47749, + [SMALL_STATE(1476)] = 47756, + [SMALL_STATE(1477)] = 47763, + [SMALL_STATE(1478)] = 47770, + [SMALL_STATE(1479)] = 47777, + [SMALL_STATE(1480)] = 47784, + [SMALL_STATE(1481)] = 47791, + [SMALL_STATE(1482)] = 47798, + [SMALL_STATE(1483)] = 47805, + [SMALL_STATE(1484)] = 47812, + [SMALL_STATE(1485)] = 47819, + [SMALL_STATE(1486)] = 47826, + [SMALL_STATE(1487)] = 47833, + [SMALL_STATE(1488)] = 47840, + [SMALL_STATE(1489)] = 47847, + [SMALL_STATE(1490)] = 47854, + [SMALL_STATE(1491)] = 47861, + [SMALL_STATE(1492)] = 47868, + [SMALL_STATE(1493)] = 47875, + [SMALL_STATE(1494)] = 47882, + [SMALL_STATE(1495)] = 47889, + [SMALL_STATE(1496)] = 47896, + [SMALL_STATE(1497)] = 47903, + [SMALL_STATE(1498)] = 47910, + [SMALL_STATE(1499)] = 47917, + [SMALL_STATE(1500)] = 47924, + [SMALL_STATE(1501)] = 47931, + [SMALL_STATE(1502)] = 47938, + [SMALL_STATE(1503)] = 47945, + [SMALL_STATE(1504)] = 47952, + [SMALL_STATE(1505)] = 47959, + [SMALL_STATE(1506)] = 47966, + [SMALL_STATE(1507)] = 47973, + [SMALL_STATE(1508)] = 47980, + [SMALL_STATE(1509)] = 47987, + [SMALL_STATE(1510)] = 47994, + [SMALL_STATE(1511)] = 48001, + [SMALL_STATE(1512)] = 48008, + [SMALL_STATE(1513)] = 48015, + [SMALL_STATE(1514)] = 48022, + [SMALL_STATE(1515)] = 48029, + [SMALL_STATE(1516)] = 48036, + [SMALL_STATE(1517)] = 48043, + [SMALL_STATE(1518)] = 48050, + [SMALL_STATE(1519)] = 48057, + [SMALL_STATE(1520)] = 48064, + [SMALL_STATE(1521)] = 48071, + [SMALL_STATE(1522)] = 48078, + [SMALL_STATE(1523)] = 48085, + [SMALL_STATE(1524)] = 48092, + [SMALL_STATE(1525)] = 48099, + [SMALL_STATE(1526)] = 48106, + [SMALL_STATE(1527)] = 48113, + [SMALL_STATE(1528)] = 48120, + [SMALL_STATE(1529)] = 48127, + [SMALL_STATE(1530)] = 48134, + [SMALL_STATE(1531)] = 48141, + [SMALL_STATE(1532)] = 48148, + [SMALL_STATE(1533)] = 48155, + [SMALL_STATE(1534)] = 48162, + [SMALL_STATE(1535)] = 48169, + [SMALL_STATE(1536)] = 48176, + [SMALL_STATE(1537)] = 48183, + [SMALL_STATE(1538)] = 48190, + [SMALL_STATE(1539)] = 48197, + [SMALL_STATE(1540)] = 48204, + [SMALL_STATE(1541)] = 48211, + [SMALL_STATE(1542)] = 48218, + [SMALL_STATE(1543)] = 48225, + [SMALL_STATE(1544)] = 48232, + [SMALL_STATE(1545)] = 48239, + [SMALL_STATE(1546)] = 48246, + [SMALL_STATE(1547)] = 48253, + [SMALL_STATE(1548)] = 48260, + [SMALL_STATE(1549)] = 48267, + [SMALL_STATE(1550)] = 48274, + [SMALL_STATE(1551)] = 48281, + [SMALL_STATE(1552)] = 48288, + [SMALL_STATE(1553)] = 48295, + [SMALL_STATE(1554)] = 48302, + [SMALL_STATE(1555)] = 48309, + [SMALL_STATE(1556)] = 48316, + [SMALL_STATE(1557)] = 48323, + [SMALL_STATE(1558)] = 48330, + [SMALL_STATE(1559)] = 48337, + [SMALL_STATE(1560)] = 48344, + [SMALL_STATE(1561)] = 48351, + [SMALL_STATE(1562)] = 48358, + [SMALL_STATE(1563)] = 48365, + [SMALL_STATE(1564)] = 48372, + [SMALL_STATE(1565)] = 48379, + [SMALL_STATE(1566)] = 48386, + [SMALL_STATE(1567)] = 48393, + [SMALL_STATE(1568)] = 48400, + [SMALL_STATE(1569)] = 48407, + [SMALL_STATE(1570)] = 48414, + [SMALL_STATE(1571)] = 48421, + [SMALL_STATE(1572)] = 48428, + [SMALL_STATE(1573)] = 48435, + [SMALL_STATE(1574)] = 48442, + [SMALL_STATE(1575)] = 48449, + [SMALL_STATE(1576)] = 48456, + [SMALL_STATE(1577)] = 48463, + [SMALL_STATE(1578)] = 48470, + [SMALL_STATE(1579)] = 48477, + [SMALL_STATE(1580)] = 48484, + [SMALL_STATE(1581)] = 48491, + [SMALL_STATE(1582)] = 48498, + [SMALL_STATE(1583)] = 48505, + [SMALL_STATE(1584)] = 48512, + [SMALL_STATE(1585)] = 48519, + [SMALL_STATE(1586)] = 48526, + [SMALL_STATE(1587)] = 48533, + [SMALL_STATE(1588)] = 48540, + [SMALL_STATE(1589)] = 48547, + [SMALL_STATE(1590)] = 48554, + [SMALL_STATE(1591)] = 48561, + [SMALL_STATE(1592)] = 48568, + [SMALL_STATE(1593)] = 48575, + [SMALL_STATE(1594)] = 48582, + [SMALL_STATE(1595)] = 48589, + [SMALL_STATE(1596)] = 48596, + [SMALL_STATE(1597)] = 48603, + [SMALL_STATE(1598)] = 48610, + [SMALL_STATE(1599)] = 48617, + [SMALL_STATE(1600)] = 48624, + [SMALL_STATE(1601)] = 48631, + [SMALL_STATE(1602)] = 48638, + [SMALL_STATE(1603)] = 48645, + [SMALL_STATE(1604)] = 48652, + [SMALL_STATE(1605)] = 48659, + [SMALL_STATE(1606)] = 48666, + [SMALL_STATE(1607)] = 48673, + [SMALL_STATE(1608)] = 48680, + [SMALL_STATE(1609)] = 48687, + [SMALL_STATE(1610)] = 48694, + [SMALL_STATE(1611)] = 48701, + [SMALL_STATE(1612)] = 48708, + [SMALL_STATE(1613)] = 48715, + [SMALL_STATE(1614)] = 48722, + [SMALL_STATE(1615)] = 48729, + [SMALL_STATE(1616)] = 48736, + [SMALL_STATE(1617)] = 48743, + [SMALL_STATE(1618)] = 48750, + [SMALL_STATE(1619)] = 48757, + [SMALL_STATE(1620)] = 48764, + [SMALL_STATE(1621)] = 48771, + [SMALL_STATE(1622)] = 48778, + [SMALL_STATE(1623)] = 48785, + [SMALL_STATE(1624)] = 48792, + [SMALL_STATE(1625)] = 48799, + [SMALL_STATE(1626)] = 48806, + [SMALL_STATE(1627)] = 48813, + [SMALL_STATE(1628)] = 48820, + [SMALL_STATE(1629)] = 48827, + [SMALL_STATE(1630)] = 48834, + [SMALL_STATE(1631)] = 48841, + [SMALL_STATE(1632)] = 48848, + [SMALL_STATE(1633)] = 48855, + [SMALL_STATE(1634)] = 48862, + [SMALL_STATE(1635)] = 48869, + [SMALL_STATE(1636)] = 48876, + [SMALL_STATE(1637)] = 48883, + [SMALL_STATE(1638)] = 48890, + [SMALL_STATE(1639)] = 48897, + [SMALL_STATE(1640)] = 48904, + [SMALL_STATE(1641)] = 48911, + [SMALL_STATE(1642)] = 48918, + [SMALL_STATE(1643)] = 48925, + [SMALL_STATE(1644)] = 48932, + [SMALL_STATE(1645)] = 48939, + [SMALL_STATE(1646)] = 48946, + [SMALL_STATE(1647)] = 48953, + [SMALL_STATE(1648)] = 48960, + [SMALL_STATE(1649)] = 48967, + [SMALL_STATE(1650)] = 48974, + [SMALL_STATE(1651)] = 48981, + [SMALL_STATE(1652)] = 48988, + [SMALL_STATE(1653)] = 48995, + [SMALL_STATE(1654)] = 49002, + [SMALL_STATE(1655)] = 49009, + [SMALL_STATE(1656)] = 49016, + [SMALL_STATE(1657)] = 49023, + [SMALL_STATE(1658)] = 49030, + [SMALL_STATE(1659)] = 49037, + [SMALL_STATE(1660)] = 49044, + [SMALL_STATE(1661)] = 49051, + [SMALL_STATE(1662)] = 49058, + [SMALL_STATE(1663)] = 49065, + [SMALL_STATE(1664)] = 49072, + [SMALL_STATE(1665)] = 49079, + [SMALL_STATE(1666)] = 49086, + [SMALL_STATE(1667)] = 49093, + [SMALL_STATE(1668)] = 49100, + [SMALL_STATE(1669)] = 49107, + [SMALL_STATE(1670)] = 49114, + [SMALL_STATE(1671)] = 49121, + [SMALL_STATE(1672)] = 49128, + [SMALL_STATE(1673)] = 49135, + [SMALL_STATE(1674)] = 49142, + [SMALL_STATE(1675)] = 49149, + [SMALL_STATE(1676)] = 49156, + [SMALL_STATE(1677)] = 49163, + [SMALL_STATE(1678)] = 49170, + [SMALL_STATE(1679)] = 49177, + [SMALL_STATE(1680)] = 49184, + [SMALL_STATE(1681)] = 49191, + [SMALL_STATE(1682)] = 49198, + [SMALL_STATE(1683)] = 49205, + [SMALL_STATE(1684)] = 49212, + [SMALL_STATE(1685)] = 49219, + [SMALL_STATE(1686)] = 49226, + [SMALL_STATE(1687)] = 49233, + [SMALL_STATE(1688)] = 49240, + [SMALL_STATE(1689)] = 49247, + [SMALL_STATE(1690)] = 49254, + [SMALL_STATE(1691)] = 49261, + [SMALL_STATE(1692)] = 49268, + [SMALL_STATE(1693)] = 49275, + [SMALL_STATE(1694)] = 49282, + [SMALL_STATE(1695)] = 49289, + [SMALL_STATE(1696)] = 49296, + [SMALL_STATE(1697)] = 49303, + [SMALL_STATE(1698)] = 49310, + [SMALL_STATE(1699)] = 49317, + [SMALL_STATE(1700)] = 49324, + [SMALL_STATE(1701)] = 49331, + [SMALL_STATE(1702)] = 49338, + [SMALL_STATE(1703)] = 49345, + [SMALL_STATE(1704)] = 49352, + [SMALL_STATE(1705)] = 49359, + [SMALL_STATE(1706)] = 49366, + [SMALL_STATE(1707)] = 49373, + [SMALL_STATE(1708)] = 49380, + [SMALL_STATE(1709)] = 49387, + [SMALL_STATE(1710)] = 49394, + [SMALL_STATE(1711)] = 49401, + [SMALL_STATE(1712)] = 49408, + [SMALL_STATE(1713)] = 49415, + [SMALL_STATE(1714)] = 49422, + [SMALL_STATE(1715)] = 49429, + [SMALL_STATE(1716)] = 49436, + [SMALL_STATE(1717)] = 49443, + [SMALL_STATE(1718)] = 49450, + [SMALL_STATE(1719)] = 49457, + [SMALL_STATE(1720)] = 49464, + [SMALL_STATE(1721)] = 49471, + [SMALL_STATE(1722)] = 49478, + [SMALL_STATE(1723)] = 49485, + [SMALL_STATE(1724)] = 49492, + [SMALL_STATE(1725)] = 49499, + [SMALL_STATE(1726)] = 49506, + [SMALL_STATE(1727)] = 49513, + [SMALL_STATE(1728)] = 49520, + [SMALL_STATE(1729)] = 49527, + [SMALL_STATE(1730)] = 49534, + [SMALL_STATE(1731)] = 49541, + [SMALL_STATE(1732)] = 49548, + [SMALL_STATE(1733)] = 49555, + [SMALL_STATE(1734)] = 49562, + [SMALL_STATE(1735)] = 49569, + [SMALL_STATE(1736)] = 49576, + [SMALL_STATE(1737)] = 49583, + [SMALL_STATE(1738)] = 49590, + [SMALL_STATE(1739)] = 49597, + [SMALL_STATE(1740)] = 49604, + [SMALL_STATE(1741)] = 49611, + [SMALL_STATE(1742)] = 49618, + [SMALL_STATE(1743)] = 49625, + [SMALL_STATE(1744)] = 49632, + [SMALL_STATE(1745)] = 49639, + [SMALL_STATE(1746)] = 49646, + [SMALL_STATE(1747)] = 49653, + [SMALL_STATE(1748)] = 49660, + [SMALL_STATE(1749)] = 49667, + [SMALL_STATE(1750)] = 49674, + [SMALL_STATE(1751)] = 49681, + [SMALL_STATE(1752)] = 49688, + [SMALL_STATE(1753)] = 49695, + [SMALL_STATE(1754)] = 49702, + [SMALL_STATE(1755)] = 49709, + [SMALL_STATE(1756)] = 49716, + [SMALL_STATE(1757)] = 49723, + [SMALL_STATE(1758)] = 49730, + [SMALL_STATE(1759)] = 49737, + [SMALL_STATE(1760)] = 49744, + [SMALL_STATE(1761)] = 49751, + [SMALL_STATE(1762)] = 49758, + [SMALL_STATE(1763)] = 49765, + [SMALL_STATE(1764)] = 49772, + [SMALL_STATE(1765)] = 49779, + [SMALL_STATE(1766)] = 49786, + [SMALL_STATE(1767)] = 49793, + [SMALL_STATE(1768)] = 49800, + [SMALL_STATE(1769)] = 49807, + [SMALL_STATE(1770)] = 49814, + [SMALL_STATE(1771)] = 49821, + [SMALL_STATE(1772)] = 49828, + [SMALL_STATE(1773)] = 49835, + [SMALL_STATE(1774)] = 49842, + [SMALL_STATE(1775)] = 49849, + [SMALL_STATE(1776)] = 49856, + [SMALL_STATE(1777)] = 49863, + [SMALL_STATE(1778)] = 49870, + [SMALL_STATE(1779)] = 49877, + [SMALL_STATE(1780)] = 49884, + [SMALL_STATE(1781)] = 49891, + [SMALL_STATE(1782)] = 49898, + [SMALL_STATE(1783)] = 49905, + [SMALL_STATE(1784)] = 49912, + [SMALL_STATE(1785)] = 49919, + [SMALL_STATE(1786)] = 49926, + [SMALL_STATE(1787)] = 49933, + [SMALL_STATE(1788)] = 49940, + [SMALL_STATE(1789)] = 49947, + [SMALL_STATE(1790)] = 49954, + [SMALL_STATE(1791)] = 49961, + [SMALL_STATE(1792)] = 49968, + [SMALL_STATE(1793)] = 49975, + [SMALL_STATE(1794)] = 49982, + [SMALL_STATE(1795)] = 49989, + [SMALL_STATE(1796)] = 49996, + [SMALL_STATE(1797)] = 50003, + [SMALL_STATE(1798)] = 50010, + [SMALL_STATE(1799)] = 50017, + [SMALL_STATE(1800)] = 50024, + [SMALL_STATE(1801)] = 50031, + [SMALL_STATE(1802)] = 50038, + [SMALL_STATE(1803)] = 50045, + [SMALL_STATE(1804)] = 50052, + [SMALL_STATE(1805)] = 50059, + [SMALL_STATE(1806)] = 50066, + [SMALL_STATE(1807)] = 50073, + [SMALL_STATE(1808)] = 50080, + [SMALL_STATE(1809)] = 50087, + [SMALL_STATE(1810)] = 50094, + [SMALL_STATE(1811)] = 50101, + [SMALL_STATE(1812)] = 50108, + [SMALL_STATE(1813)] = 50115, + [SMALL_STATE(1814)] = 50122, + [SMALL_STATE(1815)] = 50129, + [SMALL_STATE(1816)] = 50136, + [SMALL_STATE(1817)] = 50143, + [SMALL_STATE(1818)] = 50150, + [SMALL_STATE(1819)] = 50157, + [SMALL_STATE(1820)] = 50164, + [SMALL_STATE(1821)] = 50171, + [SMALL_STATE(1822)] = 50178, + [SMALL_STATE(1823)] = 50185, + [SMALL_STATE(1824)] = 50192, + [SMALL_STATE(1825)] = 50199, + [SMALL_STATE(1826)] = 50206, + [SMALL_STATE(1827)] = 50213, + [SMALL_STATE(1828)] = 50220, + [SMALL_STATE(1829)] = 50227, + [SMALL_STATE(1830)] = 50234, + [SMALL_STATE(1831)] = 50241, + [SMALL_STATE(1832)] = 50248, + [SMALL_STATE(1833)] = 50255, + [SMALL_STATE(1834)] = 50262, + [SMALL_STATE(1835)] = 50269, + [SMALL_STATE(1836)] = 50276, + [SMALL_STATE(1837)] = 50283, + [SMALL_STATE(1838)] = 50290, + [SMALL_STATE(1839)] = 50297, + [SMALL_STATE(1840)] = 50304, + [SMALL_STATE(1841)] = 50311, + [SMALL_STATE(1842)] = 50318, + [SMALL_STATE(1843)] = 50325, + [SMALL_STATE(1844)] = 50332, + [SMALL_STATE(1845)] = 50339, + [SMALL_STATE(1846)] = 50346, + [SMALL_STATE(1847)] = 50353, + [SMALL_STATE(1848)] = 50360, + [SMALL_STATE(1849)] = 50367, + [SMALL_STATE(1850)] = 50374, + [SMALL_STATE(1851)] = 50381, + [SMALL_STATE(1852)] = 50388, + [SMALL_STATE(1853)] = 50395, + [SMALL_STATE(1854)] = 50402, + [SMALL_STATE(1855)] = 50409, + [SMALL_STATE(1856)] = 50416, + [SMALL_STATE(1857)] = 50423, + [SMALL_STATE(1858)] = 50430, + [SMALL_STATE(1859)] = 50437, + [SMALL_STATE(1860)] = 50444, + [SMALL_STATE(1861)] = 50451, + [SMALL_STATE(1862)] = 50458, + [SMALL_STATE(1863)] = 50465, + [SMALL_STATE(1864)] = 50472, + [SMALL_STATE(1865)] = 50479, + [SMALL_STATE(1866)] = 50486, + [SMALL_STATE(1867)] = 50493, + [SMALL_STATE(1868)] = 50500, + [SMALL_STATE(1869)] = 50507, + [SMALL_STATE(1870)] = 50514, + [SMALL_STATE(1871)] = 50521, + [SMALL_STATE(1872)] = 50528, + [SMALL_STATE(1873)] = 50535, + [SMALL_STATE(1874)] = 50542, + [SMALL_STATE(1875)] = 50549, + [SMALL_STATE(1876)] = 50556, + [SMALL_STATE(1877)] = 50563, + [SMALL_STATE(1878)] = 50570, + [SMALL_STATE(1879)] = 50577, + [SMALL_STATE(1880)] = 50584, + [SMALL_STATE(1881)] = 50591, + [SMALL_STATE(1882)] = 50598, + [SMALL_STATE(1883)] = 50605, + [SMALL_STATE(1884)] = 50612, + [SMALL_STATE(1885)] = 50619, + [SMALL_STATE(1886)] = 50626, + [SMALL_STATE(1887)] = 50633, + [SMALL_STATE(1888)] = 50640, + [SMALL_STATE(1889)] = 50647, + [SMALL_STATE(1890)] = 50654, + [SMALL_STATE(1891)] = 50661, + [SMALL_STATE(1892)] = 50668, + [SMALL_STATE(1893)] = 50675, + [SMALL_STATE(1894)] = 50682, + [SMALL_STATE(1895)] = 50689, + [SMALL_STATE(1896)] = 50696, + [SMALL_STATE(1897)] = 50703, + [SMALL_STATE(1898)] = 50710, + [SMALL_STATE(1899)] = 50717, + [SMALL_STATE(1900)] = 50724, + [SMALL_STATE(1901)] = 50731, + [SMALL_STATE(1902)] = 50738, + [SMALL_STATE(1903)] = 50745, + [SMALL_STATE(1904)] = 50752, + [SMALL_STATE(1905)] = 50759, + [SMALL_STATE(1906)] = 50766, + [SMALL_STATE(1907)] = 50773, + [SMALL_STATE(1908)] = 50780, + [SMALL_STATE(1909)] = 50787, + [SMALL_STATE(1910)] = 50794, + [SMALL_STATE(1911)] = 50801, + [SMALL_STATE(1912)] = 50808, + [SMALL_STATE(1913)] = 50815, + [SMALL_STATE(1914)] = 50822, + [SMALL_STATE(1915)] = 50829, + [SMALL_STATE(1916)] = 50836, + [SMALL_STATE(1917)] = 50843, + [SMALL_STATE(1918)] = 50850, + [SMALL_STATE(1919)] = 50857, + [SMALL_STATE(1920)] = 50864, + [SMALL_STATE(1921)] = 50871, + [SMALL_STATE(1922)] = 50878, + [SMALL_STATE(1923)] = 50885, + [SMALL_STATE(1924)] = 50892, + [SMALL_STATE(1925)] = 50899, + [SMALL_STATE(1926)] = 50906, + [SMALL_STATE(1927)] = 50913, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -57618,2437 +57584,2467 @@ 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(820), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(820), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(935), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1242), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(679), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(659), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(27), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(734), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1467), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(702), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1927), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1926), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(38), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1924), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(706), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(836), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(907), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1145), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(661), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(634), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(30), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(687), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1327), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(691), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1926), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1925), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(51), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1923), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(693), [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1922), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1159), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(761), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(813), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(17), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(247), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1164), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1316), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(766), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(769), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(12), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(249), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1309), [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1916), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(563), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1166), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1910), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(566), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1307), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1912), [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1909), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(225), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(172), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(570), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(808), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(798), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(238), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(145), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(562), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(744), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(783), [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1908), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(676), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(786), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(182), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(664), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(799), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(176), [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(67), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(205), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1906), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(203), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1907), [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1047), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(799), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(659), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(734), - [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1927), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1924), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1159), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(761), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(813), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1164), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(563), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1166), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1909), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1906), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1097), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(763), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(634), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(687), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1926), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1923), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1316), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(766), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(769), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1309), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(566), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1307), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1909), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1907), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(919), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(935), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1242), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1320), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(38), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(706), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1922), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(17), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(247), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1910), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1909), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(225), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(172), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(570), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(808), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(798), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1908), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(676), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(786), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(182), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(67), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(205), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(948), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(907), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1145), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1189), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(51), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(693), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1922), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(12), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(249), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1912), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1909), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(238), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(145), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(562), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(744), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(783), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1908), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(664), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(799), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(176), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(67), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(203), [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 1), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 1), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1047), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(799), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(659), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(753), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1927), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1924), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1439), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(761), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(813), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1435), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(563), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1166), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1909), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1906), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1097), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(763), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(634), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(755), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1926), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1923), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1465), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(766), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(769), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1463), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(566), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1307), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1909), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1907), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 27), - [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 27), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 26), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 26), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 66), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 66), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 47), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 47), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 2), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 2), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 82), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 82), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 69), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 69), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 2), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 2), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 46), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 46), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 47), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 47), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 66), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 66), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 102), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 102), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 26), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 26), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 80), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 80), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 69), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 69), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 81), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 81), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 93), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 93), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 16), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 16), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 26), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 26), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 80), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 80), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 82), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 82), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 108), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 108), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 66), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 66), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 3), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 81), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 81), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 81), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 81), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 3), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 3), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 3), SHIFT(592), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 3), SHIFT(89), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 104), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 104), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 34), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 34), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 34), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 34), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 96), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 96), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 34), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 34), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 34), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 34), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 34), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 34), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 86), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 86), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 68), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 68), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 61), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 61), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 33), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 33), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 63), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 63), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 106), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 106), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 99), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 99), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 65), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 65), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 3), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 3), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 26), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 26), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 106), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 106), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 65), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 65), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 33), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 33), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 28), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 28), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 99), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 99), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 57), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 57), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 105), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 105), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 48), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 48), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 87), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 87), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 57), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 57), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 18), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 18), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 70), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 70), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 84), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 84), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 3), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 3), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 3), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 3), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 83), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 83), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 103), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 103), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 94), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 94), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 68), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 68), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 57), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 57), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 65), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 65), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 83), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 83), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 48), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 48), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 68), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 68), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 77), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 77), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 106), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 106), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 26), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 26), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 29), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 29), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 3), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 3), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 28), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 28), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 109), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 109), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 110), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 110), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 59), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 59), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 49), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 49), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 111), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 111), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 50), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 50), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 51), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 51), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 106), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 106), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 65), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 65), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 3), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 3), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 33), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 33), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 52), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 52), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 48), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 48), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 3), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 3), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 53), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 53), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 63), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 63), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 28), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 28), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 65), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 65), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 49), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 49), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 50), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 50), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 51), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 51), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 29), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 29), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 30), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 30), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 61), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 61), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 77), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 77), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 94), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 94), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 33), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 33), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 52), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 52), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 95), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 95), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 53), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 53), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 99), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 99), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 18), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 18), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 57), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 57), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 59), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 59), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 70), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 70), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 72), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 72), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 97), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 97), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 57), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 57), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 99), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 99), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 30), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 30), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 65), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 65), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 37), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 37), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 37), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 37), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 22), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 22), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 35), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 35), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 23), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 23), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 38), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 38), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 40), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 40), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(758), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(758), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 39), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 39), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 76), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 76), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 25), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 25), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(757), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(757), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1910), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_component_choice_list, 1), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1556), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 12), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 12), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1880), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 17), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 4, .production_id = 32), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(250), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1249), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(799), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1924), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(781), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(754), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1916), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1166), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1909), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 3, .production_id = 20), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1719), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(799), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1924), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(781), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(754), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1883), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1166), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(799), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1924), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(781), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(754), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1916), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1166), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1909), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 42), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1249), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(659), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(915), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1810), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1909), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(810), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(780), - [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(807), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(289), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(194), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(259), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(195), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 17), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(799), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1924), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1916), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1166), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(180), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1128), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1242), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1249), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(799), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 31), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 55), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 17), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 31), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 17), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 2), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 2), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 2), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1058), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1561), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1562), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(569), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 89), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 31), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 100), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 55), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 71), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 45), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 45), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 64), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 64), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 79), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 79), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 56), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 79), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 79), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 64), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 64), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 45), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 45), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 20), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 92), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 92), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1655), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 45), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 45), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 107), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 107), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 32), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 64), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 64), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 101), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 101), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 107), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 107), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1699), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 107), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 107), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 91), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 91), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 79), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 79), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 78), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 78), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 91), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 91), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 101), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 101), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 101), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 101), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1713), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 55), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 55), SHIFT(1793), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 31), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 31), SHIFT(1685), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 55), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 31), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 17), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 17), SHIFT(1509), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 43), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 43), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(628), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1909), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1176), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 112), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 112), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1479), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 44), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(778), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(237), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 21), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 41), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(245), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 33), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 39), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1735), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 88), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 65), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 21), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), SHIFT(1185), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 100), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 55), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(1306), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 2), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 2), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(616), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 33), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(622), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), SHIFT(1127), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(95), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 73), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 89), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 21), - [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(668), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), SHIFT(152), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 58), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 33), SHIFT(1022), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), SHIFT(1185), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(218), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(812), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(99), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1517), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 31), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(243), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(98), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 36), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(680), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 21), SHIFT(1085), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 39), SHIFT(1185), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 98), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1250), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 21), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(101), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1308), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(191), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 21), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(171), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 20), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 67), SHIFT_REPEAT(257), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 67), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 2), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(922), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(678), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1880), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 55), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 39), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1244), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 80), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1556), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 33), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 32), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 17), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 31), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 31), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1134), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1447), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 56), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(174), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 67), SHIFT_REPEAT(256), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 67), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(690), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(110), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guard_select, 2), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 71), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 17), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 67), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 55), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 21), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 85), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 21), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 89), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 33), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 49), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 55), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 39), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 39), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 65), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 33), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 33), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1714), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 31), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 100), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 31), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(500), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 55), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 74), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 39), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 21), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 39), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 19), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 75), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 19), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 60), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 90), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 21), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 33), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5032] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 83), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 83), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 28), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 28), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 27), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 27), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 67), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 67), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 48), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 48), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 70), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 70), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 2), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 47), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 47), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 48), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 48), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 82), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 82), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [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_null_statement, 2), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 67), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 67), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 2), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 103), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 103), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 2), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 2), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 81), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 81), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 109), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 109), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 70), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 70), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 2), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 2), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 67), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 67), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 81), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 81), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 94), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 94), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [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_selective_accept, 8), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 82), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 82), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 27), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 27), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 27), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 27), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 3), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 83), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 83), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 82), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 82), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [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_reduction_attribute_designator, 4), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [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(600), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [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 = 35), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 35), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 35), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 35), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 105), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 105), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 35), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 35), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 97), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 97), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 35), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 35), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 87), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 87), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 3), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 3), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 35), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 35), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_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_entry_declaration, 5, .production_id = 27), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 112), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 112), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 112), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 112), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 34), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 34), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 107), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 107), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 49), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 49), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 3), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 3), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 29), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 29), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 50), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 50), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 51), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 51), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 52), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 52), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 30), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 30), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 31), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 31), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 53), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 53), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 54), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 55), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 55), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 112), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 112), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 100), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 100), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 66), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 66), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 58), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 58), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 60), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 60), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 107), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 107), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 88), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 88), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 38), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 38), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 58), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 58), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 38), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 38), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 78), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 78), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 71), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 71), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 36), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 36), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 85), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 85), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [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_protected_type_declaration, 6), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 66), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 66), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 84), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 84), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 112), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 112), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 100), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 100), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 107), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 107), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 31), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 31), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 49), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 49), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 66), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 66), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 69), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 69), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 30), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 30), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 111), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 111), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 110), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 110), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 3), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 3), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 69), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 69), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 3), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 3), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 3), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 3), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 29), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 29), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 34), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 34), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 62), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 63), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 63), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [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_generic_instantiation, 8, .production_id = 84), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 84), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 66), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 66), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 95), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 95), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 96), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 96), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 107), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 107), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 34), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 34), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 49), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 49), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 3), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 3), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 66), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 66), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 69), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 69), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 63), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 63), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 100), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 100), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 29), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 29), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 58), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 58), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 106), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 106), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 50), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 50), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 104), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 104), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 95), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 95), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 51), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 51), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 52), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 52), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 53), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 53), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 54), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 98), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 98), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 58), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 58), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 55), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 55), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 62), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 78), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 78), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 34), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 34), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 71), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 71), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 73), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 73), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 58), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 58), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 100), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 100), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 60), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 60), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 66), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 66), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [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_subunit, 5, .production_id = 41), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 41), + [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_with_clause, 3), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [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(808), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(808), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(808), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 77), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 77), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 40), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 40), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), + [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(581), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(806), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(806), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [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(1912), + [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(1759), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [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(519), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1886), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 3, .production_id = 21), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(201), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_iterator_specification, 4, .production_id = 33), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1149), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(763), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1923), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(752), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(751), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1916), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1307), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1909), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1528), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 43), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(763), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1923), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(752), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(751), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1916), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1307), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1909), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(763), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1923), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(752), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(751), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1765), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1307), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(787), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(792), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(796), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1149), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(634), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(939), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1812), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1909), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(267), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(195), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(192), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(256), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(974), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(974), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1145), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(763), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1923), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1916), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1307), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 56), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 32), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 32), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 2), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 2), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1149), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(763), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 2), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 2), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1053), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1805), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1814), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 101), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 90), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 56), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 32), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 57), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 33), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 72), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [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(1688), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 2), SHIFT(1506), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(563), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 108), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 108), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 102), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 102), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 102), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 102), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 93), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 93), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 65), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 65), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 92), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 92), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 46), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 46), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 46), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 46), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 80), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 80), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 65), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 65), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1513), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 102), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 102), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 65), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 65), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 108), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 108), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 79), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 79), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 108), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 108), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 56), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 56), SHIFT(1792), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 32), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 32), SHIFT(1684), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 56), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 92), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 92), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 80), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 80), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 32), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 46), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 46), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 80), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 80), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1717), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1198), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 42), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(616), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1909), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 1), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 44), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 44), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 113), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 113), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 45), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 34), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 37), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(765), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 89), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 74), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 59), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(214), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(247), + [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), SHIFT(167), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 99), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1493), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(232), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1535), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(622), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 66), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(98), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(685), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(239), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(725), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(1153), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1750), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 34), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 34), SHIFT(1108), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1264), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 2), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 2), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 90), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 32), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(798), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 56), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(95), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(613), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 40), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 40), SHIFT(1126), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 34), SHIFT(1264), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(220), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 101), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 40), SHIFT(1264), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 34), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 40), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1065), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 68), SHIFT_REPEAT(257), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 68), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1154), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 32), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(103), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 40), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1759), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guard_select, 2), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 72), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_alternative, 2), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(738), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 68), SHIFT_REPEAT(258), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 68), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 56), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1234), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1323), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(163), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1464), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(101), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(659), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 32), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 34), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 33), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1133), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 81), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(118), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 56), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 57), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 68), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1886), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(946), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 101), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 90), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 50), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 34), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 56), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 34), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 32), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(499), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 32), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1718), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 34), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 40), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 40), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 56), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 86), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 75), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 40), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [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__loop_parameter_subtype_indication, 1, .production_id = 8), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 66), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 40), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 76), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 61), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 91), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 34), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5088] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), }; #ifdef __cplusplus diff --git a/test/corpus/access.txt b/test/corpus/access.txt index 1405218..9e5f7f4 100644 --- a/test/corpus/access.txt +++ b/test/corpus/access.txt @@ -70,15 +70,16 @@ end; (identifier) (expression (term - (identifier) - (identifier))))) + (selected_component + (identifier) + (identifier)))))) (statement (procedure_call_statement - (identifier) - (function_call + (selected_component (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/packages.txt b/test/corpus/packages.txt index 7055406..decfff3 100644 --- a/test/corpus/packages.txt +++ b/test/corpus/packages.txt @@ -13,8 +13,9 @@ use Ada.Text_IO, System; (compilation (compilation_unit (with_clause - (identifier) - (identifier) + (selected_component + (identifier) + (identifier)) (identifier))) (comment) (compilation_unit @@ -29,8 +30,9 @@ use Ada.Text_IO, System; (identifier))) (compilation_unit (use_clause - (identifier) - (identifier) + (selected_component + (identifier) + (identifier)) (identifier)))) ================================================================================ @@ -72,8 +74,9 @@ end; (identifier))) (compilation_unit (package_specification - (identifier) - (identifier) + (selected_component + (identifier) + (identifier)) (comment)))) ================================================================================ @@ -94,8 +97,9 @@ end Child.P2; (compilation (compilation_unit (package_body - (identifier) - (identifier) + (selected_component + (identifier) + (identifier)) (non_empty_declarative_part (package_body (identifier) @@ -106,8 +110,9 @@ end Child.P2; (handled_sequence_of_statements (statement (null_statement))) - (identifier) - (identifier)))) + (selected_component + (identifier) + (identifier))))) ================================================================================ separate diff --git a/test/corpus/renames.txt b/test/corpus/renames.txt index f30044f..eec1a9e 100644 --- a/test/corpus/renames.txt +++ b/test/corpus/renames.txt @@ -33,8 +33,9 @@ end P; (identifier)) (package_renaming_declaration (identifier) - (identifier) - (identifier)) + (selected_component + (identifier) + (identifier))) (subprogram_renaming_declaration (procedure_specification (identifier) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index a92f11b..f78b812 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -101,13 +101,14 @@ end P; (statement (loop_statement (iteration_scheme - (iterator_specification + (loop_parameter_specification (identifier) - (identifier) - (identifier) - (tick) - (attribute_designator - (identifier)))) + (range_g + (selected_component + (identifier) + (identifier)) + (tick) + (range_attribute_designator)))) (statement (goto_statement (identifier))) @@ -472,8 +473,9 @@ end; (term (allocator (subpool_specification - (identifier) - (identifier)) + (selected_component + (identifier) + (identifier))) (qualified_expression (identifier) (tick) @@ -542,9 +544,10 @@ end; (handled_sequence_of_statements (statement (assignment_statement - (identifier) (function_call - (identifier) + (selected_component + (identifier) + (identifier)) (actual_parameter_part (parameter_association (expression @@ -558,9 +561,10 @@ end; (numeric_literal))))) (statement (assignment_statement - (identifier) (function_call - (identifier) + (selected_component + (identifier) + (identifier)) (actual_parameter_part (parameter_association (expression diff --git a/test/corpus/subprograms.txt b/test/corpus/subprograms.txt index 8eb05ef..c542edf 100644 --- a/test/corpus/subprograms.txt +++ b/test/corpus/subprograms.txt @@ -499,3 +499,28 @@ procedure Proc (A : access Integer); (identifier) (access_definition (identifier)))))))) + +================================================================================ +Subprogram and field access +================================================================================ + + V := Func (2).Value; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (statement + (assignment_statement + (identifier) + (expression + (term + (selected_component + (function_call + (identifier) + (actual_parameter_part + (parameter_association + (expression + (term + (numeric_literal)))))) + (identifier))))))))